리자

Logrotate

· 18년 전 · 2141

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
 
 

[펌] http://gentoo.or.kr/wiki/moin.cgi/Logrotate

[이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
18년 전 조회 3,089
18년 전 조회 2,398
18년 전 조회 3,435
18년 전 조회 3,070
18년 전 조회 2,990
18년 전 조회 5,780
18년 전 조회 2,449
18년 전 조회 3,588
18년 전 조회 3,480
18년 전 조회 3,871
18년 전 조회 3,420
18년 전 조회 2,599
18년 전 조회 2,264
18년 전 조회 2,701
18년 전 조회 6,273
18년 전 조회 2,909
18년 전 조회 4,717
18년 전 조회 2,198
18년 전 조회 1만
18년 전 조회 2,649
18년 전 조회 1,704
18년 전 조회 3,147
18년 전 조회 3,086
18년 전 조회 2,979
18년 전 조회 2,296
18년 전 조회 2,490
18년 전 조회 3,038
18년 전 조회 3,124
18년 전 조회 4,284
18년 전 조회 6,264
18년 전 조회 2,223
18년 전 조회 2,333
18년 전 조회 2,042
18년 전 조회 1,791
18년 전 조회 2,786
18년 전 조회 1,832
18년 전 조회 1,703
18년 전 조회 4,885
18년 전 조회 1,942
18년 전 조회 1,985
18년 전 조회 1,988
18년 전 조회 2,112
18년 전 조회 3,779
18년 전 조회 1,793
18년 전 조회 1,675
18년 전 조회 1,503
18년 전 조회 1,998
18년 전 조회 2,046
18년 전 조회 3,805
18년 전 조회 2,142
18년 전 조회 3,282
18년 전 조회 4,901
18년 전 조회 3,030
18년 전 조회 8,204
18년 전 조회 4,214
18년 전 조회 2,902
18년 전 조회 1,675
18년 전 조회 2,781
18년 전 조회 5,194
18년 전 조회 5,370
18년 전 조회 2,243
18년 전 조회 4,499
18년 전 조회 4,248
18년 전 조회 4,303
18년 전 조회 2,426
18년 전 조회 4,351
18년 전 조회 2,336
18년 전 조회 3,436
18년 전 조회 5,083
18년 전 조회 2,110
18년 전 조회 3,564
18년 전 조회 1,793
18년 전 조회 2,884
18년 전 조회 1,831
18년 전 조회 2,875
18년 전 조회 2,709
18년 전 조회 1,722
18년 전 조회 1,654
18년 전 조회 1,908
18년 전 조회 2,413
18년 전 조회 2,190
18년 전 조회 2,531
18년 전 조회 5,056
18년 전 조회 1,971
18년 전 조회 1,403
18년 전 조회 1,530
18년 전 조회 1,495
18년 전 조회 1,221
18년 전 조회 1,227
18년 전 조회 1,562
18년 전 조회 1,517
18년 전 조회 2,511
18년 전 조회 1,386
18년 전 조회 1,770
18년 전 조회 2,238
18년 전 조회 1,426
18년 전 조회 2,991
18년 전 조회 1,434
18년 전 조회 1,804
18년 전 조회 1,649