格式:kill -l [signal]
-l:显示当前系统可用信号
-l:显示当前系统可用信号
[root@localhost ~]# kill -l
1) SIGHUP 2) SIGINT 3) SIGQUIT 4) SIGILL 5) SIGTRAP
6) SIGABRT 7) SIGBUS 8) SIGFPE 9) SIGKILL10) SIGUSR1
11) SIGSEGV12) SIGUSR213) SIGPIPE14) SIGALRM15) SIGTERM
16) SIGSTKFLT17) SIGCHLD18) SIGCONT19) SIGSTOP20) SIGTSTP
21) SIGTTIN22) SIGTTOU23) SIGURG24) SIGXCPU25) SIGXFSZ
26) SIGVTALRM27) SIGPROF28) SIGWINCH29) SIGIO30) SIGPWR
31) SIGSYS34) SIGRTMIN35) SIGRTMIN+136) SIGRTMIN+237) SIGRTMIN+3
38) SIGRTMIN+439) SIGRTMIN+540) SIGRTMIN+641) SIGRTMIN+742) SIGRTMIN+8
43) SIGRTMIN+944) SIGRTMIN+1045) SIGRTMIN+1146) SIGRTMIN+1247) SIGRTMIN+13
48) SIGRTMIN+1449) SIGRTMIN+1550) SIGRTMAX-1451) SIGRTMAX-1352) SIGRTMAX-12
53) SIGRTMAX-1154) SIGRTMAX-1055) SIGRTMAX-956) SIGRTMAX-857) SIGRTMAX-7
58) SIGRTMAX-659) SIGRTMAX-560) SIGRTMAX-461) SIGRTMAX-362) SIGRTMAX-2
63) SIGRTMAX-164) SIGRTMAX
常用信号:
1) SIGHUP: 无须关闭进程而让其重读配置文件;PID不变
2) SIGINT: 中断正在运行的进程;相当于Ctrl+c;
9) SIGKILL: 杀死正在运行的进程;直接终止进程;谨慎
15) SIGTERM:终止正在运行的进程;进程终止前允许可保存数据;默认缺省信号
指定信号的方法:
(1) 信号的数字标识;1, 2, 9
(2) 信号完整名称;SIGHUP
(3) 信号的简写名称;HUP
格式:kill [-s signal|-p] [-q sigval] [-a] [–] pid…
编号 PID:指定信号模式编号管理进程;推荐用此模式操作
-signal PID:指定信号模式管理进程;
不指定信号为默认使用15信号
[root@localhost ~]# ps auxf |grep sshd
root 1698 0.0 0.0 112812 4280 ? Ss 00:58 0:00 /usr/sbin/sshd -D
root 1699 0.0 0.0 157208 5884 ? Ss 00:58 0:00 \_ sshd: root@pts/0
root 1876 0.0 0.0 112704 960 pts/0 S+ 01:29 0:00 | \_ grep --color=auto sshd
root 1851 0.0 0.0 157208 5816 ? Ss 01:29 0:00 \_ sshd: yvan [priv]
yvan 1853 0.0 0.0 157208 2300 ? S 01:29 0:00 \_ sshd: yvan@pts/1
[root@localhost ~]# kill 1851
[root@localhost ~]# ps auxf |grep sshd
root 1698 0.0 0.0 112812 4280 ? Ss 00:58 0:00 /usr/sbin/sshd -D
root 1699 0.0 0.0 157208 5884 ? Ss 00:58 0:00 \_ sshd: root@pts/0
root 1882 0.0 0.0 112704 960 pts/0 S+ 01:30 0:00 \_ grep --color=auto sshd
编号 PID:指定信号模式编号管理进程
[root@localhost ~]# ps auxf |grep sshd
root 1698 0.0 0.0 112812 4320 ? Ss 00:58 0:00 /usr/sbin/sshd -D
root 1699 0.0 0.0 157208 5884 ? Ss 00:58 0:00 \_ sshd: root@pts/0
root 1909 0.0 0.0 112704 964 pts/0 S+ 01:31 0:00 | \_ grep --color=auto sshd
root 1884 0.1 0.0 157208 5816 ? Ss 01:31 0:00 \_ sshd: yvan [priv]
yvan 1886 0.0 0.0 157208 2300 ? S 01:31 0:00 \_ sshd: yvan@pts/1
[root@localhost ~]# kill 2 1884
[root@localhost ~]# ps auxf |grep sshd
root 1698 0.0 0.0 112812 4320 ? Ss 00:58 0:00 /usr/sbin/sshd -D
root 1699 0.0 0.0 157208 5884 ? Ss 00:58 0:00 \_ sshd: root@pts/0
root 1913 0.0 0.0 112704 960 pts/0 S+ 01:32 0:00 \_ grep --color=auto sshd
signal PID:指定信号模式管理进程;信号模式可简写
[root@localhost ~]# ps auxf |grep sshd
root 1698 0.0 0.0 112812 4320 ? Ss 00:58 0:00 /usr/sbin/sshd -D
root 1699 0.0 0.0 157208 5884 ? Ss 00:58 0:00 \_ sshd: root@pts/0
root 2156 0.0 0.0 112704 960 pts/0 S+ 01:47 0:00 | \_ grep --color=auto sshd
root 2131 0.2 0.0 157208 5816 ? Ss 01:46 0:00 \_ sshd: yvan [priv]
yvan 2133 0.0 0.0 157208 2304 ? S 01:46 0:00 \_ sshd: yvan@pts/1
[root@localhost ~]# kill -sigkill 2133
[root@localhost ~]# ps auxf |grep sshd
root 1698 0.0 0.0 112812 4320 ? Ss 00:58 0:00 /usr/sbin/sshd -D
root 1699 0.0 0.0 157208 5884 ? Ss 00:58 0:00 \_ sshd: root@pts/0
root 2160 0.0 0.0 112704 964 pts/0 S+ 01:47 0:00 \_ grep --color=auto sshd
IT运维网 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明Linux进程管理命令-kill!