systemd的使用(/etc/systemd/system)大幅提高了系统服务的运行效率, 其优先级高于([/usr]/lib/systemd/system)
在/etc/systemd/system/目录下创建一个.service文件,该文件如下配置:
[Unit]
Description=high performance web server
After=network.target remote-fs.target
[Service]
Type=simple
WorkingDirectory=/home/ec2-user/root
#程序工作目录
ExecStart=/home/ec2-user/root/server
#程序启动命令
ExecReload=/bin/kill -s -HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
KillMode=process
Restart=on-failure
RestartSec=20s
[Install]
WantedBy=multi-user.target
此后,便可通过systemctl命令对服务进行startrestartstopenabledisable等操作。 刷新systenctl配置命令为:
systemctl daemon-reload
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有