Nginx自动/ tmp清理?

时间:2014-01-31 16:16:10

标签: nginx

我在我的vps上安装了Nginx

我在Nginx Admin

中找到了此消息
To automated /tmp cleanup add bellow cron 
0 */1 * * * /usr/sbin/tmpwatch -am 1 /tmp/nginx_client
via crontab -e command

我应该执行这一行?

 0 */1 * * * /usr/sbin/tmpwatch -am 1 /tmp/nginx_client

我的vps centos 5 32 cpanel

2 个答案:

答案 0 :(得分:1)

转到VPS的控制台并执行以下操作:

 $ crontab -e

然后,在cron文件中(使用* * * * *语法调度作业,您可以阅读有关on Wikipedia的更多信息),请输入该行:

0 */1 * * * /usr/sbin/tmpwatch -am 1 /tmp/nginx_client

这将每小时执行一次命令tmpwatch

tmpwatch将删除/tmp/nginx_client目录中修改文件时间超过1小时的所有文件。

答案 1 :(得分:0)

另一种方式......

0 * * * * find /tmp/nginx_client/ -type f -mtime +8 -delete > /dev/null 2>&1