下载
官网下载地址:http://activemq.apache.org/components/classic/download/
获得对应版本下载地址,并下载。
wget https://mirrors.tuna.tsinghua.edu.cn/apache//activemq/5.15.9/apache-activemq-5.15.9-bin.tar.gz
安装
拷贝gz文件到/usr/local/src目录下,解压:
tar -zxvf apache-activemq-5.15.9-bin.tar.gz
启动
进入bin目录:
cd ./apache-activemq-5.15.9/bin/
启动:
./activemq start
查看启动情况:
$ netstat -anp|grep 61616
tcp 0 0 0.0.0.0:61616 0.0.0.0:* LISTEN 6103/java
访问
防火墙中开启8161(web管理页面端口)、61616(activemq服务监控端口)。
访问:http://IP:8161/admin
默认用户名密码:admin/admin
安全配置
activemq.xml新增账号密码(broker标签下添加)
<plugins>
<simpleAuthenticationPlugin>
<users>
<authenticationUser username="admin" password="123456" groups="users,admins"/>
</users>
</simpleAuthenticationPlugin>
</plugins>
修改web请求密码,该密码位于jetty-realm.properties文件下,第一个参数为用户名,第二个为密码,第三个为角色。