반응형
options {
long_hostnames(off);
sync(0);
stats(43200);
dns_cache(yes);
use_fqdn(no);
keep_hostname(yes);
use_dns(yes);
};
source gateway {
unix-stream("/dev/log");
internal();
udp(ip(0.0.0.0) port(514));
};
source tcpgateway {
unix-stream("/dev/log");
internal();
tcp(ip(0.0.0.0) port(514) max_connections(1000));
};
destination hosts {
file("/home2/syslogs/$HOST/$FACILITY"
owner(root) group(root) perm(0600) dir_perm(0700)
create_dirs(yes));
};
log {
source(gateway); destination(hosts);
};
log {
source(tcpgateway); destination(hosts);
};
syslog-ng.conf 파일
/home2/syslogs/ 디렉토리로 로그 기록
반응형
'IT' 카테고리의 다른 글
app web 설정 option (0) | 2012.05.29 |
---|---|
python 소수 구하는 알고리즘 sieve algorithm (0) | 2012.04.12 |
만번 마운트 후에 fsck 로 파일 시스템 check 해라 (0) | 2012.02.29 |
키보드 마우스 공유 프로그램 synergy (0) | 2012.01.17 |
대용양 파일 자르기 (0) | 2011.12.08 |