官网下载tar包
http://activemq.apache.org/components/classic/download/
安装activemq前提是要有JDK环境
1. 在安装目录下解压tar包
1 | tar -zxvf apache-activemq-5.15.10-bin.tar.gz |
2. 进入解压后的文件夹,进入bin目录下:
1 | [root@instance-d6rdm793 apache-activemq-5.15.10]# cd bin/ |
3. ./activemq start 启动
1 | [root@instance-d6rdm793 bin]# ./activemq start |
4. ps -ef|grep activemq 查看
1 | [root@instance-d6rdm793 bin]# ps -ef| grep activemq |
安装完成!!!!!!!!!!!!
下面要把activemq设为系统服务,设置开机启动:
同之前的tomcat设置类似的操作,拷贝一份activemq启动文件到/etc/init.d目录下
1 | cp /usr/activemq/apache-activemq-5.15.10/bin/activemq /etc/init.d/ |
1 | cd etc/init.d/ |
查看init.d目录下:
编辑activemq文件:
1 | vi activemq |
添加如下配置:1
2
3
4
5
6
7
8
9
10
11### BEGIN INIT INFO
# Provides: activemq
# Required-Start: $remote_fs $network $syslog
# Required-Stop: $remote_fs $network $syslog
# Default-Start: 3 5
# Default-Stop: 0 1 6
# Short-Description: Starts ActiveMQ
# Description: Starts ActiveMQ Message Broker Server
### END INIT INFO
export JAVA_HOME=/usr/lib/jvm/java-1.8.0
ACTIVEMQ_HOME=/usr/activemq/apache-activemq-5.15.10
export JAVA_HOME和ACTIVEMQ_HOME按实际目录写
保存文件退出。
添加activemq到服务列表:1
chkconfig --add activemq
查看是否添加成功:1
chkconfig --list
好了,就可以使用service activemq start启动activemq,service activemq stop停止
最后,设置开机启动:
chkconfig activemq on
END!
————————————————
版权声明:本文为CSDN博主「WannaRunning」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_29569183/article/details/103239440