리눅스 로그관리 - Logrotate > Linux

본문 바로가기

Linux

리눅스 로그관리 - Logrotate

본문



접기 [ ▼ 작성자 참고 Source ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# vi /etc/logrotate.conf  - 스케쥴 지정
# rotate log files weekly
weekly
 
# keep 4 weeks worth of backlogs
rotate 5
 
# create new (empty) log files after rotating old ones
create
 
# use date as a suffix of the rotated file
dateext
 
# uncomment this if you want your log files compressed
compress
 
# RPM packages drop log rotation information into this directory
include /etc/logrotate.d
 
 
 
# logrotate 상세설정
vi /etc/logrotate.d/nginx
/server/nginx/logs/*log {
    daily
    rotate 5
    notifempty
    missingok
    compress
    sharedscripts
    postrotate
        /server/nginx/sbin/nginx -s reload
    endscript
}
 
 
# loglotate 실행
 
 /usr/sbin/logrotate -f /etc/logrotate.d/nginx


본문

logtotate는 로그들을 잘관리하도록 설정하는 기능이 logrotate 입니다

0 0
로그인 후 추천 또는 비추천하실 수 있습니다.


댓글목록0

등록된 댓글이 없습니다.
게시판 전체검색
0%