您的位置:首页 > 汽车 > 新车 > debian让dotnet 程序以守护进程方式运行,如果意外退出主动开启

debian让dotnet 程序以守护进程方式运行,如果意外退出主动开启

2024/11/19 20:40:35 来源:https://blog.csdn.net/weixin_41432198/article/details/139156887  浏览:    关键词:debian让dotnet 程序以守护进程方式运行,如果意外退出主动开启
  1. 创建服务文件: 打开一个新的.service文件在/etc/systemd/system/目录下,例如myapp.service
sudo nano /etc/systemd/system/myapp.service
  1. 编辑服务文件: 添加以下内容到myapp.service文件,确保修改ExecStart以指向你的.NET Core应用程序的可执行文件,以及其他的路径和配置根据你的需求:
[Unit]
Description=My .NET Core Application[Service]
WorkingDirectory=/path/to/your/app
ExecStart=/usr/bin/dotnet /path/to/your/app/YourApp.dll
Restart=always
# Restart service after 10 seconds if the dotnet service crashes:
RestartSec=10
KillSignal=SIGINT
SyslogIdentifier=dotnet-app
User=www-data
Environment=ASPNETCORE_ENVIRONMENT=Production[Install]
WantedBy=multi-user.target
  • WorkingDirectory: 应用程序的工作目录。
  • ExecStart: 启动应用程序的命令。
  • Restart: 服务失败时的重启策略,always表示总是重启。
  • RestartSec: 重启前等待的时间。
  • KillSignal: 系统用于停止服务的信号。
  • User: 运行此服务的用户。
  • Environment: 设置环境变量,如ASP.NET Core环境。
    注:如何知道ExecStart中命令的路径呢?
    答:which命令会在您的系统的PATH环境变量指定的目录中搜索可执行文件。
which dotnet

我的配置如下:

[Unit]
Description=自动运行程序[Service]
WorkingDirectory=/root/workerservice
ExecStart=/root/dotnet/dotnet  /root/workerservice/WorkerServiceForLinux.dll
Restart=always
# Restart service after 10 seconds if the dotnet service crashes:
RestartSec=10
KillSignal=SIGINT
SyslogIdentifier=dotnet-app
User=root
Environment=ASPNETCORE_ENVIRONMENT=Production[Install]
WantedBy=multi-user.target
  1. 启用和启动服务: 重新加载systemd守护进程以读取新的服务文件,然后启用并启动你的服务
sudo systemctl daemon-reload
sudo systemctl enable myapp.service
sudo systemctl start myapp.service
  1. 检查服务状态: 使用以下命令查看服务状态
sudo systemctl status myapp.service
  1. 停止与disable 服务
sudo systemctl disable myapp.service
sudo systemctl stop myapp.service
  1. 通过这些步骤,您的.NET Core应用程序将作为守护进程运行在Debian系统上。如果应用程序崩溃,systemd将按照您在myapp.service文件中定义的Restart和RestartSec选项自动重新启动它。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com