Centos Rabbitmq 配置systemctl启动

  • Post author:
  • Post category:其他




需求

在测试环境安装Rabbitmq后,因为一些原因导致需要重启服务器。所以需要配置rabbitmq 在systemctl下启动。

##实施

  1. 编辑service文件

vim /lib/systemd/system/rabbitmq.service

  1. 输入
[Unit]
Description=rabbitmq
After=network.target
 
[Service]
Type=forking
ExecStart=/usr/local/rabbitmq_server-3.8.3/sbin/rabbitmq-server -detached
ExecStop=/usr/local/rabbitmq_server-3.8.3/sbin/rabbitmqctl stop
PrivateTmp=true


解释

Description:描述服务
After:描述服务类别
[Service]服务运行参数的设置
Type=forking是后台运行的形式
ExecStart为服务的具体运行命令
ExecReload为重启命令
ExecStop为停止命令
PrivateTmp=True表示给服务分配独立的临时空间
注意:[Service]的启动、重启、停止命令全部要求使用绝对路径
[Install]运行级别下服务安装的相关设置,可设置为多用户,即系统运行级别为3
  1. 设置开机启动

systemctl enable rabbitmq.service



备用

systemctl start abc.service (启动服务)
systemctl stop abc.service (停止服务)
systemctl enable abc.service (设置开机自启动)
systemctl disable abc.service (停止开机自启动)
systemctl status abc.service (查看服务当前状态)
systemctl restart abc.service (重新启动服务)
systemctl list-units --type=service (查看所有已启动的服务)



参考文档


  1. 编写使用systemctl启动服务脚本



版权声明:本文为u011069013原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。