Centos7 安装 ActiveMq

1、安装

# cd /usr/local/src/
# wget http://mirrors.shu.edu.cn/apache//activemq/5.15.3/apache-activemq-5.15.3-bin.tar.gz
# tar -xzvf apache-activemq-5.15.3-bin.tar.gz

2、启动与关闭

# cd /usr/local/src/apache-activemq-5.15.3/bin/linux-x86-64/
#启动activemq服务
# ./activemq start
Starting ActiveMQ Broker...
#关闭activemq服务
# ./activemq stop
Stopping ActiveMQ Broker...
Stopped ActiveMQ Broker.
#

3、访问

http://IP地址:8161/admin/

  用户名和密码默认是:admin

原文地址:https://www.cnblogs.com/gdwkong/p/8893822.html