Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Linux - How to kill kibana process [closed]

Tags:

kibana

How to kill/stop Kibana process ?

like image 312
Prasanna Sujeewa Avatar asked Feb 26 '16 08:02

Prasanna Sujeewa


3 Answers

Answer: netstat -pln | grep 5601 then you can get the process id and kill -9 13304 netstat command

like image 175
Prasanna Sujeewa Avatar answered Nov 09 '22 12:11

Prasanna Sujeewa


If you have installed as service following command will work

service kibana stop
like image 33
BEJGAM SHIVA PRASAD Avatar answered Nov 09 '22 13:11

BEJGAM SHIVA PRASAD


kill -9 `ps aux|grep -v grep|awk '{print $2}'`

is very helpful when you find a lot of Kibana processes. But be careful that it can kill other processes that contain "kibana" in the process name.

like image 21
James Pei Avatar answered Nov 09 '22 12:11

James Pei