如何清理日志?

时间:2020-12-12 08:13:39

1,使用rm -f /xx/xx/xx.log,2,
2,使用脚本
根据文件需要,写一下脚本 将对应的文件导出至null文件中

!/bin/sh

cat /dev/null > /var/log/syslog
cat /dev/null > /var/adm/sylog
cat /dev/null > /var/log/wtmp
cat /dev/null > /var/log/maillog
cat /dev/null > /var/log/messages
cat /dev/null > /var/log/openwebmail.log
cat /dev/null > /var/log/maillog
cat /dev/null > /var/log/secure
cat /dev/null > /var/log/httpd/error_log
cat /dev/null > /var/log/httpd/ssl_error_log
cat /dev/null > /var/log/httpd/ssl_request_log
cat /dev/null > /var/log/httpd/ssl_access_log
3,使用脚本

!/bin/sh

rm -f /xx/xx.log
rm -f /xx1/xx.log
rm -f /xx2/xx.log
rm -f /xx2/xx1.log