标签:使用 代码 服务器 程序 5 oo
kill -15 pid 即: kill SIGNTERM pid
不要使用kill -9。
kill -15会触发调用shutdownHook的run方法,从而可以执行关闭服务器的时候一些必要代码。
kill -9不会触发shutdownHook
kill -0 pid (kill SIGINT pid) 相当于Ctrl+c 只会中断前台进程,不会中断后台程序。
正确停止kafka的方法,布布扣,bubuko.com
正确停止kafka的方法
原文地址:http://www.cnblogs.com/fanweiwei/p/3755589.html