linux部署ActiveMQ

前提是已经成功安装JDK并配置了环境变量。

1.下载ActiveMQ, http://activemq.apache.org/download.html

2.复制到Linux系统的/usr/local目录下,解压:

 tar zxvf apache-activemq-5.10.0-bin.tar.gz

3. 安装过程:

a) 进入解压后目录: cd apache-activemq-5.10.0/bin

b) 修改属性为可执行:chmod 755 activemq

c) 配置ActiveMQ:./activemq setup /etc/default/activemq

4. 启动ActiveMQ:./activemq start

5. 测试:浏览器输入http://127.0.0.1:8161 可见管理界面

linux部署ActiveMQ_第1张图片

参考:

http://www.cfanz.cn/?c=article&a=read&id=77091

你可能感兴趣的:(linux部署ActiveMQ)