Forum Discussion

Raj_57800's avatar
Raj_57800
Icon for Nimbostratus rankNimbostratus
Apr 03, 2009

Remote Syslog server configuration

Hi,

 

 

I am trying to push the syslog to the remote kiwi syslog server. Followed the following steps but I could not see any log on the Kiwi application..

 

 

Add the following to the end of the syslog-ng.conf file:

 

Note: Replace x.x.x.x with the IP address of the remote log server.

 

Direct all log information to remote syslog server

 

destination remote_server {

 

udp("x.x.x.x" port (514));

 

};

 

filter f_alllogs {

 

level (debug...emerg);

 

};

 

log {

 

source(local);

 

filter(f_alllogs);

 

destination(remote_server);

 

};

 

 

Restarted the service syslog-ng.

 

Its in GTM 9.3.1.

 

Can any one tel me if I miss any config

 

 

Raj