1、添加 service 文件,目录在/etc/systemd/system,比如web.service,添加以下内容
[Unit]
Description=服务描述
After=network.target
[Service]
Type=simple
User=es
WorkingDirectory=/app/web
ExecStart=/app/web/test-web --config=/app/web/config-prod.yaml
Restart=on-failure
[Install]
WantedBy=multi-user.target
2、执行命令,systemctl daemon-reload,重启加载
3、启动程序命令,systemctl start web,停止命令systemctl stop web
这样程序突然挂了,也会自动拉起