Linux下.NET Core进程守护设置,解决SSH关闭后.NET Core服务无法访问的问题
通过dotnet命令启动的程序,会在控制台关闭时结束进程,因此需要设置守护进程。这样可以让应用程序一直运行,并且在服务器重启后自动启动。
把以下内容保存为appname.service文件放在/etc/systemd/system目录下
[Unit]
Description=appname守护进程
[Service]
WorkingDirectory=/home/www/appname/bin
ExecStart=/usr/bin/dotnet /home/www/appname/bin/appname.dll
# 程序崩溃后自动启动
Restart=always
RestartSec=10
KillSignal=SIGINT
SyslogIdentifier=appname.service
# 用户角色
User=root
Environment=ASPNETCORE_ENVIRONMENT=Production
Environment=DOTNET_PRINT_TELEMETRY_MESSAGE=false
# The default value is 90 seconds for most distributions.
TimeoutStopSec=90
[Install]
WantedBy=multi-user.target
如何管理进程,通过systemctl命令管理
启用服务进程
systemctl enable appname.service
启动服务进程
systemctl start appname.service
查看进程状态
systemctl status appname.service
重启进程
systemctl restart appname.service
停止进程
systemctl stop appname.service
查看日志,实时显示程序console信息
journalctl -fu appname.service
关于.netcore应用程序更新
可以直接覆盖旧的应用程序文件,然后使用systemctl restart 命令重启进程,不需要先关闭进程后覆盖文件再启动。