我通过在linux中使用以下步骤创建了一个activemq服务。
# ln –s /home/STI/SIServer/apache-activemq-5.6.0/bin/linux-x86-64/activemq \
/etc/init.d/activemq
# chkconfig –add activemq
通过以下命令启动activemq服务:
# chkconfig activemq on
但我需要重启系统才能使activemq工作。
此外,通过使用#chkconfig activemq off停止服务,服务不会停止。 我需要强行杀死activemq的pid。
请提供输入,我如何解决此问题。
提前致谢
答案 0 :(得分:1)
chkconfig仅控制服务运行的运行级别,它不启动服务。使用service activemq start
启动它并service activemq stop
停止。