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

2022/4/3 7:20:52

本文主要是介绍Centos7 ActiveMQ 安装并配置为开机启动,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

第一步, 环境准备

更新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: 345 63 37
# description: activemq servlet container.
# processname: activemq 5.15.2

# Source function library.
#. /etc/init.d/functions
# source networking configuration.
#. /etc/sysconfig/network


export ACTIVEMQ_HOME=/opt/apache-activemq-5.15.9

case $1 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 1
        sh $ACTIVEMQ_HOME/bin/activemq start
    ;;

esac
exit 0
复制代码

赋予可执行权限

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

设置开机启动

# systemctl enable activemq
 /usr/lib/systemd/systemd-sysv-install enable activemq

重启系统

# init 6

 

第四步,测试效果

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

 



这篇关于Centos7 ActiveMQ 安装并配置为开机启动的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程