CentOS 6.3 安装 ActiveMQ
1.tar-zvxfapache-activemq-5.9.1-bin.tar.gz
2.cdapache-activemq-5.9.1
3.cdbin
4../activemqstart
5.配置开机启动ActiveMQ
#cd/etc/rc.d/init.d
#touchactivemq
#chmod+xactivemq
#viactivemq
添加如下内容:
#!/bin/sh
#chkconfig:23457030
#description:activemq
ACTIVEMQ_PATH=/usr/appdata/apache-activemq-5.9.1/bin/linux-x86-64
case"$1"in
start)
echo"startactivemqservice..."
sh${ACTIVEMQ_PATH}/activemqstart
;;
stop)
echo"stopactivemqservice..."
sh${ACTIVEMQ_PATH}/activemqstop
;;
restart)
echo"restartactivemqservice..."
sh${ACTIVEMQ_PATH}/activemqrestart
;;
*)
echo$"Usage:$0{start}"
exit1
;;
esac
添加到开机启动服务:
chkconfig--addactivemq
chkconfigactivemqon
chkconfig--list#查看开机启动的服务
然后就可以使用
#serviceactivemqstart|stop|restart
启动|停止|重启啦