1.写好脚本
[root@localhost sq]# cat switch.service
[Unit]
Description=switch
After=network.target
[Service]
ExecStart=/root/work/switch
ExecStop=kill -INT `cat /tmp/switch.pid`
[Install]
WantedBy=multi-user.target
2.保存目录
以755的权限保存在目录:
/usr/lib/systemd/system
3.设置开机自启动
任意目录下执行
systemctl enable switch.service
4.其他命令
启动nginx服务
systemctl start switch.service
设置开机自启动
systemctl enable switch.service
停止开机自启动
systemctl disable switch.service
查看服务当前状态
systemctl status switch.service
重新启动服务
systemctl restart switch.service
查看所有已启动的服务
systemctl list-units --type=service
本文详细介绍了如何编写并管理systemd服务脚本,包括创建`switch.service`文件,设置开机自启动,执行启动、停止和状态检查操作。涵盖了从脚本编写到目录权限设置,再到使用systemctl进行服务管理的关键步骤。
2484





