- 先用top 查看哪个进程异常
- 使用 strace -f -F -p xxxx //xxxx是pid
经过上面两个发现是 dbus-daemon 100% 然后出错信息是 httpd (too many open files) - ulimit -n,太小了,开大些;
4、修改/etc/security/limits.conf
* soft nofile 10240
* hard nofile 20480
注意 前面的*号是要写的,意指所有用户
- init 0(reboot 没有那么快,不知道为什么)
- 机器启动
参考文章:https://blog.csdn.net/Love_yy123/article/details/107641768