红联Linux门户
Linux帮助

Linux部署Apache ActiveMQ 5.14.1

发布时间:2016-12-06 09:26:07来源:linux网站作者:zhming
简单记一下,下载地址:http://activemq.apache.org/download.html
 
一、安装JDK7以上,官方说明:http://activemq.apache.org/version-5-getting-started.html
Ubuntu安装JDK详解:http://www.linuxdiyf.com/linux/25859.html
Ubuntu16.04安装JDK8详细介绍及卸载JDK8:http://www.linuxdiyf.com/linux/23608.html
 
二、创建目录:
cd /usr
mkdir activemq
并上传apache-activemq-5.14.1-bin.tar.gz到activemq目录下
 
三、解压apache-activemq-5.14.1-bin.tar.gz
tar -zxvf apache-activemq-5.14.1-bin.tar.gz
Linux部署Apache ActiveMQ 5.14.1
 
四、运行
activemq启动分linux-x86-32和linux-x86-64
进入bin/linux-x86-64下
cd apache-activemq-5.14.1/bin/linux-x86-64/
启动
./activemq start
Linux部署Apache ActiveMQ 5.14.1
 
五、启动成功后,访问
activemq默认端口61616,(官方文档:ActiveMQ's default port is 61616. )
Linux部署Apache ActiveMQ 5.14.1
http://localhost:8161/admin
Linux部署Apache ActiveMQ 5.14.1
默认登录用户:admin 密码:admin
修改用户信息编辑 conf/jetty-realm.properties 即可。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/26610.html