Linux 中的kill命令用来终止指定的进程(terminate a process)的运行,是Linux下进程管理的常用命令.通常,终止一个前台进程可以 使用Ctrl+C键,但是,对于一个后台进程就须用kill命令来终止,我们就需要先使用ps/pidof/pstree/top等工具获取进程PID, 然后使用kill命令来杀掉该进程.kill命令是通过向进程发送指定的信号来结束相应进程的.在默认情况下,采用编号为15的TERM信号.TERM信 号将终止所有不能捕获该信号的进程.对于那些可以捕获…
On Solaris and Linux a thread dump is also printed if the J2SE process receives a QUIT signal. So kill-QUIT <pid> causes the process with id <pid> to print a thread dump to its standard output.or kill -3 <pid> java问题定位和诊断post-mortem事后剖析,…