码迷,mamicode.com
首页 > 系统相关 > 详细

linux上安装activemq

时间:2018-05-22 16:38:15      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:14.   print   span   perm   body   cell   端口   user   管理   

linux安装包下载地址:http://activemq.apache.org/activemq-5140-release.html

cd opt目录下

tar -zxvf apache-activemq-5.14.0-bin.tar.gz

 

cd apache-activemq-5.14.0
cd bin
./activemq start
 
开启防火墙端口
先开启8161(web管理页面端口)、61616(activemq服务监控端口) 两个端口

firewall-cmd --zone=public --add-port=8161/tcp --permanent
firewall-cmd --zone=public --add-port=61616/tcp --permanent
firewall-cmd --reload

打开web管理页面
 技术分享图片
1、进入conf目录下activemq.xml新增账号密码(broker标签下添加)
<simpleAuthenticationPlugin>
    <users>
        <authenticationUser username="edc" password="edc123"
            groups="users,admins"/>
        
    </users>
</simpleAuthenticationPlugin>

linux上安装activemq

标签:14.   print   span   perm   body   cell   端口   user   管理   

原文地址:https://www.cnblogs.com/edison20161121/p/9068968.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!