码迷,mamicode.com
首页 > 其他好文 > 详细

Elasticsearch启动、停止脚本

时间:2019-08-31 00:48:33      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:线程id   pid   roo   port   root用户   登录   kill   log   脚本   

:本文出自博主:chloneda

Elasticsearch官网

构建Elasticsearch启动脚本 start_es.sh。

#!/bin/bash

export ES_HOME=xxx

su elastic -c "sh ${ES_HOME}/bin/elasticsearch -d -p ${ES_HOME}/pid"

参数说明:

  • su:登录用户。
  • elastic:部署Elasticsearch用户,避免root用户而无法启动。
  • c:c参数后跟具体命令。
  • d:Elasticsearch作为守护线程后台启动。
  • p:指定线程ID文件,需要新建。

构建Elasticsearch停止脚本 stop_es.sh。

#!/bin/bash

export ES_HOME=xxx

kill `cat ${ES_HOME}/pid` 

Elasticsearch启动、停止脚本

标签:线程id   pid   roo   port   root用户   登录   kill   log   脚本   

原文地址:https://www.cnblogs.com/chloneda/p/es-shell.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!