Stop config file of 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

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.