How can I stop all instances of the conf file that ran by logstash ?
service logstash stop should do it. Else you can do something alongs the lines of this.
ps -ef | grep logstash | grep -v grep | awk '{print $2}' | xargs kill
or
pkill logstash
How can I stop all instances of the conf file that ran by logstash ?
service logstash stop should do it. Else you can do something alongs the lines of this.
ps -ef | grep logstash | grep -v grep | awk '{print $2}' | xargs kill
or
pkill logstash
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.