Last active
August 8, 2017 10:56
-
-
Save nimboya/c350acd144dadf3945c1743b05744055 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Create/Modify /etc/yum.repos.d/epel.repo | |
# [epel] | |
name=Extra Packages for Enterprise Linux 6 - $basearch | |
#baseurl=http://download.fedoraproject.org/pub/epel/6/$basearch | |
mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-6&arch=$basearch | |
failovermethod=priority | |
enabled=0 | |
gpgcheck=1 | |
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 | |
[epel-debuginfo] | |
name=Extra Packages for Enterprise Linux 6 - $basearch - Debug | |
#baseurl=http://download.fedoraproject.org/pub/epel/6/$basearch/debug | |
mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-debug-6&arch=$basearch | |
failovermethod=priority | |
enabled=0 | |
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 | |
gpgcheck=1 | |
[epel-source] | |
name=Extra Packages for Enterprise Linux 6 - $basearch - Source | |
#baseurl=http://download.fedoraproject.org/pub/epel/6/SRPMS | |
mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-source-6&arch=$basearch | |
failovermethod=priority | |
enabled=0 | |
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 | |
gpgcheck=1 | |
# | |
# Under the section marked [epel], change enabled=0 to enabled=1. | |
sudo yum install erlang --enablerepo=epel | |
wget http://www.rabbitmq.com/releases/rabbitmq-server/v3.1.1/rabbitmq-server-3.1.1-1.noarch.rpm | |
sudo rpm -Uvh rabbitmq-server-3.1.1-1.noarch.rpm | |
# Enable managament plugin | |
sudo rabbitmq-plugins enable rabbitmq_management |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment