Starting from Red Hat Enterprise Linux 7 that have migrated to rsyslog from traditional syslog hence there are multiple syntax changes in terms how syslog works.
Below steps have been validate on Red Hat Enterprise Linux 7
Suppose my syslog file is getting filled with multiple unwanted messages which I want to keep but not in syslog, may be some separate file so that the syslog has only important messages which are used day to day and to avoid frequent log rotation of the syslog.
For the sake of this example in Red Hat 7. below messages seems to fill up syslog
I want to redirect all of these log messages to a separate file.
Create separate configuration file inside /etc/rsyslog.d
NOTE: By default all the configuration file inside /etc/rsyslog.d is considered by rsyslog.conf
You can validate this by looking for this entry inside /etc/rsyslog.conf
Next restart the rsyslog service
Validate the new changes by making a new ssh connection to your node, all these log messages will be redirected to /var/log/login_auth instead of /var/log/messages
How to configure a Clustered Samba share using ctdb in Red Hat Cluster
How to delete an iscsi-target from openfiler and Linux
How to perform a local ssh port forwarding in Linux
How to use yum locally without internet connection using cache?
What is umask and how to change the default value permanently?
Understanding Partition Scheme MBR vs GPT
How does a successful or failed login process works in Linux
How to find all the process accessing a file in Linux
How to exclude multiple directories from du command in Linux
How to configure autofs in Linux and what are its advantages?
How to resize software raid partition in Linux
How to configure Software RAID 1 mirroring in Linux
How to prevent a command from getting stored in history in Linux
Below steps have been validate on Red Hat Enterprise Linux 7
Suppose my syslog file is getting filled with multiple unwanted messages which I want to keep but not in syslog, may be some separate file so that the syslog has only important messages which are used day to day and to avoid frequent log rotation of the syslog.
For the sake of this example in Red Hat 7. below messages seems to fill up syslog
Jun 27 08:00:01 Ban17-inst01-a systemd: Starting Session 2213 of user root.
Jun 27 08:01:01 Ban17-inst01-a systemd: Started Session 2215 of user root.
Jun 27 08:01:01 Ban17-inst01-a systemd: Starting Session 2215 of user root.
Jun 27 08:05:01 Ban17-inst01-a systemd: Started Session 2216 of user root.
Jun 27 08:05:01 Ban17-inst01-a systemd: Starting Session 2216 of user root.
Jun 27 08:05:01 Ban17-inst01-a systemd: Started Session 2217 of user root.
Jun 27 08:05:01 Ban17-inst01-a systemd: Starting Session 2217 of user root.
Jun 27 08:10:01 Ban17-inst01-a systemd: Started Session 2218 of user root.
Jun 27 08:10:01 Ban17-inst01-a systemd: Starting Session 2218 of user root.
Jun 27 08:10:01 Ban17-inst01-a systemd: Started Session 2219 of user root.
I want to redirect all of these log messages to a separate file.
Create separate configuration file inside /etc/rsyslog.d
NOTE: By default all the configuration file inside /etc/rsyslog.d is considered by rsyslog.conf
You can validate this by looking for this entry inside /etc/rsyslog.conf
# Include all config files in /etc/rsyslog.d/
$IncludeConfig /etc/rsyslog.d/*
# touch /etc/rsyslog.d/rsyslog_loginauth.conf
# vim /etc/rsyslog.d/rsyslog_loginauth.conf
if $programname == "systemd" and ($msg contains "Starting Session" or $msg contains "Started Session" or $msg contains "Created slice" or $msg contains "Starting user-") then /var/log/login_auth
& stop
Next restart the rsyslog service
# systemctl restart rsyslog
Validate the new changes by making a new ssh connection to your node, all these log messages will be redirected to /var/log/login_auth instead of /var/log/messages
Follow the below links for more tutorials
How to find the path of any command in LinuxHow to configure a Clustered Samba share using ctdb in Red Hat Cluster
How to delete an iscsi-target from openfiler and Linux
How to perform a local ssh port forwarding in Linux
How to use yum locally without internet connection using cache?
What is umask and how to change the default value permanently?
Understanding Partition Scheme MBR vs GPT
How does a successful or failed login process works in Linux
How to find all the process accessing a file in Linux
How to exclude multiple directories from du command in Linux
How to configure autofs in Linux and what are its advantages?
How to resize software raid partition in Linux
How to configure Software RAID 1 mirroring in Linux
How to prevent a command from getting stored in history in Linux