linux下 APACHE 2.0 进程过多的问题
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
最近不知道为什么,apache的进程越来越多,感觉apache不会自动杀死空闲的进程,对新进的连接也不一定会使用当前空闲进程,而重新建立一个进程。
导致隔几天就apache假死, 增加了maxClient=1500 以及ServerLimit=20000
但感觉不太舒服,为保险起见,配置了linux下的crond 服务
每天早上5点的时候,自动重新启动apache服务
linux下输入:
>crondtab -l //列出当前这个用户的所有定时服务
>crondtab -e //编辑当前用户的定时任务
在编辑器里输入
0 5 * * * /usr/local/apache2/bin/apachectl restart
即可,前面0 5 * * * 分别表示:
分钟 (0-59)
小時 (0-23)
日期 (1-31)
月份 (1-12)
星期 (0-6)//0代表星期天
具体可以查看相关资料
OK,大功告成!也算是一种办法吧。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)