天天看點

CentOS7 下 ActiveMQ 開機啟動

嘗試了很多種方法,最終使用自己編寫腳本,啟動 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 JAVA_HOME=/usr/java/jdk1.8.0_144
export CATALINA_HOME=/root/apache-activemq-5.15.2


case $1 in
    start)
        sh $CATALINA_HOME/bin/activemq start
    ;;
    stop)
        sh $CATALINA_HOME/bin/activemq stop
    ;;
    restart)
        sh $CATALINA_HOME/bin/activemq stop
        sleep 1
        sh $CATALINA_HOME/bin/activemq start
    ;;
    status)
        sh $CATALINA_HOME/bin/activemq status
    ;;
esac
exit 0      

設定檔案權限:chmod 777 activemq

添加到服務:chkconfig --add activemq

服務自啟動:chkconfig activemq on