One, RAIBBITMQ server configuration
1. Ready to work. If you have previously installed the RABBITMQ software, if you want to reinstall, you must first uninstall the previous RABBITMQ related software.
2. Install the Erlang language pack. First, you download Erlang Windows Binary file and run it to the http://www.erlang.org/download.html page. The process is about 5 minutes.
To install the specific process:
1. Double-click Otp_win32_r16801.exe (different versions may be named differently), select Next
2. Installed on the C drive by default, it is recommended that the program be installed on a non-system disk such as D (if installation in C drive may have some permissions problems), after modifying the installation path, select Next:
3. Go to the installer and select Install to complete the installation:
3. Install the RABBITMQ Server software. To this page to download:
Http://www.rabbitmq.com/releases/rabbitmq-server/v3.1.3/rabbitmq-server-3.1.3.exe. Then run the installation.
To install the specific process:
1. Double-click Rabbitmq-server-3.1.1.exe. Select Next:
2. Install on C drive by default and install directly:
3. Approximately two minutes to complete the installation
4. If you want Rabbitmq-sever to run under the command line under Windows, you also need to configure the environment variables:
The configuration is as follows: Selecting advanced system settings will bring up the system settings, and then select the environment variables in the system settings (note the red circle)
Locate the path variable in the environment variable:
Double-click Path, add:%rabbitmq_server%\sbin (note the preceding semicolon), and then OK
Now open the Windows command line ("cmd"), enter Rabbitmq-service if the prompt appears as follows, the environment variable is configured successfully.
5. The rabbit also comes with a monitoring function.
CMD into the sbin directory, type rabbitmq-plugins enable rabbitmq_management enabling monitoring management, and then restart the RABBITMQ server. Open URL http://localhost:55672, user name and password are guest.
6. Now open the browser, enter: http://localhost:15672/, if the following page appears, the server configuration is successful.
Default user name is guest, password: Guest
If the above page does not appear, try to enter (run as Administrator) on the Windows command line:
Rabbitmq-plugins Enable Rabbitmq_management
Then run the following command to install:
Rabbitmq-service stop
Rabbitmq-service Install
Rabbitmq-service start
Install Rabbitmq-service under Windows