Linux新建服务

1
sudo nano /lib/systemd/system/xxx.service
1
2
3
4
5
6
7
8
9
10
11
[Unit]
Description=Your Service Name
After=network.target syslog.target
Wants=network.target

[Service]
Type=simple
ExecStart=Your File Path

[Install]
WantedBy=multi-user.target
1
2
systemctl daemon-reload
systemctl start xxx.service

Linux新建服务
https://tokisaki.top/blog/linux-new-service/
作者
Tokisaki Galaxy
发布于
2020年2月5日
许可协议