1.安装ActiveMQ前请先安装Jdk
ActiveMQ下载请进入官方下载http://activemq.apache.org/download.html
下载后上传至lInux服务器
2.安装ActiveMQ
安装路径如下:/usr/software/activemq
进入/usr/software/activemq目录下,解压activeMQ
[root@localhost Desktop]# cd /usr/software/activemq
[root@localhost activemq]# tar -xzvf apache-activemq-5.15.12-bin.tar.gz
3.启动ActiveMQ
进入/usr/software/activemq/apache-activemq-5.15.12/bin/linux-x86-64目录下,启动activeMQ
[root@localhost activemq]# cd /usr/software/activemq/apache-activemq-5.15.12/bin/linux-x86-64
[root@localhost linux-x86-64]# ./activemq start
4.开放端口
修改防火墙开启activemq端口8161(管理平台端口)和61616(通讯端口)
[root@localhost linux-x86-64]# vi + /etc/sysconfig/iptables
#添加下面两行
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8161 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 61616 -j ACCEPT
重启防火墙
service iptables restart
[root@localhost linux-x86-64]# service iptables restart
5.验证
http://192.168.10.78:8161/admin/index.jsp
用户名:admin
密码:admin