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에서 이동 됨]
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 830 |
|
19년 전 | 2175 | |
| 829 |
|
19년 전 | 1903 | |
| 828 |
|
19년 전 | 1789 | |
| 827 |
|
19년 전 | 1646 | |
| 826 |
|
19년 전 | 1839 | |
| 825 |
|
19년 전 | 1882 | |
| 824 |
|
19년 전 | 1939 | |
| 823 |
|
19년 전 | 2683 | |
| 822 |
|
19년 전 | 5310 | |
| 821 |
|
19년 전 | 1717 | |
| 820 |
|
19년 전 | 1561 | |
| 819 |
|
19년 전 | 1428 | |
| 818 |
|
19년 전 | 1585 | |
| 817 |
|
19년 전 | 1515 | |
| 816 |
|
19년 전 | 1434 | |
| 815 |
|
19년 전 | 1446 | |
| 814 |
|
19년 전 | 1373 | |
| 813 |
|
19년 전 | 1435 | |
| 812 | 19년 전 | 2798 | ||
| 811 |
pearly
|
19년 전 | 3817 | |
| 810 |
pearly
|
19년 전 | 5200 | |
| 809 |
|
19년 전 | 1364 | |
| 808 |
pearly
|
19년 전 | 4530 | |
| 807 | 19년 전 | 2973 | ||
| 806 |
|
19년 전 | 1487 | |
| 805 |
|
19년 전 | 2683 | |
| 804 |
|
19년 전 | 3606 | |
| 803 |
|
19년 전 | 1778 | |
| 802 |
|
19년 전 | 3782 | |
| 801 |
|
19년 전 | 1873 | |
| 800 | 19년 전 | 3765 | ||
| 799 | 19년 전 | 3418 | ||
| 798 | 19년 전 | 4197 | ||
| 797 | 19년 전 | 4047 | ||
| 796 |
|
19년 전 | 1880 | |
| 795 |
|
19년 전 | 1838 | |
| 794 | 19년 전 | 4265 | ||
| 793 | 19년 전 | 2666 | ||
| 792 | 19년 전 | 2533 | ||
| 791 | 19년 전 | 2387 | ||
| 790 | 19년 전 | 1966 | ||
| 789 | 19년 전 | 2560 | ||
| 788 | 19년 전 | 2192 | ||
| 787 | 19년 전 | 1841 | ||
| 786 | 19년 전 | 1969 | ||
| 785 | 19년 전 | 1436 | ||
| 784 |
|
19년 전 | 1684 | |
| 783 | 19년 전 | 2825 | ||
| 782 |
|
19년 전 | 1943 | |
| 781 | 19년 전 | 3222 | ||
| 780 | 19년 전 | 3130 | ||
| 779 |
|
19년 전 | 2239 | |
| 778 |
|
19년 전 | 1786 | |
| 777 | 19년 전 | 2829 | ||
| 776 | 19년 전 | 2896 | ||
| 775 | 19년 전 | 4006 | ||
| 774 |
|
19년 전 | 1968 | |
| 773 | 19년 전 | 2616 | ||
| 772 | 19년 전 | 2330 | ||
| 771 | 19년 전 | 3459 | ||
| 770 |
|
19년 전 | 1416 | |
| 769 | 19년 전 | 1483 | ||
| 768 | 19년 전 | 1760 | ||
| 767 | 19년 전 | 2202 | ||
| 766 | 19년 전 | 1830 | ||
| 765 | 19년 전 | 1693 | ||
| 764 |
|
19년 전 | 2099 | |
| 763 |
|
19년 전 | 2202 | |
| 762 |
|
19년 전 | 4958 | |
| 761 | 19년 전 | 2321 | ||
| 760 |
|
19년 전 | 3190 | |
| 759 | 19년 전 | 2637 | ||
| 758 |
|
19년 전 | 2401 | |
| 757 | 19년 전 | 4696 | ||
| 756 | 19년 전 | 2558 | ||
| 755 |
|
19년 전 | 2403 | |
| 754 |
|
19년 전 | 1938 | |
| 753 |
|
19년 전 | 1719 | |
| 752 |
pearly
|
19년 전 | 3350 | |
| 751 | 19년 전 | 2318 | ||
| 750 |
|
19년 전 | 6152 | |
| 749 | 19년 전 | 2016 | ||
| 748 |
|
19년 전 | 1892 | |
| 747 |
|
19년 전 | 2695 | |
| 746 |
|
19년 전 | 1801 | |
| 745 | 19년 전 | 2275 | ||
| 744 | 19년 전 | 2103 | ||
| 743 |
|
19년 전 | 3552 | |
| 742 | 19년 전 | 2568 | ||
| 741 | 19년 전 | 2737 | ||
| 740 |
|
19년 전 | 4361 | |
| 739 | 19년 전 | 3538 | ||
| 738 |
|
19년 전 | 2298 | |
| 737 | 19년 전 | 4285 | ||
| 736 | 19년 전 | 3259 | ||
| 735 |
홀로남은자
|
19년 전 | 4124 | |
| 734 |
홀로남은자
|
19년 전 | 1999 | |
| 733 |
홀로남은자
|
19년 전 | 2218 | |
| 732 | 19년 전 | 2138 | ||
| 731 | 19년 전 | 3341 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기