×
Community Blog Deploy RabbitMQ on an ECS Instance

Deploy RabbitMQ on an ECS Instance

This article describes how to deploy RabbitMQ on an Elastic Compute Service (ECS) instance.

By Alibaba Cloud ECS Team

RabbitMQ is an open-source message broker that implements the Advanced Message Queuing Protocol (AMQP) to store and forward messages in a distributed system. RabbitMQ is easy to use, scalable, and highly available. This article describes how to deploy RabbitMQ on an Elastic Compute Service (ECS) instance.

Prerequisites

A security group of the virtual private cloud (VPC) type is created. An inbound rule that allows traffic on ports 80, 5672, and 15672 is added to the security group. If you want to connect to a Linux instance in the security group by using Secure Shell (SSH), you must configure the rule to allow traffic on port 22. For more information, see Add security group rules.

Background Information

The RabbitMQ server is written in the Erlang programming language. RabbitMQ supports multiple types of clients such as Python, Ruby, .NET, Java, Java Message Service (JMS), C, Professional Hypertext Preprocessor (PHP), ActionScript, Extensible Messaging and Presence Protocol (XMPP), Simple Text Oriented Messaging Protocol (STOMP), and Asynchronous JavaScript and XML (AJAX).

Manually deploy RabbitMQ. This method is suitable for users who have a basic knowledge of Linux commands and can perform personalized deployment. Use the following operating system and software versions to manually deploy RabbitMQ:

  • Operating system: CentOS 7.8 64-bit public image
  • RabbitMQ: RabbitMQ 3.7.8
  • Erlang: Erlang 21.1
  • JDK: JDK 1.8.0_282

Manually Deploy RabbitMQ

1.  Create and connect to a Linux instance.

a) Create a Linux instance.

For more information, see Create an instance by using the wizard. When you configure parameters to create the instance, take note of the following items:

  • Select Assign Public IPv4 Address in the Public IP Address section in the Networking step.
  • Select the security group configured in the Prerequisites section.
  • Complete other settings.

b) Connect to the instance.

For more information, see Connect to a Linux instance by using password authentication.

2.  Install Erlang.

a) Run the following command to install the dependency for Erlang:

yum install -y make gcc gcc-c++ m4 openssl openssl-devel ncurses-devel unixODBC unixODBC-devel java java-devel

b) Run the following command to download the Erlang installation package:

wget http://erlang.org/download/otp_src_21.1.tar.gz

c) Run the following command to decompress the Erlang installation package:

tar -zxvf otp_src_21.1.tar.gz

d) Run the following commands to go to the path to which the Erlang installation package is decompressed and create a directory for Erlang:

cd otp_src_21.1
mkdir -p /usr/local/erlang

e) Run the following commands in sequence to compile and install Erlang:

./configure --prefix=/usr/local/erlang
make && make install

f) After Erlang is installed, run the following command to configure the environment variable for Erlang:

echo 'export PATH=$PATH:/usr/local/erlang/bin' >> /etc/profile

g) Run the following command to apply the configured environment variable:

source /etc/profile

h) Run the following commands to go back to the /root directory. View the Erlang version to check whether Erlang is installed.

cd
erl -version

A command output similar to the following one indicates that Erlang is installed.

1

3.  Download and install RabbitMQ.

Different RabbitMQ versions are compatible with different Erlang versions. For more information, see RabbitMQ Erlang Version Requirements. In this example, Erlang 21.1 is used, and you must download RabbitMQ 3.7.8.

a) Run the following command to download the RabbitMQ installation package:

wget https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.7.8/rabbitmq-server-generic-unix-3.7.8.tar.xz

b) Run the following command to decompress the RabbitMQ installation package:

tar -xvf rabbitmq-server-generic-unix-3.7.8.tar.xz

c) After the package is decompressed, run the following command to configure the environment variable for RabbitMQ:

echo 'export PATH=$PATH:/root/rabbitmq_server-3.7.8/sbin' >> /etc/profile

d) Run the following command to apply the configured environment variable:

source /etc/profile

4.  Configure RabbitMQ.

a) Run the following command to start RabbitMQ and run RabbitMQ in the background:

rabbitmq-server -detached

Note: This command starts RabbitMQ only in the current runtime environment. If the instance restarts, RabbitMQ does not automatically start. We recommend that you use Cloud Assistant to configure RabbitMQ to automatically start on instance startup. For more information, see Use Cloud Assistant to Configure RabbitMQ to automatically start on instance startup.

b) Run the following command to enable the RabbitMQ monitoring plug-in:

rabbitmq-plugins enable rabbitmq_management

To disable the RabbitMQ monitoring plug-in, you can run the rabbitmq-plugins disable rabbitmq_management command.

c) To ensure data security, we recommend that you run the following command to delete the default user of RabbitMQ.

The default username and password of RabbitMQ are both guest.

rabbitmqctl delete_user guest

d) Create a RabbitMQ administrator user.

i) Run the following command to create a user:

rabbitmqctl add_user <Username> <Password>

Specify the <Username> and <Password> parameters.

ii) Run the following command to set the new user as an administrator:

rabbitmqctl set_user_tags <Username> administrator

iii) Run the following command to grant all permissions to the new user:

rabbitmqctl set_permissions -p / <Username> ".*" ".*" ".*"

5.  Access <Public IP address of the Linux instance>:15672 in a browser on your computer.

The following page indicates that RabbitMQ is installed.

2

6.  Enter the username and password of the RabbitMQ administrator user that you created and click Login to access the RabbitMQ management interface.

The RabbitMQ management interface appears, as shown in the following figure.

3

Use Cloud Assistant to Configure RabbitMQ to Automatically Start On Instance Startup

1.  Configure the rabbitmq-server file for RabbitMQ.

a) Run the following command to edit the rabbitmq-server file:

vim /root/rabbitmq_server-3.7.8/sbin/rabbitmq-server

b) Press shift+: and enter set nu to view line numbers of the file.

c) Press shift+: and enter 189 to go to Line 189.

d) Press the I key to enter the edit mode.

Add the following content to Line 189:

export PATH=$PATH:/usr/local/erlang/bin
export HOME=/root/rabbitmq_server-3.7.8/

The following figure shows the lines after the content is added.

4

e) Press the Esc key, enter :wq, and then press the Enter key to save and close the file.

2.  Call the ECS API RunCommand operation to configure RabbitMQ to automatically start on instance startup.

For more information, see Quick start. To configure RabbitMQ to automatically start on instance startup, you must configure the parameters listed in the following table.

Parameter Description Valid or example value
RegionId The region ID of the instance. Example: cn-hangzhou.
Name The name of the Cloud Assistant command. Example: start-rabbitmq.
Type The language type of the command. Set the value to RunShellScript.
CommandContent The plaintext content of the command. Set the value to /root/rabbitmq_server-3.7.8/sbin/rabbitmq-server -detached.
Note: The command is used to start RabbitMQ.
RepeatMode Specifies how to run the command. Set the value to EveryReboot.
InstanceId.N The ID of the instance where RabbitMQ is deployed. Example: i-bp12f1b0i3r7adm3****.

The following code shows a sample success response in the JSON format. Subsequently, the command used to start RabbitMQ is triggered every time you restart the instance.

{
  "RequestId": "8B4BFE47-F1E3-48D1-B405-CA783B697046",
  "CommandId": "c-hz01gvo1ri9****",
  "InvokeId": "t-hz01gvo1rig****"
}
0 1 0
Share on

Alibaba Cloud Community

875 posts | 198 followers

You may also like

Comments

Alibaba Cloud Community

875 posts | 198 followers

Related Products