How can I remove logstash process?

I killed logstash process, but this process still remain.
so I tried to kill the process with 'kill -9 [PID]', but I got error message like bash: kill: (36888) - No such process
even if it is existing and then chaning the PID.

How can I remove this process?

Logstash tries to close connections in a "polite" way to avoid loss of data. That's why it is taking so long to shutdown. It has a pipeline.unsafe_shutdown flag in the /etc/logstash/logstash.yml file. if you assign true it will shutdown faster.

BTW: if you use UDP, it will also be faster.

Let me know if that helps :slight_smile:

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