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에서 이동 됨]
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 730 |
|
19년 전 | 2718 | |
| 729 |
그레이스웹
|
19년 전 | 3508 | |
| 728 |
|
19년 전 | 2678 | |
| 727 |
|
19년 전 | 2519 | |
| 726 |
|
19년 전 | 2336 | |
| 725 |
|
19년 전 | 2236 | |
| 724 |
|
19년 전 | 2130 | |
| 723 |
|
19년 전 | 4254 | |
| 722 |
|
19년 전 | 2669 | |
| 721 |
|
19년 전 | 2161 | |
| 720 |
|
19년 전 | 2256 | |
| 719 |
|
19년 전 | 2843 | |
| 718 |
|
19년 전 | 1957 | |
| 717 |
|
19년 전 | 3190 | |
| 716 |
|
19년 전 | 2748 | |
| 715 |
|
19년 전 | 2260 | |
| 714 |
|
19년 전 | 1815 | |
| 713 |
|
19년 전 | 2235 | |
| 712 |
|
19년 전 | 2009 | |
| 711 |
|
19년 전 | 1899 | |
| 710 |
|
19년 전 | 2462 | |
| 709 |
|
19년 전 | 2319 | |
| 708 |
|
19년 전 | 3881 | |
| 707 |
|
19년 전 | 3733 | |
| 706 |
|
19년 전 | 2234 | |
| 705 |
|
19년 전 | 3276 | |
| 704 |
|
19년 전 | 1950 | |
| 703 |
|
19년 전 | 2382 | |
| 702 |
|
19년 전 | 2275 | |
| 701 |
홀로남은자
|
19년 전 | 2342 | |
| 700 |
홀로남은자
|
19년 전 | 2178 | |
| 699 | 19년 전 | 2813 | ||
| 698 |
|
19년 전 | 2826 | |
| 697 |
|
19년 전 | 3170 | |
| 696 |
|
19년 전 | 3040 | |
| 695 |
|
19년 전 | 2702 | |
| 694 |
|
19년 전 | 2928 | |
| 693 |
|
19년 전 | 3178 | |
| 692 |
|
19년 전 | 2876 | |
| 691 |
|
19년 전 | 2618 | |
| 690 | 19년 전 | 2923 | ||
| 689 | 19년 전 | 4505 | ||
| 688 | 19년 전 | 2431 | ||
| 687 | 19년 전 | 2447 | ||
| 686 | 19년 전 | 3477 | ||
| 685 | 19년 전 | 3157 | ||
| 684 | 19년 전 | 2808 | ||
| 683 | 19년 전 | 2050 | ||
| 682 | 19년 전 | 1773 | ||
| 681 | 19년 전 | 2876 | ||
| 680 | 19년 전 | 1717 | ||
| 679 | 19년 전 | 2308 | ||
| 678 | 19년 전 | 3957 | ||
| 677 | 19년 전 | 3726 | ||
| 676 | 19년 전 | 3451 | ||
| 675 | 19년 전 | 3406 | ||
| 674 |
|
19년 전 | 1565 | |
| 673 |
|
19년 전 | 1937 | |
| 672 |
|
19년 전 | 1857 | |
| 671 | 19년 전 | 2522 | ||
| 670 | 19년 전 | 4620 | ||
| 669 |
|
19년 전 | 2761 | |
| 668 |
|
19년 전 | 1916 | |
| 667 |
|
19년 전 | 1931 | |
| 666 |
|
19년 전 | 1821 | |
| 665 |
|
19년 전 | 2560 | |
| 664 |
|
19년 전 | 8174 | |
| 663 |
|
19년 전 | 2723 | |
| 662 |
|
19년 전 | 2788 | |
| 661 |
|
19년 전 | 3042 | |
| 660 |
|
19년 전 | 2195 | |
| 659 |
|
19년 전 | 2207 | |
| 658 |
|
19년 전 | 2170 | |
| 657 |
|
19년 전 | 2068 | |
| 656 |
|
19년 전 | 2256 | |
| 655 |
|
19년 전 | 2516 | |
| 654 |
|
19년 전 | 3076 | |
| 653 | 19년 전 | 2328 | ||
| 652 | 19년 전 | 1909 | ||
| 651 |
|
19년 전 | 2829 | |
| 650 | 19년 전 | 4996 | ||
| 649 | 19년 전 | 3497 | ||
| 648 | 19년 전 | 3453 | ||
| 647 | 19년 전 | 2968 | ||
| 646 | 19년 전 | 2390 | ||
| 645 | 19년 전 | 1488 | ||
| 644 | 19년 전 | 3133 | ||
| 643 | 19년 전 | 2010 | ||
| 642 |
|
19년 전 | 5375 | |
| 641 | 19년 전 | 2430 | ||
| 640 | 19년 전 | 3429 | ||
| 639 | 19년 전 | 2854 | ||
| 638 | 19년 전 | 1760 | ||
| 637 | 19년 전 | 3879 | ||
| 636 | 19년 전 | 2418 | ||
| 635 | 19년 전 | 2306 | ||
| 634 |
|
19년 전 | 3024 | |
| 633 |
|
19년 전 | 3298 | |
| 632 | 19년 전 | 2496 | ||
| 631 | 19년 전 | 2257 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기