ActiveMQ + MQTT (1) installation and deployment

<1> ActiveMQ5.15 Download:

https://activemq.apache.org/

I then installed on this mac, select  apache-activemq-5.15.12-bin.tar.gz

The following diagram real specific download page:

Use the command line to extract .tar.gz files to / usr / local

tar -zxvf apache-activemq-5.15.12-bin.tar.gz -C /usr/local

<2> Start the ActiveMQ (Note: Before starting, you need to install JDK1.8)

cd /usr/local/apache-activemq-5.15.12

cd bin

sudo ./activemq start

<3> to see if started successfully, open the browser, tcp: //127.0.0.1: 8161, can be opened to access the page properly, the successful deployment of the local environment

Port management page 8161 modified in config / jetty.xml, as shown below:

 

 

 

 

 

 

 

 

Published 40 original articles · won praise 57 · Views 250,000 +

Guess you like

Origin blog.csdn.net/With__Sunshine/article/details/105314422