海哥 发表于 2024-12-27 10:47:17

Ubuntu 24使用systemctl配置service自动重启

总体流程和互联网上差不多 ,但是Ubuntu 24的 system配置文件位于 /usr/lib/systemd/system/
网上的文章还停留在/etc/下 让我一顿好找
举个例子
主要是添加这个参数
Restart=always

Description=Buda Website Service
After=network.target


Type=simple
WorkingDirectory=/path/to/working/directory/
ExecStart=/path/of/exe_file
StandardOutput=append:/var/log/buda/2024_11_01.log
StandardError=append:/var/log/buda/2024_11_01.log
Restart=always
RestartSec=5



WantedBy=multi-user.target 然后执行下面的命令让服务收效
# 重新加载systemd管理器配置:
systemctl daemon-reload
systemctl enable buda
systemctl start buda
systemctl status buda
systemctl stop buda
systemctl disable buda

#查看服务的日志输出,帮助调试和故障排除。
journalctl -u buda


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: Ubuntu 24使用systemctl配置service自动重启