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

linux下activemq安装与配置

时间:2017-12-14 21:09:57      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:nbsp   iptables   href   服务   save   iptable   name   key   防火墙   

一、下载:apache-activemq-5.14.0-bin.tar.gz
技术分享图片
 
二、安装activemq
1、gz文件拷贝到/usr/local/src目录
2、解压启动
tar -zxvf apache-activemq-5.14.0-bin.tar.gz
 
cd apache-activemq-5.14.0
cd bin
./activemq start
技术分享图片
 netstat -anp|grep 61616
技术分享图片
 
关闭 ./activemq start
三、开启防火墙端口
1、如果使用了云服务器需要先开启8161(web管理页面端口)、61616(activemq服务监控端口) 两个端口
2、打开linux防火墙端口
/sbin/iptables -I INPUT -p tcp --dport 8161 -j ACCEPT&&/etc/init.d/iptables save&&service iptables restart&&/etc/init.d/iptables status
/sbin/iptables -I INPUT -p tcp --dport 61616 -j ACCEPT&&/etc/init.d/iptables save&&service iptables restart&&/etc/init.d/iptables status
 
四、打开web管理页面
默认用户名密码 admin/admin 
技术分享图片
如果要修改控制台的登录用户名密码,可以在conf/jetty-realm.properties文件中修改
 
五、安全配置
1、activemq.xml新增账号密码(broker标签下添加)
<simpleAuthenticationPlugin>
    <users>
        <authenticationUser username="system" password="manager"
            groups="users,admins"/>
        
    </users>
</simpleAuthenticationPlugin>
技术分享图片
2、程序代码中添加账号密码
 技术分享图片
 

linux下activemq安装与配置

标签:nbsp   iptables   href   服务   save   iptable   name   key   防火墙   

原文地址:http://www.cnblogs.com/shamo89/p/7645651.html

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