Tested Working on Mail Gateway 7.3-3
To get all cluster nodes to log their messages to the Master server > Tracking Center:
On Master:
Edit /etc/rsyslog.conf
Then: systemctl restart rsyslog
On Cluster memeber nodes:
Edit /etc/rsyslog.conf
Then systemctl restart rsyslog
That's it! You now have all cluster member nodes logging to the Master.
PS - Remember to firewall/restrict port 514 on the Master server to only accept from the Slave member nodes.
To get all cluster nodes to log their messages to the Master server > Tracking Center:
On Master:
Edit /etc/rsyslog.conf
Code:
# provides TCP syslog reception
module(load="imtcp")
input(type="imtcp" port="514")
Then: systemctl restart rsyslog
On Cluster memeber nodes:
Edit /etc/rsyslog.conf
Code:
###############
#### RULES ####
###############
#
# First some standard log files. Log by facility.
#
*.* @@<IPofMaster>
Then systemctl restart rsyslog
That's it! You now have all cluster member nodes logging to the Master.
PS - Remember to firewall/restrict port 514 on the Master server to only accept from the Slave member nodes.