让es进行后端进程的方式启动
Posted 健康平安的活着
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了让es进行后端进程的方式启动相关的知识,希望对你有一定的参考价值。
进入到es的安装目录下的bin目录,使用命令:./elasticsearch -d 以后端进程的方式进行启动
[hd-es@localhost bin]$ ./elasticsearch -d
[hd-es@localhost bin]$ ps -ef|grep elasticsearch
hd-es 7132 1 20 14:28 pts/0 00:00:05 /usr/local/java/jdk1.8.0_171/bin/java -Xms256m -Xmx1g -Djava.awt.headless=true -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:CMSInitiatingOccupancyFraction=75 -XX:+UseCMSInitiatingOccupancyOnly -XX:+HeapDumpOnOutOfMemoryError -XX:+DisableExplicitGC -Dfile.encoding=UTF-8 -Djna.nosys=true -Des.path.home=/home/hd-es/elasticsearch-2.4.5 -cp /home/hd-es/elasticsearch-2.4.5/lib/elasticsearch-2.4.5.jar:/home/hd-es/elasticsearch-2.4.5/lib/* org.elasticsearch.bootstrap.Elasticsearch start -d
hd-es 7199 3124 0 14:28 pts/0 00:00:00 grep --color=auto elasticsearch
[hd-es@localhost bin]$ netstat -nlp|grep 7132
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp6 0 0 :::9200 :::* LISTEN 7132/java
tcp6 0 0 :::9300 :::* LISTEN 7132/java
[hd-es@localhost bin]$ jps
7222 Jps
7132 Elasticsearch
[hd-es@localhost bin]$
以上是关于让es进行后端进程的方式启动的主要内容,如果未能解决你的问题,请参考以下文章
LINUX PID 1和SYSTEMD PID 0 是内核的一部分,主要用于内进换页,内核初始化的最后一步就是启动 init 进程。这个进程是系统的第一个进程,PID 为 1,又叫超级进程(代码片段