1.解压activemq压缩包,重命名文件夹
# cd /usr/local
# tar -zxvf apache-activemq-5.11.1-bin.tar.gz
# mv apache-activemq-5.11.1 activemq
2.防火墙开启activemq端口8161(管理平台端口)和61616(通讯端口)
# 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
3.启动、访问、查看状态和停止activemq服务
# ./activemq/bin/activemq start
# wget 192.168.2.137:8161
# ./activemq/bin/activemq status
# ./activemq/bin/activemq stop
二、activemq注册为系统服务,开启开机自启
1.建立软连接
# ln -s /usr/local/activemq/bin/activemq /etc/init.d/
2.注册为系统服务
# vi /etc/init.d/activemq
添加下面内容到/etc/init.d/activemq脚本
# chkconfig: 345 63 37
# description: Auto start ActiveMQ
JAVA_HOME=/usr/local/jdk1.8.0_144
JAVA_CMD=java
3.开启开机自启
# chkconfig activemq on
# reboot
4.可以以系统服务的方式启动、查看状态和停止服务
# service activemq start
# service activemq status
# service activemq stop
————————————————
版权声明:本文为CSDN博主「leo_qy」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_25716941/article/details/78073401