<html><body><div style="color:#000; background-color:#fff; font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:12pt"><div style="" class="">Hello Guys,</div><div style="" class=""><br style="" class=""></div><div class="" style="color: rgb(0, 0, 0); font-size: 16px; font-family: HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; background-color: transparent; font-style: normal">I am&nbsp; new in Syslog-ng application and also Linux and I need your help regarding the functionality of syslog-ng on Linux. I am building a syslog-ng server capable of receiving syslog messages from syslog-ng clients. In doing so, I would like to those syslog messages to be received and stored inside the Syslog MySQL database of the server inside the syslog_incoming table so that I can be able view those messages.&nbsp; I am using the Centos 6.5 of Redhat distributions and the Syslog-ng application running on
 that PC&nbsp; acts as a Syslog-ng server. This is my first attempt to allow the syslog messages storage on the database:</div><div class="" style="color: rgb(0, 0, 0); font-size: 16px; font-family: HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; background-color: transparent; font-style: normal">&nbsp;@version:3.2<br style="" class=""><br style="" class=""># syslog-ng configuration file.<br style="" class="">#<br style="" class=""># This should behave pretty much like the original syslog on RedHat. But<br style="" class=""># it could be configured a lot smarter.<br style="" class="">#<br style="" class=""># See syslog-ng(8) and syslog-ng.conf(5) for more information.<br style="" class="">#<br style="" class=""><br style="" class="">options {<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; flush_lines (0);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; time_reopen (10);<br style=""
 class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; log_fifo_size (1000);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; long_hostnames (off);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; use_dns (no);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; use_fqdn (no);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; create_dirs (no);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; keep_hostname (yes);<br style="" class="">};<br style="" class=""><br style="" class=""><br style="" class="">#source s_sys {<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp; #file ("/proc/kmsg" program_override("kernel: "));<br style="" class="">&nbsp;&nbsp;&nbsp; # unix-stream ("/dev/log");<br style="" class="">&nbsp;&nbsp; #&nbsp; internal();<br style="" class="">&nbsp; # &nbsp; udp(ip(0.0.0.0) port(514));<br style="" class="">#};<br style="" class=""><br style="" class="">#A change was made
 here!<br style="" class="">source network { syslog(ip(0.0.0.0) port(514) transport(udp));};<br style="" class=""><br style="" class="">destination db_mysql{sql(type(mysql) host("localhost") username("cacti") password("P@ssw0rd") database("syslog")<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; table("syslog_incoming")<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; columns("host", "facility", "priority", "date", "time", "message")<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; values("$HOST","$FACILITY","$PRIORITY","$YEAR-$MONTH-$DAY","$HOUR:$MIN:$SEC","$MSG")<br style=""
 class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; indexes("host", "facility", "priority", "date", "time", "message")<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; );};<br style="" class=""><br style="" class="">destination d_cons { file("/dev/console"); };<br style="" class="">destination d_mesg { file("/var/log/messages"); };<br style="" class="">destination d_auth { file("/var/log/secure"); };<br style="" class="">destination d_mail { file("/var/log/maillog" flush_lines(10)); };<br style="" class="">destination d_spol { file("/var/log/spooler"); };<br style="" class="">destination d_boot { file("/var/log/boot.log"); };<br style="" class="">destination d_cron { file("/var/log/cron"); };<br style="" class="">destination d_kern { file("/var/log/kern"); };<br style=""
 class="">destination d_mlal { usertty("*"); };<br style="" class=""><br style="" class="">filter f_kernel&nbsp;&nbsp;&nbsp;&nbsp; { facility(kern); };<br style="" class="">filter f_default&nbsp;&nbsp;&nbsp; { level(info..emerg) and<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; not (facility(mail)<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; or facility(authpriv)<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; or facility(cron)); };<br style="" class="">filter f_auth&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(authpriv); };<br style="" class="">filter f_mail&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(mail); };<br
 style="" class="">filter f_emergency&nbsp; { level(emerg); };<br style="" class="">filter f_news&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(uucp) or<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (facility(news)<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and level(crit..emerg)); };<br style="" class="">filter f_boot&nbsp;&nbsp; { facility(local7); };<br style="" class="">filter f_cron&nbsp;&nbsp; { facility(cron); };<br style="" class=""><br style="" class="">#A change was made here!<br style="" class=""><br style="" class="">log { source(s_sys);source(network); destination(d_mysql);};<br style="" class="">#log { source(network); destination(d_mysql);};<br style="" class=""><br style="" class=""><br style="" class="">#log {
 source(s_sys); filter(f_kernel); destination(d_cons); };<br style="" class="">#log { source(s_sys); filter(f_kernel); destination(d_kern); };<br style="" class="">#log { source(s_sys); filter(f_default); destination(d_mesg); };<br style="" class="">#log { source(s_sys); filter(f_auth); destination(d_auth); };<br style="" class="">#log { source(s_sys); filter(f_mail); destination(d_mail); };<br style="" class="">#log { source(s_sys); filter(f_emergency); destination(d_mlal); };<br style="" class="">#log { source(s_sys); filter(f_news); destination(d_spol); };<br style="" class="">#log { source(s_sys); filter(f_boot); destination(d_boot); };<br style="" class="">#log { source(s_sys); filter(f_cron); destination(d_cron); };<br style="" class=""><br style="" class=""># vim:ft=syslog-ng:ai:si:ts=4:sw=4:et:<br style="" class=""></div><div class="" style="color: rgb(0, 0, 0); font-size: 16px; font-family: HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida
 Grande,sans-serif; background-color: transparent; font-style: normal">destination d_cons { file("/dev/console"); };<br style="" class="">destination d_mesg { file("/var/log/messages"); };<br style="" class="">destination d_auth { file("/var/log/secure"); };<br style="" class="">destination d_mail { file("/var/log/maillog" flush_lines(10)); };<br style="" class="">destination d_spol { file("/var/log/spooler"); };<br style="" class="">destination d_boot { file("/var/log/boot.log"); };<br style="" class="">destination d_cron { file("/var/log/cron"); };<br style="" class="">destination d_kern { file("/var/log/kern"); };<br style="" class="">destination d_mlal { usertty("*"); };<br style="" class=""><br style="" class="">filter f_kernel&nbsp;&nbsp;&nbsp;&nbsp; { facility(kern); };<br style="" class="">filter f_default&nbsp;&nbsp;&nbsp; { level(info..emerg) and<br style=""
 class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; not (facility(mail)<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; or facility(authpriv)<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; or facility(cron)); };<br style="" class="">filter f_auth&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(authpriv); };<br style="" class="">filter f_mail&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(mail); };<br style="" class="">filter f_emergency&nbsp; { level(emerg); };<br style="" class="">filter f_news&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(uucp) or<br style=""
 class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (facility(news)<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and level(crit..emerg)); };<br style="" class="">filter f_boot&nbsp;&nbsp; { facility(local7); };<br style="" class="">filter f_cron&nbsp;&nbsp; { facility(cron); };<br style="" class=""><br style="" class="">#A change was made here!<br style="" class=""><br style="" class="">log { source(network); destination(d_mysql);};<br style="" class=""><br style="" class=""><br style="" class=""><br style="" class="">#log { source(s_sys); filter(f_kernel); destination(d_cons); };<br style="" class="">#log { source(s_sys); filter(f_kernel); destination(d_kern); };<br style="" class="">#log { source(s_sys); filter(f_default); destination(d_mesg);
 };<br style="" class="">#log { source(s_sys); filter(f_auth); destination(d_auth); };<br style="" class="">#log { source(s_sys); filter(f_mail); destination(d_mail); };<br style="" class="">#log { source(s_sys); filter(f_emergency); destination(d_mlal); };<br style="" class="">#log { source(s_sys); filter(f_news); destination(d_spol); };<br style="" class="">#log { source(s_sys); filter(f_boot); destination(d_boot); };<br style="" class="">#log { source(s_sys); filter(f_cron); destination(d_cron); };<br style="" class=""><br style="" class=""># vim:ft=syslog-ng:ai:si:ts=4:sw=4:et:<br style="" class=""><br style="" class=""></div><div class="" style="color: rgb(0, 0, 0); font-size: 16px; font-family: HelveticaNeue,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; background-color: transparent; font-style: normal"> And this is the message I got when I tried to restart the application :&nbsp; <br style="" class=""></div><div style="" class=""
 id="yiv3604323247"><div style="" class=""><div class="" style="color:#000;background-color:#fff;font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:12pt"><div style="" class="" id="yiv3604323247yui_3_13_0_1_1399456060016_3142"></div></div></div></div><span style="" class="">Stopping syslog-ng:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [FAILED]<br style="" class="">Starting syslog-ng: Error in configuration, unresolved destination reference; destination='d_mysql'<br style=""
 class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [FAILED]<br style="" class="">Then I tried to use a named pipe to accept and send thoses messages to the syslog_incoming table of the Syslog MySQL database through a template:<br style="" class=""><br style="" class="">@version:3.2<br style="" class=""><br style="" class=""># syslog-ng configuration file.<br style="" class="">#<br style="" class=""># This should behave pretty much like the original syslog on RedHat. But<br style="" class=""># it could be configured a lot smarter.<br style="" class="">#<br style="" class=""># See syslog-ng(8) and syslog-ng.conf(5) for more information.<br style=""
 class="">#<br style="" class=""><br style="" class="">options {<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; flush_lines (0);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; time_reopen (10);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; log_fifo_size (1000);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; long_hostnames (off);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; use_dns (no);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; use_fqdn (no);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; create_dirs (no);<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; keep_hostname (yes);<br style="" class="">};<br style="" class=""><br style="" class=""><br style="" class="">#source s_sys {<br style="" class="">#&nbsp;&nbsp;&nbsp;&nbsp; file ("/proc/kmsg" program_override("kernel: "));<br style=""
 class="">#&nbsp;&nbsp;&nbsp;&nbsp; unix-stream ("/dev/log");<br style="" class="">#&nbsp;&nbsp;&nbsp;&nbsp; internal();<br style="" class="">#&nbsp;&nbsp;&nbsp;&nbsp; udp(ip(0.0.0.0) port(514));<br style="" class="">#};<br style="" class="">destination d_mysql{ pipe("/var/log/mysql.pipe"&nbsp; <br style="" class="">template("INSERT INTO syslog_incoming(host, facility, priority, date, time, message) <br style="" class="">VALUES('$HOST', '$FACILITY', '$PRIORITY', '$ YEAR-$MONTH-$DAY', '$HOUR:$MIN:$SEC', '$MSG');\n") <br style="" class="">template-escape(yes));<br style="" class="">};<br style="" class="">destination d_cons { file("/dev/console"); };<br style="" class="">destination d_mesg { file("/var/log/messages"); };<br style="" class="">destination d_auth { file("/var/log/secure"); };<br style="" class="">destination d_mail { file("/var/log/maillog" flush_lines(10)); };<br style="" class="">destination d_spol { file("/var/log/spooler"); };<br style=""
 class="">destination d_boot { file("/var/log/boot.log"); };<br style="" class="">destination d_cron { file("/var/log/cron"); };<br style="" class="">destination d_kern { file("/var/log/kern"); };<br style="" class="">destination d_mlal { usertty("*"); };<br style="" class=""><br style="" class="">filter f_kernel&nbsp;&nbsp;&nbsp;&nbsp; { facility(kern); };<br style="" class="">filter f_default&nbsp;&nbsp;&nbsp; { level(info..emerg) and<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; not (facility(mail)<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; or facility(authpriv)<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; or
 facility(cron)); };<br style="" class="">filter f_auth&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(authpriv); };<br style="" class="">filter f_mail&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(mail); };<br style="" class="">filter f_emergency&nbsp; { level(emerg); };<br style="" class="">filter f_news&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { facility(uucp) or<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (facility(news)<br style="" class="">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and level(crit..emerg)); };<br style="" class="">filter f_boot&nbsp;&nbsp; { facility(local7); };<br style="" class="">filter f_cron&nbsp;&nbsp; { facility(cron); };<br style="" class=""><br style="" class="">#A change was made here!<br style="" class=""><br style=""
 class="">log { source(network); destination(d_mysql);};<br style="" class="">#log { source(network); destination(d_mysql);};<br style="" class=""><br style="" class=""><br style="" class="">#log { source(s_sys); filter(f_kernel); destination(d_cons); };<br style="" class="">#log { source(s_sys); filter(f_kernel); destination(d_kern); };<br style="" class="">#log { source(s_sys); filter(f_default); destination(d_mesg); };<br style="" class="">#log { source(s_sys); filter(f_auth); destination(d_auth); };<br style="" class="">#log { source(s_sys); filter(f_mail); destination(d_mail); };<br style="" class="">#log { source(s_sys); filter(f_emergency); destination(d_mlal); };<br style="" class="">#log { source(s_sys); filter(f_news); destination(d_spol); };<br style="" class="">#log { source(s_sys); filter(f_boot); destination(d_boot); };<br style="" class="">#log { source(s_sys); filter(f_cron); destination(d_cron); };<br style="" class=""><br style=""
 class=""># vim:ft=syslog-ng:ai:si:ts=4:sw=4:et:<br style="" class="">And I got this message assuming that the syslog-ng server is working<br>Stopping syslog-ng:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [&nbsp; OK&nbsp; ]<br style="" class="">Starting syslog-ng:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [&nbsp; OK&nbsp; ]<br style="" class=""><br>But when I checked to the table of the database it was empty.<br><br>So, I would like to know, do you miss something on the first attempt to allow the syslog-server to work perfectly or should I just not to uncomment the source system
 (s_sys) to accept the syslog messages from the Syslog-clients? On the 2nd attempt, what needs to be done to acctually see those messages? <br><br>Please I need some advice on those two attempts.<br><br>Kindly regards,<br>Chris Hangi<br style="" class=""></span><div style="" class=""></div></div></body></html>