某天发现一个服务器资源吃满了,上去看进程
$ ps aux
root 310 0.0 0.0 113184 176 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 311 0.0 0.4 441012 37988 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
root 459 0.0 0.0 113184 4 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 460 0.0 0.4 441012 35872 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
root 923 0.0 0.0 113184 4 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 924 0.0 0.4 441012 36064 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
root 1073 0.0 0.0 113184 4 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 1075 0.0 0.4 441012 38760 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
root 1133 0.0 0.0 107976 136 ? Ss 3月16 0:10 rhnsd
root 1210 0.0 0.0 112732 936 pts/0 S+ 15:24 0:00 grep --color=auto rhn
root 1368 0.0 0.0 113184 4 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 1369 0.0 0.3 441012 31128 ? S 5月03 0:02 /usr/bin/python /usr/sbin/rhn-profile-sync
root 1511 0.0 0.0 113184 176 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 1514 0.0 0.4 440864 35672 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
root 1825 0.0 0.0 113184 4 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 1826 0.0 0.4 441012 37844 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
root 1966 0.0 0.0 113184 176 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 1967 0.0 0.3 441012 30908 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
root 2108 0.0 0.0 113184 4 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 2109 0.0 0.4 441012 34696 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
root 2179 0.0 0.0 113184 4 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 2182 0.0 0.4 441012 38656 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
root 2252 0.0 0.0 113184 4 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 2253 0.0 0.4 441012 36236 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
root 2332 0.0 0.0 113184 4 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 2334 0.0 0.5 441012 42236 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
root 2489 0.0 0.0 113184 176 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 2490 0.0 0.4 441012 39600 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
root 2537 0.0 0.0 113184 172 ? Ss 5月03 0:00 /bin/sh -c /usr/sbin/rhn-profile-sync >/dev/null 2>&1
root 2539 0.0 0.4 441012 36704 ? S 5月03 0:01 /usr/bin/python /usr/sbin/rhn-profile-sync
。。。还有好几百个。。。
大量的名字带 rnh 的进程,貌似是同步文件的什么任务,可能哪里出了bug,
全部干掉的命令
$ ps aux|grep rhn| awk '{print $2}'| xargs kill -9