本文共 1603 字,大约阅读时间需要 5 分钟。
使用前一定先创建快照备份,否则不要使用本文方法。
service crond stopbusybox rm -f /etc/ld.so.preloadbusybox rm -f /usr/local/lib/libioset.sochattr -i /etc/ld.so.preloadbusybox rm -f /etc/ld.so.preloadbusybox rm -f /usr/local/lib/libioset.so# 清理异常进程busybox ps -ef | busybox grep -v grep | busybox egrep 'ksoftirqds' | busybox awk '{print $1}' | busybox xargs kill -9busybox ps -ef | busybox grep -v grep | busybox egrep 'watchdogs' | busybox awk '{print $1}' | busybox xargs kill -9busybox rm -f /tmp/watchdogsbusybox rm -f /etc/cron.d/tomcatbusybox rm -f /etc/cron.d/rootbusybox rm -f /var/spool/cron/rootbusybox rm -f /var/spool/cron/crontabs/rootbusybox rm -f /etc/rc.d/init.d/watchdogsbusybox rm -f /usr/sbin/watchdogsldconfig# 再次清理异常进程busybox ps -ef | busybox grep -v grep | busybox egrep 'ksoftirqds' | busybox awk '{print $1}' | busybox xargs kill -9busybox ps -ef | busybox grep -v grep | busybox egrep 'watchdogs' | busybox awk '{print $1}' | busybox xargs kill -9# 清理开机启动项chkconfig watchdogs offchkconfig –del watchdogsservice crond startecho "Done, Please reboot!"
3、Redis业务特殊处理
如无业务必要,修改Redis只监听127.0.0.1,并为Redis设置认证密码。编辑Redis配置文件/etc/redis.conf以下行保存后使用service redis restart重启Redis服务:
bind 127.0.0.1 #配置只监听本地回环地址127.0.0.1
requirepass xxx #去掉行前注释,修改密码为所需的密码。
4、登录密钥处理
不影响业务的情况下,建议临时删除机器上.ssh/known_hosts和登录密钥文件。(蠕虫常常利用这个进行关联传播,会在短时间内扩散到所有内网机器)
附录
常见问题处理
转载地址:http://mgdia.baihongyu.com/