Installation and deployment of ActiveMQ

Download the installation package ( http://activemq.apache.org/download.html ).

The current time (201802) stable version I use: apache-activemq-5.15.3-bin.zip

ActiveMQ deployment is actually very simple. Like all Java, you must first install JDK and configure environment variables to run a java program. This is very simple.

Then decompress the downloaded apache-activemq-5.10-20140603.133406-78-bin.zip compressed package to a directory, and get the directory structure after decompression as shown below:

Enter the bin directory and find two folders win32 and win64, these two folders correspond to the startup scripts of the windows32-bit and windows64-bit operating systems respectively.


I am win10 64 bit, I enter the win64 directory, and I will see the following directory structure.


Among them, activemq.bat is the startup script, double-click to start. (Need to close RabbitMQ service on my computer)


Pay attention to the prompt of the black window, what space size it prompts. I close the black window and open the active configuration file.


Find the configuration place of the hard disk information and change it to smaller.


After keeping the configuration information, start active again


ActiveMQ is booted to port 8161 by default. After booting, enter in the browser address bar: http://localhost:8161/admin requires a user name and password. The default user name and password are admin and admin. The user name and password are in conf/users Configured in .properties. After entering the user name and password, you can see the ActiveMQ console interface as shown in the figure below.

Guess you like

Origin blog.csdn.net/kerwinJu/article/details/80435197