[리눅스] 로그 삭제 및 비우기(?)
- 09-09
- 57,706 회
- 0 건
용량이 꽉 찬 서버를 보고 깜짝 놀라서 남김 (갑자기 아무 기억이 안났음 ㅠㅠ)
평소에 문제 없을때 한번씩!
[code]
# 실시간 사용중인 로그들 비우고
cat /dev/null > /var/log/httpd/access_log
cat /dev/null > /var/log/httpd/error_log
cat /dev/null > /var/log/httpd/ssl_access_log
cat /dev/null > /var/log/httpd/ssl_error_log
cat /dev/null > /var/log/httpd/ssl_request_log
# 백업된 로그들 삭제
rm -f /var/log/httpd/access_log-*
rm -f /var/log/httpd/error_log-*
rm -f /var/log/httpd/ssl_access_log-*
rm -f /var/log/httpd/ssl_error_log-*
rm -f /var/log/httpd/ssl_request_log-*
[/code]