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에서 이동 됨]
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 1430 | 18년 전 | 2982 | ||
| 1429 | 18년 전 | 2926 | ||
| 1428 | 18년 전 | 2825 | ||
| 1427 | 18년 전 | 2133 | ||
| 1426 |
|
18년 전 | 2311 | |
| 1425 |
|
18년 전 | 2869 | |
| 1424 |
|
18년 전 | 2960 | |
| 1423 |
frotone
|
18년 전 | 4131 | |
| 1422 | 18년 전 | 6120 | ||
| 1421 | 18년 전 | 2051 | ||
| 1420 | 18년 전 | 2178 | ||
| 1419 | 18년 전 | 1891 | ||
| 1418 | 18년 전 | 1652 | ||
| 1417 | 18년 전 | 2639 | ||
| 1416 | 18년 전 | 1700 | ||
| 1415 | 18년 전 | 1560 | ||
| 1414 | 18년 전 | 4737 | ||
| 1413 | 18년 전 | 1793 | ||
| 1412 | 18년 전 | 1836 | ||
| 1411 | 18년 전 | 1851 | ||
| 1410 | 18년 전 | 1972 | ||
| 1409 | 18년 전 | 3631 | ||
| 1408 | 18년 전 | 1651 | ||
| 1407 | 18년 전 | 1523 | ||
| 1406 | 18년 전 | 1352 | ||
| 1405 | 18년 전 | 1856 | ||
| 1404 | 18년 전 | 1905 | ||
| 1403 |
frotone
|
18년 전 | 3653 | |
| 1402 | 18년 전 | 1978 | ||
| 1401 | 18년 전 | 3111 | ||
| 1400 | 18년 전 | 4731 | ||
| 1399 | 18년 전 | 2863 | ||
| 1398 | 18년 전 | 8060 | ||
| 1397 | 18년 전 | 4063 | ||
| 1396 |
|
18년 전 | 2743 | |
| 1395 | 18년 전 | 1524 | ||
| 1394 | 18년 전 | 2626 | ||
| 1393 | 18년 전 | 5037 | ||
| 1392 | 18년 전 | 5222 | ||
| 1391 |
cncafe
|
18년 전 | 2096 | |
| 1390 |
mixdesign
|
18년 전 | 4353 | |
| 1389 | 18년 전 | 4099 | ||
| 1388 |
mixdesign
|
18년 전 | 4153 | |
| 1387 | 18년 전 | 2271 | ||
| 1386 | 18년 전 | 4186 | ||
| 1385 |
mixdesign
|
18년 전 | 2177 | |
| 1384 | 18년 전 | 3284 | ||
| 1383 | 18년 전 | 4925 | ||
| 1382 | 18년 전 | 1947 | ||
| 1381 |
오디세우스
|
18년 전 | 3409 | |
| 1380 |
mixdesign
|
18년 전 | 1643 | |
| 1379 | 18년 전 | 2745 | ||
| 1378 |
mixdesign
|
18년 전 | 1672 | |
| 1377 | 18년 전 | 2723 | ||
| 1376 |
|
18년 전 | 2557 | |
| 1375 |
|
18년 전 | 1559 | |
| 1374 |
|
18년 전 | 1494 | |
| 1373 |
|
18년 전 | 1739 | |
| 1372 | 18년 전 | 2241 | ||
| 1371 | 18년 전 | 2015 | ||
| 1370 | 18년 전 | 2380 | ||
| 1369 | 18년 전 | 4925 | ||
| 1368 |
mixdesign
|
18년 전 | 1815 | |
| 1367 | 18년 전 | 1262 | ||
| 1366 | 18년 전 | 1377 | ||
| 1365 | 18년 전 | 1337 | ||
| 1364 | 18년 전 | 1083 | ||
| 1363 | 18년 전 | 1082 | ||
| 1362 | 18년 전 | 1411 | ||
| 1361 | 18년 전 | 1367 | ||
| 1360 | 18년 전 | 2349 | ||
| 1359 | 18년 전 | 1224 | ||
| 1358 | 18년 전 | 1613 | ||
| 1357 | 18년 전 | 2101 | ||
| 1356 | 18년 전 | 1280 | ||
| 1355 | 18년 전 | 2829 | ||
| 1354 | 18년 전 | 1271 | ||
| 1353 | 18년 전 | 1650 | ||
| 1352 | 18년 전 | 1500 | ||
| 1351 | 18년 전 | 1453 | ||
| 1350 | 18년 전 | 1241 | ||
| 1349 | 18년 전 | 1079 | ||
| 1348 | 18년 전 | 1670 | ||
| 1347 | 18년 전 | 1112 | ||
| 1346 | 18년 전 | 3617 | ||
| 1345 | 18년 전 | 1713 | ||
| 1344 |
mixdesign
|
18년 전 | 1790 | |
| 1343 | 18년 전 | 1118 | ||
| 1342 | 18년 전 | 1850 | ||
| 1341 | 18년 전 | 1094 | ||
| 1340 | 18년 전 | 1165 | ||
| 1339 | 18년 전 | 1016 | ||
| 1338 | 18년 전 | 1006 | ||
| 1337 | 18년 전 | 1098 | ||
| 1336 |
|
18년 전 | 2582 | |
| 1335 | 18년 전 | 1544 | ||
| 1334 | 18년 전 | 1636 | ||
| 1333 | 18년 전 | 1203 | ||
| 1332 | 18년 전 | 1873 | ||
| 1331 | 18년 전 | 1517 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기