在ubuntu16安装supervisor 并 启动 .net core.

1. 安装supervisor

1
apt-get install supervisor

2.新建supervisor配置文件。使用以下命令在linux 命令行

1
echo_supervisord_conf > /etc/supervisord.conf

 

3. 修改supervisor配置文件

 

1
vim /etc/supervisord.conf

移至文件内容结尾supervisord.conf。加include,指定启动时,需要启动的程序。 

1
2
[include]
files = /etc/supervisor/conf.d/*.conf

 

3. 新增.net core 启动的配置文件

1
vim /etc/supervisor/conf.d/hwappService.conf

然后填写以下内容:

1
2
3
4
5
6
7
8
9
[program:hwappService]
command=dotnet /root/data/example/hwapp/bin/Debug/netcoreapp1.1/hwapp.dll  //要执行的命令
directory=/root/data/example/hwapp/bin/Debug/netcoreapp1.1/ //dll所在的文件夹
autostart=true
autorestart=true
stderr_logfile=/var/log/sampleMicroService.err.log  //错误日志
stdout_logfile=/var/log/sampleMicroService.out.log  //输出日志
user=root //用户
stopsignal=INT

 

备注:linux中 ~指的是 /user。如果不清楚~是啥。可以在linux是用echo ~ 打印出来。

 

posted @   iDEAAM  阅读(1991)  评论(0编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【译】Visual Studio 中新的强大生产力特性
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· 字符编码:从基础到乱码解决
点击右上角即可分享
微信分享提示