systemd的使用(/etc/systemd/system)大幅提高了系统服务的运行效率, 其优先级高于([/usr]/lib/systemd/system)
在/etc/systemd/system/目录下创建一个.service文件,该文件如下配置:
代码语言:javascript复制[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配置命令为:
代码语言:javascript复制systemctl daemon-reload