Centos7 ActiveMQ 安装并配置为开机启动
Posted vincenshen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 firwalld
# 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
重启系统
# init 6
第四步,测试效果
浏览器访问服务器ip:8161
以上是关于Centos7 ActiveMQ 安装并配置为开机启动的主要内容,如果未能解决你的问题,请参考以下文章