本文主要是介绍Linux Ubuntu 24.04制作可用systemctl操控的service,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在/etc/systemd/system/
目录下创建一个新的<your_service_name>.service
文件,例如buda.service
,里面填入以下内容:
(特别要注意设置WorkingDirectory, 这将决定exe程序中的相对路径的解析结果。)
[Unit]
Description=buda website server
After=network.target[Service]
Type=simple
WorkingDirectory=/path/to/working/directory
ExecStart=/root/code/buda -w /path/of/website
Restart=always
RestartSec=10
User=root
Group=root[Install]
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
作者寄语
以上如有错漏之处,敬请大家指正。我是主修C/C++、Vue3开发的程序员,我的联系方式:
微信:TobeBuda
Email/Paypal: jinmin.si@outlook.com
邀请您加入「社区资讯服务」创业微信群,共同探讨打造社区资讯服务的美好未来。
参考资料
chatgpt-4o
gemini
这篇关于Linux Ubuntu 24.04制作可用systemctl操控的service的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!