[Elasticsearch] elastic start, stop shell로 만들어서 하기

HI·2022년 4월 27일
0

elasticsearch 운영

목록 보기
4/7
  • start
path='/my/Elasticsearch/elasticsearch-7.17.2'

$path/bin/elasticsearch -d -p $path/es.pid
  • stop
#! /bin/sh
path='/my/Elasticsearch/elasticsearch-7.17.2'

kill `cat ${path}/es.pid`
profile
https://github.com/gaeunban

0개의 댓글