linux如何添加自定义服务

  1. linux如何添加自定义服务-service命令
    1. 添加配置
    2. 服务操作
    3. 启/禁用开机自启

编写进度

linux如何添加自定义服务-service命令

添加配置

cat <<EOF >/etc/systemd/system/clash.service
[Unit]
Description=Clash service
After=network.target

[Service]
Type=simple
User=skylee
ExecStart=/usr/bin/clash
Restart=on-failure
RestartPreventExitStatus=23

[Install]
WantedBy=multi-user.target

服务操作

systemctl list-units --type=service # 查看已识别的服务
systemctl daemon-reload   # 让系统重新读取服务
service <service-name> start/restart/stop

启/禁用开机自启

systemctl enable/disable <service-name>

转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 askding@qq.com

💰

×

Help us with donation