Influxdb shutdown

We are spawning the influxd by executing the binary directly. Is there any way to trigger shutdown in such usage?
we are not explicitly using any process manager.

Hi @aditya,

You can send a SIGTERM to influxd for a safe shutdown

In that case, I will simply kill the influxd process. As SIGTERM is default signal for kill, it should do the trick.

@rawkode Please correct me if this will create any issues.

That should be fine, just don’t send a SIGKILL :+1:

@rawkode Thanks for quick response.
For safe-side, I will explicitly mention SIGTERM like
kill -15 <pid>