1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CentOS6環境にRabbitMQ3.7をインストール &

Last updated at Posted at 2018-03-29

環境

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
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?