[syslog-ng]?? Connection broken to AF_INET(127.0.0.1:514), reopening in 60 seconds
syslog-ng@lists.balabit.hu
syslog-ng@lists.balabit.hu
Mon, 26 Jul 2004 11:11:19 -0700
I don't know what is the trouble with my remote syslog-ng/stunnel
setup since I turned off packet filtering. Any guidance would
be greatly appreciated.
Here is error message in log:
Jul 26 11:06:47 seberino3 syslog-ng[3245]: Connection broken to AF_INET(127.0.0.1:514), reopening in 60 seconds
Here is my syslog-ng.conf:
options {long_hostnames(no);
keep_hostname(yes);
chain_hostnames(no);};
source client_sources {unix-stream("/dev/log"); pipe("/proc/kmsg");
internal();};
destination local_dest {file("/var/log/messages");};
destination remote_dest {tcp("127.0.0.1" port(514));};
log {source(client_sources); destination(local_dest);};
log {source(client_sources); destination(remote_dest);};
Chris