使用 CentOS 7.3 系统进,使用 top 命令发现 -bash 或 systemd 进程占 cpu 的百分比高,持续不下。
1、使用命令查看是否有定时任务。
crontab -e
这个是关键。找到定时任务后,如果定时任务是不正常的,删除它。
在删除之前,查看一下文件内容是什么。
我查看的此文件内容是这样的:
* * * * * /tmp/.X11-unix/.systemd/-bash > /dev/null 2>&1;
进入 /tmp/.X11-unix/.systemd 目录后,打开文件 -bash(要先把此文件改名,才能打得开),内容是:
1 #!/bin/bash 2 cd -- /tmp/.X11-unix/.systemd 3 mkdir -- .-bash 4 cp -f -- x86_64 .-bash/-bash 5 ./.-bash/-bash -c 6 rm -rf -- .-bash
将此目录下的所有文件删除,并在 top 命令下杀掉进程,问题解决。
参考的原文看这里:
https://blog.hi917.com/detail/58.html