Centos7 ActiveMQ 安裝並配置爲開機啓動

第一步, 環境準備

更新CentOS7 ,安裝epel-release,安裝JDK,關閉防火牆java

# 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安裝包,並解壓apache

# 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

重啓系統spa

# init 6

 

第四步,測試效果

瀏覽器訪問服務器ip:8161,默認用戶名和密碼 admin adminrest

相關文章
相關標籤/搜索