elasticsearch 开机自启

linux下开机自启:

在/etc/init.d目录下新建文件elasticsearch

并敲入shell脚本:

#!/bin/sh
#chkconfig: 2345 80 05
#description: elasticsearch
 
export JAVA_HOME=/home/app/java/jdk1.8.0_201
export JAVA_BIN=/home/app/java/jdk1.8.0_201/bin
export PATH=$PATH:$JAVA_HOME/bin
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export JAVA_HOME JAVA_BIN PATH CLASSPATH

case "$1" in
start)
    su elsearch<<!
    cd /home/app/elasticsearch/elasticsearch-5.5.1
    ./bin/elasticsearch -d
!
    echo "elasticsearch startup"
    ;;  
stop)
    es_pid=`ps aux|grep elasticsearch | grep -v 'grep elasticsearch' | awk '{print $2}'`
    kill -9 $es_pid
    echo "elasticsearch stopped"
    ;;  
restart)
    es_pid=`ps aux|grep elasticsearch | grep -v 'grep elasticsearch' | awk '{print $2}'`
    kill -9 $es_pid
    echo "elasticsearch stopped"
    su brian<<!
    cd /home/app/elasticsearch/elasticsearch-5.5.1
    ./bin/elasticsearch -d
!
    echo "elasticsearch startup"
    ;;  
*)
    echo "start|stop|restart"
    ;;  
esac

exit $?

 

注意,

  前两行必须填写,且要注释掉。

    第一行为shell前行代码,目的告诉系统使用shell。

    第二行分别代表运行级别、启动优先权、关闭优先权,且后面添加开机服务会用到。

    shell脚本中的java、es路径、开启账户要注意。(我是在root用户下使用的,但是es是安装在brian下)

保存退出,并在/etc/init.d/下赋予执行权限

chmod +x elasticsearch

 

添加到开机启动任务

chkconfig --add elasticsearch

 

开机重启,ok

转载于:https://www.cnblogs.com/chenyishi/p/11531994.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值