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

  1. 创建服务文件: 打开一个新的.service文件在/etc/systemd/system/目录下,例如myapp.service
bash 复制代码
sudo nano /etc/systemd/system/myapp.service
  1. 编辑服务文件: 添加以下内容到myapp.service文件,确保修改ExecStart以指向你的.NET Core应用程序的可执行文件,以及其他的路径和配置根据你的需求:
bash 复制代码
[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环境变量指定的目录中搜索可执行文件。
bash 复制代码
which dotnet

我的配置如下:

bash 复制代码
[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守护进程以读取新的服务文件,然后启用并启动你的服务
bash 复制代码
sudo systemctl daemon-reload
sudo systemctl enable myapp.service
sudo systemctl start myapp.service
  1. 检查服务状态: 使用以下命令查看服务状态
bash 复制代码
sudo systemctl status myapp.service
  1. 停止与disable 服务
bash 复制代码
sudo systemctl disable myapp.service
sudo systemctl stop myapp.service
  1. 通过这些步骤,您的.NET Core应用程序将作为守护进程运行在Debian系统上。如果应用程序崩溃,systemd将按照您在myapp.service文件中定义的Restart和RestartSec选项自动重新启动它。
相关推荐
FGGIT4 分钟前
香橙派开发板玩法分享:Docker部署1Panel打造全能控制台远程访问
运维·docker·容器
苹果企业签名分发11 分钟前
游戏搭建云服务器配置推荐
运维·服务器·游戏
朱剑君39 分钟前
Windows下Docker部署GitHub项目案例——NewsNow
运维·docker·容器
yangmf204041 分钟前
私有知识库 Coco AI 实战(一):Linux 平台部署
大数据·linux·运维·人工智能·elasticsearch·搜索引擎·全文检索
qq_413691352 小时前
CI/CD(九) Jenkins共享库与多分支流水线准备
运维·ci/cd·jenkins
Geek极安网络安全3 小时前
2025年浙江省中等职业学校职业能力大赛(学生技术技能类)“移动应用与开发”赛项技术文件
运维·网络·python·安全·web安全·eclipse·php
佳腾_4 小时前
【Zabbix技术系列文章】第④篇——Zabbix 数据可视化
运维·信息可视化·zabbix·监控
kfepiza4 小时前
networking的`/etc/network/interfaces`的:`up`,`down`,`pre-up`,`pre-down`,`post-up`,
tcp/ip·ubuntu·debian
塔能物联运维4 小时前
物联网扩张下,塔能物联运维如何助力运维管理海量设备连接
大数据·运维
kfepiza4 小时前
Debian/Ubuntu的networking的`/etc/network/interfaces`配置文件详解
网络协议·tcp/ip·debian