ActiveMQ 是一个实现了 JMS 协议的开源消息中间件,目前它有两种版本:ActiveMQ "Classic" 和 ActiveMQ Artemis。本文主要介绍 ActiveMQ 两个版本 的特点及安装,文中使用到的软件版本:ActiveMQ "Classic" 5.16.2、ActiveMQ Artemis 2.17.0。
翻译不好,直接看官方的介绍吧:
https://activemq.apache.org/components/classic/download/
tar zxvf apache-activemq-5.16.2-bin.tar.gz
前台进程方式启动:
cd bin
./activemq console
守护进程方式启动:
cd bin
./activemq start
cd bin
./activemq stop
http://10.40.96.10:8161
点击 "Manage ActiveMQ broker",输入用户名密码:admin/admin,跳转到管理页面:
还是看官方的介绍:
https://activemq.apache.org/components/artemis/download/
tar zxvf apache-artemis-2.17.0-bin.tar.gz
bin/artemis create $some_path/mybroker
输入用户名、密码以及是否允许匿名访问,即可创建成功。
cd $some_path/mybroker/bin
./artemis run
cd $some_path/mybroker/bin
./artemis stop
http://10.40.96.11:8161
点击 "Management Console",输入创建 Broker 实例时配置的用户名密码,跳转到管理页面:
原文:https://www.cnblogs.com/wuyongyin/p/15043113.html