Skip to content

Instantly share code, notes, and snippets.

@baskaran-md
Last active August 17, 2023 11:42
Show Gist options
  • Save baskaran-md/7eed2bf213b0e857960e to your computer and use it in GitHub Desktop.
Save baskaran-md/7eed2bf213b0e857960e to your computer and use it in GitHub Desktop.
Install/Update Rsyslog - CentOs
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
@nopzdk
Copy link

nopzdk commented Jan 27, 2018

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment