環境
OS:CentOS6.9 64bit
参考URL
https://www.rabbitmq.com/install-rpm.html
https://www.erlang-solutions.com/resources/download.html
事前準備
socat インストール
yum install epel-release
yum install --enablerepo=epel socat
erlang インストール
wget https://packages.erlang-solutions.com/erlang-solutions-1.0-1.noarch.rpm
rpm -Uvh erlang-solutions-1.0-1.noarch.rpm
yum install erlang
RabbitMQ インストール
(2018/09/19時点最新は、3.7.7-1)
wget https://dl.bintray.com/rabbitmq/all/rabbitmq-server/3.7.7/rabbitmq-server-3.7.7-1.el6.noarch.rpm
rpm -ivh rabbitmq-server-3.7.4-1.el6.noarch.rpm
起動設定
OS起動時に動作するように
chkconfig rabbitmq-server on
手動起動・停止
/etc/init.d/rabbitmq-server start
or
/etc/init.d/rabbitmq-server stop