How to check if Kibana 4 is working on a Linux machine?

I have set up a Linux machine, I just want to check if kibana 4 works fine.

+3


source to share


2 answers


You can always use:

ps auwx | grep kibana

      



he will list the kibana process

Care: it will also indicate the command itself

+5


source


We can also use the command:
 ps -ef | grep -irn kibana


All kibana processes running on the instance will be listed here.



0


source







All Articles