安装环境:linux redhat enterprise 5.3
activemq版本:5.9.0
1.从http://activemq.apache.org/download.html地址下载apache-activemq-5.9.0-bin.tar.gz包
2.解压缩到指定的目录
tar
zxvf apache-activemq-5.9.0-bin.tar.gz -C
/var/amq
解压缩后会在/var/amq下生成apache-activemq-5.9.0目录,其中bin目录下就是activeMQ的执行脚本存在的位置了。
3.如果启动脚本无法执行,我们需要修改一下权限
cd
/var/amq/apache-activemq-5.9.0/bin
chmod 775 activemq
4.设置activeMQ配置环境.activemqrc
bin/activemq setup ~/.activemqrc
5.启动activeMQ
在activemq主目录键入如下命令:
bin/activemq start
我们也可以把日志输出到指定的日志文件中
bin/activemq start >
/opt/applogs/amqlog 2>&1 &
然后日志就输出到/opt/applogs/amqlog了
注意:官方文档中标明了如果按上述的方式启动后,如果我们把linux终端窗口关闭的话,则服务也会停止
具体如下:
不过,我尝试了一下关闭xshell终端,貌似服务依然正在,没有退出。
不过为了保险起见,我们在启动时最好还是加上nohup参数
启动命令如下:
nohup
bin/activemq start
或者:
nohup bin/activemq start >
/opt/applogs/amqlog 2>&1 &
查看启动情况:
通过端口查询,activeMQ默认配置下启动会启动8161和61616两个端口,其中8161是mq自带的管理后台的端口,61616是mq服务默认端口:
netstat
-ntlp|grep 8161
netstat -an|grep 61616
访问activeMQ管理界面,http://ip:8161/admin,如果是本机就是http://localhost:8161/admin
相关文章
- 09-10Vmware Workstation 8.0.6&Redhat Enterprise Linux 6.4下安装yum工具及g++ 4.4.7
- 09-10redhat linux 5.6安装图解
- 09-10linux下activemq安装与配置
- 09-10Linux RedHat无法安装软件问题(No package gcc available. Nothing to do)
- 09-10RedHat Linux7.3 使用yum安装时报错,改用CentOS yum源
- 09-10Linux Redhat 7.6 操作系统 下载安装详解
- 09-10RedHat Linux 下安装MPlayer 编译源代码方式
- 09-10ActiveMQ安装(Linux)
- 09-10RedHat Linux 9.0的安装+入门指南(图文并茂)
- 09-10Linux/RedHat 编译安装GNU gcc 4.9.0 (g++)