先把 Shell 脚本注册为系统服务

cd /etc/systemd/system #切换到 /etc/systemd/system 目录
sudo vim name.service  #使用 vim 创建 service 文件

service 文件内容

[Unit]
Description = 填入服务描述

[Service]
Type = simple
ExecStart = /bin/bash 脚本所在的位置
Restart = always
[Install]
WantedBy = multi-user.target

重载服务

systemctl daemon-reload

启动服务

systemctl enable name.service #开机自启
systemctl start name.service #直接启动
systemctl stop name.service #停止服务
systemctl status name.service #查看服务状态
最后修改:2024 年 01 月 18 日
如果觉得我的文章对你有用,请随意赞赏