Centos7 ActiveMQ 安装并配置为开机启动

时间:2021-08-02 16:00:41

第一步, 环境准备

更新CentOS7 ,安装epel-release,安装JDK,关闭防火墙

# yum clean all && yum update
# yum install -y epel-release && yum install -y java-1.8.0-openjdk
# systemctl disable firewalld
# systemctl stop firewalld

第二步,获取安装包

下载ActiveMQ安装包,并解压

# wget https://www.apache.org/dist/activemq/5.15.9/apache-activemq-5.15.9-bin.tar.gz
# tar -zxvf apache-activemq-5.15.9-bin.tar.gz -C /opt

第三步,配置开机启动

在/etc/init.d/ 目录下编写启动文件activemq

#!/bin/sh
#
# /etc/init.d/activemq
# chkconfig:
# description: activemq servlet container.
# processname: activemq 5.15. # Source function library.
#. /etc/init.d/functions
# source networking configuration.
#. /etc/sysconfig/network export ACTIVEMQ_HOME=/opt/apache-activemq-5.15.9 case $ in
start)
sh $ACTIVEMQ_HOME/bin/activemq start
;;
stop)
sh $ACTIVEMQ_HOME/bin/activemq stop
;;
status)
sh $ACTIVEMQ_HOME/bin/activemq status
;;
restart)
sh $ACTIVEMQ_HOME/bin/activemq stop
sleep
sh $ACTIVEMQ_HOME/bin/activemq start
;; esac
exit

赋予可执行权限

# chmod +x /etc/init.d/activemq

设置开机启动

# systemctl enable activemq

重启系统

# init 

第四步,测试效果

浏览器访问服务器ip:8161,默认用户名和密码 admin admin

Centos7 ActiveMQ 安装并配置为开机启动