On 6 July 2014 13:34, Stefan Fuhrmann <[email protected]> wrote: > Hello all, > > I want to run a central syslog server on ubuntu 14.04. Rsyslog is installed > and I uncommend the lines > > # provides UDP syslog reception > $ModLoad imudp > $UDPServerRun 514 > > Restart rsyslog > netstat -an |grep 514 > > dont show a listen syslog. > > I searched around but can not find a solution. > > Can someone help?
Did you execute: $ sudo service rsyslog restart After adding the conffile? $ netstat -an | grep 514 udp 0 0 0.0.0.0:514 0.0.0.0:* udp6 0 0 :::514 :::* All correct here after uncomenting above mentioned configuration file and fully restarting the daemon. -- Regards, Dimitri. -- ubuntu-server mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-server More info: https://wiki.ubuntu.com/ServerTeam
