Basic knowledge:
RabbitMQ is an open source MQ, written using Erlang.
The MQ full name is message queue (Message Queuing), which is an application-to-application communication method. With Message Queuing, applications can communicate by reading and writing messages to and from the queue, rather than by calling each other directly.
Erlang is a common, concurrency-oriented programming language developed by Cs-lab, a Swedish telecommunications equipment manufacturer, designed to create a programming language and operating environment that can handle large-scale concurrent activities.
Installation of RabbitMQ
1. RABBITMQ is based on Erlang, so you must first install Erlang.
Download erlang:http://www.erlang.org/download.html
2. Download rabbitmq:http://www.rabbitmq.com/download.html
3. The installation of ERLANG and RABBITMQ is simple, and is usually done directly at the next step.
4. After the installation is complete, you can find the RabbitMQ server directory in the Start menu.
Select RabbitMQ Service-start Start RabbitMQ
If an error occurs, you can stop (RabbitMQ service-stop) before booting.
You can also start RABBITMQ by installing the Rabbitmq-server.bat of the directory, which can be found in the installation directory. (Assuming the installation directory is D:\rabbitmq_server-3.4.1)
CD D:\rabbitmq_server-3.4.1\sbin
Rabbitmq-server.bat
5. Installation Management Services
CD D:\rabbitmq_server-3.4.1\sbin
Rabbitmq-plugins Enable Rabbitmq_management
6. After installing the Management service, you can access the http://localhost:15672 for testing, the default login account is: Guest, the password is: Guest.
If the interface can be displayed, then the installation is successful.
Install RabbitMQ (WINDOWS)