1 logrotate
sysklogd 가 제어하지 않는 로그를 뱅글뱅글 돌리자.1.1 emerge
emerge logrotate
1.2 cron
하루에 한번 cron 에 의해 실행되도록 한다.mkdir /etc/logrotate.d vi /etc/cron.daily/logrotatesh #!/bin/sh /usr/sbin/logrotate /etc/logrotate.d :wq chmod 700 /etc/cron.daily/logrotatesh
1.3 setting
- 실제 실행될 설정파일. 요점은 로테이트 시킬 로그파일 지정과 로그를 돌린 후 서버의 재시동이다.
- /etc/logrotate.d 에 root.root 600 의 파일로 만든다.
- 예문에 나온것들은 로그용량이 50MB 를 넘기면 교체하도록 되어있다.
- 로그는 10개까지 생성된다.
로그가 도는 모습 예
cd /var/log/apache2 ls -al -rw-r--r-- 1 root root 910 2003-06-09 03:00 access_log -rw-r--r-- 1 root root 51034152 2003-06-09 03:00 access_log.1 -rw-r--r-- 1 root root 64837231 2003-06-08 03:00 access_log.2 -rw-r--r-- 1 root root 57362834 2003-06-07 03:00 access_log.3 -rw-r--r-- 1 root root 58374943 2003-06-06 03:01 access_log.4 -rw-r--r-- 1 root root 79382834 2003-06-05 03:00 access_log.5 -rw-r--r-- 1 root root 56384926 2003-06-03 03:01 access_log.6 -rw-r--r-- 1 root root 53823232 2003-06-01 03:00 access_log.7 -rw-r--r-- 1 root root 52344223 2003-05-26 03:00 access_log.8 -rw-r--r-- 1 root root 54392345 2003-05-19 03:00 access_log.9
apache2
/var/log/apache2/access_log /var/log/apache2/error_log /var/log/apache2/ssl_access_log /var/log/apache2/ssl_error_log /var/log/apache2/ssl_request_log {
size=50000k
rotate 10
missingok
notifempty
postrotate
/usr/sbin/apache2ctl graceful compress
Old versions of log files are compressed with gzip by default.
See also nocompress.
endscript
}
mysql
/var/log/mysql/mysql.log /var/log/mysql/mysql.err {
size=50000k
rotate 10
missingok
notifempty
postrotate
/usr/bin/mysqladmin refresh -uroot -pmysqlpassword
endscript
}
qmail
/var/log/qmail/qmail-smtpd/current /var/log/qmail/qmail-send/current {
size=50000k
rotate 10
missingok
notifempty
postrotate
/usr/bin/svc -t /service/qmail-s*
endscript
}
2 응용
매일같이 DB를 백업하되 열흘분만 남긴다.mysql_db_backup
/yourmysqldbbackupdirectory/all_databases.sql {
size=1
rotate 10
missingok
notifempty
postrotate
/usr/bin/mysqldump --all-databases > /yourmysqldbbackupdirectory/all_databases.sql
endscript
}
3 질문과 답변
4 잡담
- 압축만 되면 더이상 바랄게 없습니다. -송효진
옵션중에 compress 란것이 있습니다. logrotate(8) 페이지를 참고. -- mithrandir
[이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8030 | 9년 전 | 399 | ||
| 8029 | 9년 전 | 323 | ||
| 8028 | 9년 전 | 282 | ||
| 8027 | 9년 전 | 291 | ||
| 8026 | 9년 전 | 361 | ||
| 8025 | 9년 전 | 401 | ||
| 8024 | 9년 전 | 366 | ||
| 8023 | 9년 전 | 409 | ||
| 8022 | 9년 전 | 328 | ||
| 8021 | 9년 전 | 344 | ||
| 8020 | 9년 전 | 338 | ||
| 8019 | 9년 전 | 358 | ||
| 8018 | 9년 전 | 461 | ||
| 8017 | 9년 전 | 549 | ||
| 8016 | 9년 전 | 360 | ||
| 8015 | 9년 전 | 405 | ||
| 8014 | 9년 전 | 338 | ||
| 8013 | 9년 전 | 255 | ||
| 8012 | 9년 전 | 261 | ||
| 8011 | 9년 전 | 460 | ||
| 8010 | 9년 전 | 316 | ||
| 8009 | 9년 전 | 325 | ||
| 8008 | 9년 전 | 301 | ||
| 8007 | 9년 전 | 448 | ||
| 8006 | 9년 전 | 485 | ||
| 8005 |
|
9년 전 | 982 | |
| 8004 | 9년 전 | 372 | ||
| 8003 | 9년 전 | 440 | ||
| 8002 | 9년 전 | 335 | ||
| 8001 |
|
9년 전 | 681 | |
| 8000 | 9년 전 | 438 | ||
| 7999 | 9년 전 | 394 | ||
| 7998 | 9년 전 | 449 | ||
| 7997 | 9년 전 | 322 | ||
| 7996 | 9년 전 | 553 | ||
| 7995 | 9년 전 | 488 | ||
| 7994 | 9년 전 | 361 | ||
| 7993 | 9년 전 | 425 | ||
| 7992 | 9년 전 | 531 | ||
| 7991 | 9년 전 | 273 | ||
| 7990 | 9년 전 | 306 | ||
| 7989 | 9년 전 | 319 | ||
| 7988 | 9년 전 | 746 | ||
| 7987 | 9년 전 | 450 | ||
| 7986 | 9년 전 | 447 | ||
| 7985 | 9년 전 | 524 | ||
| 7984 | 9년 전 | 445 | ||
| 7983 | 9년 전 | 687 | ||
| 7982 | 9년 전 | 548 | ||
| 7981 | 9년 전 | 499 | ||
| 7980 | 9년 전 | 522 | ||
| 7979 | 9년 전 | 508 | ||
| 7978 | 9년 전 | 479 | ||
| 7977 | 9년 전 | 417 | ||
| 7976 | 9년 전 | 872 | ||
| 7975 | 9년 전 | 384 | ||
| 7974 | 9년 전 | 414 | ||
| 7973 | 9년 전 | 622 | ||
| 7972 | 9년 전 | 401 | ||
| 7971 | 9년 전 | 472 | ||
| 7970 | 9년 전 | 322 | ||
| 7969 | 9년 전 | 558 | ||
| 7968 | 9년 전 | 400 | ||
| 7967 | 9년 전 | 389 | ||
| 7966 | 9년 전 | 396 | ||
| 7965 |
|
9년 전 | 1031 | |
| 7964 | 9년 전 | 419 | ||
| 7963 | 9년 전 | 427 | ||
| 7962 | 9년 전 | 414 | ||
| 7961 |
전갈자리남자
|
9년 전 | 520 | |
| 7960 | 9년 전 | 987 | ||
| 7959 | 9년 전 | 565 | ||
| 7958 | 9년 전 | 425 | ||
| 7957 | 9년 전 | 377 | ||
| 7956 | 9년 전 | 377 | ||
| 7955 | 9년 전 | 476 | ||
| 7954 | 9년 전 | 404 | ||
| 7953 | 9년 전 | 454 | ||
| 7952 | 9년 전 | 378 | ||
| 7951 | 9년 전 | 516 | ||
| 7950 | 9년 전 | 410 | ||
| 7949 | 9년 전 | 398 | ||
| 7948 | 9년 전 | 339 | ||
| 7947 | 9년 전 | 951 | ||
| 7946 | 9년 전 | 460 | ||
| 7945 | 9년 전 | 417 | ||
| 7944 | 9년 전 | 458 | ||
| 7943 | 9년 전 | 401 | ||
| 7942 | 9년 전 | 419 | ||
| 7941 | 9년 전 | 412 | ||
| 7940 | 9년 전 | 911 | ||
| 7939 | 9년 전 | 383 | ||
| 7938 | 9년 전 | 415 | ||
| 7937 | 9년 전 | 304 | ||
| 7936 | 9년 전 | 898 | ||
| 7935 | 9년 전 | 478 | ||
| 7934 | 9년 전 | 444 | ||
| 7933 | 9년 전 | 556 | ||
| 7932 | 9년 전 | 518 | ||
| 7931 | 9년 전 | 570 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기