Setup Central Logging Server on HA mode with Rsyslog in Linux
Rsyslog is a powerful, secure and high-performance log processing system which accepts data from different types of source (systems/applications) and outputs it into multiple formats Centralized Logging System It has evolved from a regular syslog daemon to a fully-featured, enterprise level logging system. It is designed in a client/server model, therefore it can be configured as a client and/or as a central logging server for other servers, network devices, and remote applications. By Default system accept the logs only generated from local host. In this example we will configure a log server and will accept logs from client side. For t he purpose of Example, we will use the following hosts: Active Server : 10.194.168.128 ; Hostname : syslog-server-1 Passive Server : 10.194.168.129 ; Hostname : syslog-server-2 Client1 : 10.194.168.163 ; Hostname : syslog-server-3 Client2 : 10.194.168.164 ; Hostname : syslog-server-4 ST...