RabbitMQ installation graphic tutorial

1. RabbitMQ is written in erlang language, so erlang must be installed before installing RabbitMQ

`RabbitMQ and erlang version correspondence: https://www.rabbitmq.com/which-erlang.html
Insert picture description here

erlang download address: https://www.erlang.org/downloads

Insert picture description here
After downloading, install it all the way, and then configure environment variables (take 23.1 version as an example).
Insert picture description here
Configure environment variables: ERLANG_HOME=G:\Program Files\erl-23.1

Added in Path: %ERLANG_HOME%\bin

Open the cmd window and enter the command: erl
Insert picture description here
At this point, the Erlang installation is complete

2: Install RabbitMQ

RabbitMQ detailed version information: https://www.rabbitmq.com/changelog.html

Download the latest version: https://www.rabbitmq.com/install-windows.html

Insert picture description here
Download all the way to install

Enter the sbindirectory of the RabbitMQ installation directory , then start the cmd window and enter the command:

rabbitmq-plugins enable rabbitmq_management

Insert picture description here
Plug After successful installation, double-clickrabbitmq-server.bat , you can run the default port15672

Enter: http://localhost:15672 , test whether it can be accessed
Insert picture description here

The default username and password are:guest

The spring cloud bus can finally play happily

Guess you like

Origin blog.csdn.net/single_0910/article/details/112912908