Difference between revisions of "Installing rsyslog from yum repository"
From Notes_Wiki
m (Saurabh moved page Installing rsyslog from source to Installing rsyslog from yum repository) |
m |
||
Line 13: | Line 13: | ||
##:: | ##:: | ||
##:: authpriv.* ?TmplAuth | ##:: authpriv.* ?TmplAuth | ||
##:: *.info,mail.none,authpriv.none,cron.none ? | ##:: *.info,mail.none,authpriv.none,cron.none ?TmplAuth | ||
##::</pre> | ##::</pre> | ||
##Uncomment following lines: | ##Uncomment following lines: |
Revision as of 06:46, 11 February 2015
<yambe:breadcrumb self="Installing from source">Rsyslog configuration</yambe:breadcrumb>
Installing rsyslog server in CentOS
Configure rsyslog server
To install rsyslog use following steps:
- yum -y install rsyslog
- Disable SELinux
- Enable incoming UDP port 514 packets
- Edit '/etc/rsyslog.conf' file as follows:
- Append following lines
- $template TmplAuth, "/var/log/%HOSTNAME%/%PROGRAMNAME%.log"
- authpriv.* ?TmplAuth
- *.info,mail.none,authpriv.none,cron.none ?TmplAuth
- Uncomment following lines:
- $ModLoad imudp
- $UDPServerRun 514
- Append following lines
- service rsyslog start
- chkconfig rsyslog on
Configure rsyslog client
After configuring rsyslog server, configure remote machines to send logs to rsyslog server using:
- Install rsyslog same as in case of server
- Edit '/etc/rsyslog.conf' file and append following configuration:
- *.* @<server>:<port>
- service rsyslog start
- chkconfig rsyslog on
Steps learned from http://tecadmin.net/setup-centralized-logging-server-using-rsyslogd/ and contributed by Kiran Kollipara
<yambe:breadcrumb self="Installing from source">Rsyslog configuration</yambe:breadcrumb>