/var/log/message 에 1분마다 같은 로그 반복 쌓임
Jan 17 11:59:11 localhost rsyncd[15580]: connect from UNKNOWN (192.168.0.8) |
해당 로그는 사이트체커 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) |
기존에 UNKNOWN 이라고 찍히던 로그는 해결됨.
vi /etc/rsyncd.conf 다음 라인 추가
log file=/var/log/rsyncd.log |
/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 |
(어라랏? 그래도 쌓이네?!)
vi /etc/xinetd.d/rsync 다음 라인 추가
추가 라인 : log_on_success =
# default: off |
message 로그에 rsync 로그는 더이상 쌓이지 않음 확인
rabbitmq plugins enable (0) | 2014.02.13 |
---|---|
리눅스 명령어 grep, egrep, fgrep (0) | 2014.02.13 |
crontab 관련 (0) | 2014.01.27 |
CRONTAB error(user uid 변경 후 유의) (0) | 2014.01.27 |
[Linux] cp 명령시 -f (강제 덮어쓰기) 명령이 먹지 않는 경우 (0) | 2014.01.21 |