Page 3 of 3

Re: ERROR: rsyslog configuration check failed.

Posted: Thu Jul 20, 2017 1:35 am
by Kumar_pinkesh
After changing the port to 5545 , still logs are not moving.

Re: ERROR: rsyslog configuration check failed.

Posted: Thu Jul 20, 2017 11:34 am
by cdienger
Make sure that port 5545 was opened on the NLS with:

Code: Select all

netstat -na | grep 5545
You may need to open it:

Code: Select all

iptables -I INPUT 1 -p tcp --dport 5545 -j ACCEPT
Finally, can you see traffic coming in on that port if you run:

Code: Select all

yum -y install tcpdump
tcpdump port 5545
The above installs tcpdump and then listens on port 5545. Any network traffic coming in on port 5545 will be displayed on the screen.