[syslog-ng]HP-UX syslog_ng server configfile
Ola.Fjallman@adb.ds.sll.se
Ola.Fjallman@adb.ds.sll.se
Wed, 5 Feb 2003 14:46:07 +0100
Hello,
I have some problems.
I run version 1.5.8 on HP-UX 11.11
The problem is with the unix-stream in syslog_ng.conf file.
I have added the following configuration for test purposes :
__________________________________________________
options { sync(0); time_reopen(10); log_fifo_size(100); };
source src {
unix-stream("/dev/log");
udp();
tcp(ip("192.168.0.1") port(514));
tcp();
internal();
};
destination everything {
udp("127.0.0.1" port(999));
tcp("127.0.0.1" port(999));
pipe("/dev/xconsole");
file("/tmp/logfile" compress(on) sync(0) log_fifo_size(10));
};
log { source(src); destination(everything); };
__________________________________________________
When trying to start syslog_ng I get this error message :
"io.c: bind_unix_socket(): /dev/log not a socket
Error initializing configuration, exiting."
Does anyone have any idea what this means? As I have understood
/dev/log is correct unix-stream on HP-UX.
Regards,
Ola