Kibana停止kibana的方法命令:找到5601端口对应的进程ID 把此进程进行kill即可

报错 

{
    "type": "log",
    "@timestamp": "2018-11-21T06:32:59Z",
    "tags": [
        "fatal"
    ],
    "pid": 22160,
    "message": "Port 5601 is already in use. Another instance of Kibana may be running!"
}

方法

[app@VM-103-194-centos ~]$ netstat -anltp|grep 5601
tcp        0      0 x.x.x.194:5601         0.0.0.0:*                   LISTEN      -                   
[app@VM-103-194-centos ~]$ sudo netstat -anltp|grep 5601
tcp        0      0  x.x.x194:5601         0.0.0.0:*                   LISTEN      24338/./bin/../node 
kill -9 24338

猜你喜欢

转载自blog.csdn.net/fujian9544/article/details/112788931