killできないプロセスがあるんだね。
ゾンビプロセスと言うみたい。
○PIDの確認
ps aux | grep yum
○23847がいくらkillしても消えない。
[root@sofcul html]# ps aux | grep yum
root 23847 0.0 0.2 287236 20044 pts/0 Tl 22:35 0:00 /usr/bin/python /usr/bin/yum info php-api
root 23968 0.0 0.2 257308 15856 pts/0 SN 22:50 0:00 /usr/bin/python -tt /usr/sbin/yum-updatesd
root 23994 0.0 0.0 65420 860 pts/0 S+ 22:56 0:00 grep yum
○シグナリングを送ることにより殺せるとあった。
-9をつけるそう。
kill -9 23847