本来是要学习下SpringBoot中集成ActiveMQ,需要先安装一个ActiveMQ,所以先记录下在本地安装的步骤。
一、官网下载
http://activemq.apache.org/activemq-5015002-release
图片
我随便选了一个新一点的版本5.15.2,可以看到红框的是Windows哈,点击就会下载了。
下载完毕后,将zip包解压到本地,打开bin目录,点击activemq.bat,就可以启动 ActiveMQ。我的点击这个是闪退了,打开以下目录才启动的:
启动后显示如下:
二、浏览器访问:http://localhost:8161/admin/
输入默认的账号密码:admin/admin
此时说明启动已经成功了,若要关闭关闭终端即可。
三、一些配置
Activemq默认管理用户名和密码均是admin,如果我们要修改默认用户名和密码的话,可以通过修改jetty-realm.properties文件。
#Definesusersthatcanaccesstheweb (console, demo, etc.) #username: password [,rolename ...] admin: admin, adminuser: user, user
Activemq默认的管理后台端口是8161,可以修改jetty.xml文件来修改:
<beanid="jettyPort"class="org.apache.activemq.web.WebConsolePort"init-method="start"><!--thedefaultportnumberforthewebconsole--><propertyname="host"value="0.0.0.0"/><propertyname="port"value="8161"/></bean>
Activemq启用jmx监控:
默认JMX功能是没有打开的,需要在activemq.xml的broker配置上添加useJmx="true"
需要在managementContext里,修改为createConnector="true",(同时这里也可以修改jmx的端口和domain)
打开activemq.xml文件,修改以下内容:
<brokerxmlns="http://activemq.apache.org/schema/core"brokerName="localhost"dataDirectory="${activemq.data}"useJmx="true"><managementContext><managementContextcreateConnector="true"/></managementContext>
END