简体   繁体   中英

Can't see Elasticsearch daemon

I'm trying to run elasticsearch as a daemon on a server.

I have run this command:

./bin/elasticsearch -d -p somefilename

but I can't find any proof of the daemon actually running, since ps -e | grep elastic ps -e | grep elastic does not produce any output. How can I see the process?

Elasticsearch runs on JVM. to see the PID of elasticsearch, you can use "jps" command.

with "ps ef" , only you can see java related process.

if you insist on using ps you can try this:

ps axms |grep -i elasticsearch

"axms" option show the details of all process.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM