WHEREIS

/var/log/message 에 1분마다 같은 로그 반복 쌓임

 

Jan 17 11:59:11 localhost rsyncd[15580]: connect from UNKNOWN (192.168.0.8)
Jan 17 11:59:11 localhost xinetd[4593]: EXIT: rsync status=0 pid=15580 duration=5(sec)
Jan 17 12:00:06 localhost xinetd[4593]: START: rsync pid=15592 from=192.168.0.8
Jan 17 12:00:06 localhost rsyncd[15592]: name lookup failed for 192.168.0.8: Name or service not known

 

해당 로그는 사이트체커 DB에서 1분마다 한번씩 데이터를 가져오면서 rsync 로그가 쌓이는 것.

 

vi /etc/hosts 다음 라인 추가

 

192.168.0.8      sitechecker

 

192.168.0.8이라는 IP를 정의해줌.

 

추가 후 /var/log/message 로그 상태

 

Jan 27 09:47:56 localhost rsyncd[20906]: connect from sitechecker (192.168.0.8)
Jan 27 09:47:56 localhost rsyncd[20906]: rsync to SiteChecker/ from sitechecker (192.168.0.8)
Jan 27 09:47:56 localhost rsyncd[20906]: receiving file list
Jan 27 09:47:56 localhost rsyncd[20906]: sent 54 bytes  received 102 bytes  total size 0

 

기존에 UNKNOWN 이라고 찍히던 로그는 해결됨.

 

vi /etc/rsyncd.conf 다음 라인 추가

 

log file=/var/log/rsyncd.log  
transfer logging=yes   
syslog facility=local3   
log format=%t %a %m %f %b

 

 /var/log/rsyncd.log 라는 파일에 rsync 로그를 쌓이게 설정

 

추가 후 /var/log/message 로그 상태

 

Jan 27 16:01:56 localhost xinetd[24426]: START: rsync pid=24431 from=192.168.0.8
Jan 27 16:01:56 localhost xinetd[24426]: EXIT: rsync status=0 pid=24431 duration=0(sec)

 

(어라랏? 그래도 쌓이네?!)

 

vi /etc/xinetd.d/rsync 다음 라인 추가

추가 라인 : log_on_success  =

 

# default: off
# description: The rsync server is a good addition to an ftp server, as it \
#       allows crc checksumming etc.
service rsync
{
        disable = no
        socket_type     = stream
        wait            = no
        user            = root
        server          = /usr/bin/rsync
        server_args     = --daemon
        log_on_success  =  
}

 

 message 로그에 rsync 로그는 더이상 쌓이지 않음 확인

 

 

이 글을 공유합시다

facebook twitter kakaoTalk kakaostory naver band
loading