RabbtiMQ is installed under Windows system

download file

Because rabbitMQ is developed in Erlang language, first download Erlang
https://www.erlang.org/downloads
and then download rabbitMQ
https://www.rabbitmq.com/install-windows.html
Insert image description here

Erlang environment configuration

Just click next during installation. After installation, configure the environment variables and add the address of your Erlang installation. For example (D:\erl-24.1.7\bin)
enter the command:erl
Insert image description here
If the version number is displayed, it means it has been successful.

RabbitMQ configuration

After the download is complete, you can install it directly. After installation, use CMD to open the path of Rabbit MQ
and enter the commandrabbitmq-plugins enable rabbitmq_management
Insert image description here
Displays the status after entering commands to view the statusrabbitmqctl status
Insert image description here
Finally, double-click in the sbin folder to open the rabbitmq-server.bat file.
Enter the Rabbit MQ address in the browser: http://localhost:15672.
The initial account and password are bothguest

Finish

Insert image description here

Guess you like

Origin blog.csdn.net/qq_43802454/article/details/121847178