1. Create a new rabbitmq in the /etc/init.d directory [root@localhost init.d]# vi rabbitmq File Contents #!/bin/bash #chkconfig:2345 61 61 export HOME=/opt/data/rabbitmq/ export PATH=$PATH:/usr/local/erlang/bin export PATH=$PATH:/usr/local/src/rabbitmq_server-3.6.15/sbin case "$1" in start) echo "Starting RabbitMQ ..." rabbitmq-server-detached ;; stop) echo "Stopping RabbitMQ ..." rabbitmqctl stop ;; status) echo "Status RabbitMQ ..." rabbitmqctl status ;; restart) echo "Restarting RabbitMQ ..." rabbitmqctl stop rabbitmq-server restart ;; *) echo "Usage: $prog {start|stop|status|restart}" ;; esac exit 0 2. Grant executable permissions to rabbitmq [root@localhost init.d]# chmod 777 rabbitmq 3. Add rabbitmq service to system services [root@localhost init.d]# chkconfig --add rabbitmq 4. Set up auto-start [root@localhost init.d]# chkconfig rabbitmq on 5. Check whether the startup item is set successfully [root@localhost init.d]# chkconfig --list rabbitmq 6. Enable rabbit service [root@localhost init.d]# ./rabbitmq start 7. Test boot and restart [root@localhost init.d]#reboot [root@localhost ~]# ps -elf|grep rabbitmq The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Introduction to Sublime Text 2, a web front-end tool
>>: Detailed explanation of the default values of width and height in CSS: auto and %
#include <linux/moduleparam.h> 1. Module pa...
Preface When Ahhang was developing the Springboot...
A few days ago, I discovered that my website was ...
The project needs to use MySQL. Since I had alway...
Find the problem I recently migrated the storage ...
Hello everyone, I am Tony, a teacher who only tal...
You can save this logo locally as a .rar file and...
This article shares the specific code of javascri...
This article shares the specific code of React to...
There has been a lot of discussion about H1 recent...
Preparation 1. The master and slave database vers...
Table of contents Preface concept Stabilization d...
Cerebro is an evolution of the Elasticsearch Kopf...
Given an array [1,8,5,4,3,9,2], write an algorith...
A brief description of environment variable confi...