Last active
August 17, 2023 11:42
-
-
Save baskaran-md/7eed2bf213b0e857960e to your computer and use it in GitHub Desktop.
Install/Update Rsyslog - CentOs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum install -y wget | |
wget http://rpms.adiscon.com/v8-stable/rsyslog.repo | |
mv rsyslog.repo /etc/yum.repos.d/rsyslog.repo | |
yum info rsyslog --skip-broken | |
yum install -y rsyslog | |
rsyslogd -version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
no need for wget and --skip-broken
install repository key
sudo rpm --import http://rpms.adiscon.com/RPM-GPG-KEY-Adiscon
install repository
sudo curl http://rpms.adiscon.com/v8-stable/rsyslog.repo -o /etc/yum.repos.d/rsyslog.repo
install rsyslog v8
sudo yum install -y rsyslog
check version
rsyslogd -version