简介supervisor可以保证程序崩溃后,可以重新把程序启动起来等相关功能。安装yum install -y supervisor安装好后在/etc/会生成一个supervisord.conf文件及一个supervisord.d文件目录查看supervisor是否安装成功su...
简介
supervisor可以保证程序崩溃后,可以重新把程序启动起来等相关功能。
安装
yum install -y supervisor
安装好后在/etc/会生成一个supervisord.conf文件及一个supervisord.d文件目录
查看supervisor是否安装成功
supervisord --version
启动
supervisord -c /etc/supervisord.conf
查看supervisor是否启动成功
ps -ef|grep supervisord
设置supervisor 开机启动
systemctl enable supervisord
检查是否是开机启动
systemctl is-enabled supervisord
启动服务
systemctl start supervisord
启动时可能回报错:Another program is already listening on a port that one of our HTTP servers is config...rvisord.
解决方案:
执行命令 find / -name supervisor.sock 然后 unlink /路径/supervisor.sock 最后再执行启动命令 systemctl start supervisord
查看状态
systemctl status supervisord.service
配置supervisor ,web管理页面
修改配置信息,supervisor 默认配置文件,放在 /etc/supervisord.conf 路径中:
[inet_http_server] ; HTTP 服务器,提供 web 管理界面 port=*:9001 ; Web 管理后台运行的 IP 和端口 username=user ; 登录管理后台的用户名 password=1234 ; 登录管理后台的密码
[include]
files = supervisord.d/*.ini ;配置文件夹
修改完之后重启:
supervisorctl reload
然后通过http://ip:9001/访问web界面,账户名密码就是你配置的,效果如下:
创建配置文件
创建一个.ini文件,放在目录supervisord.d下
[program:demo] ;程序名称 command=dotnet demo.dll ; 运行命令 directory=/web/publish;目录 environment=ASPNETCORE_ENVIRONMENT=Production;环境变量 user=root;用户 stopsignal=INT autostart=true;如果是true的话,子进程将在supervisord启动后被自动启动 autorestart=true;进程死掉后自动重启的情况 stderr_logfile=/var/log/demo/demo.err.log;错误日志文件 stdout_logfile=/var/log/demo/demo.out.log;输出日志文件
重启
systemctl restart supervisord
查看是否生效
supervisorctl status
然后把Xshell关了,浏览器中输入:http://ip:8080/api/values,也能看到以下页面:
supervisorctl 常用命令
查看任务状态:supervisorctl status
启动任务:supervisorctl start <name>
停止任务:supervisorctl stop <name>
重启任务:supervisorctl restart <name>
清除日志文件:supervisorctl clear <name>
清除多个日志文件:supervisorctl clear <name> <name>
清除所有日志文件:supervisorctl clear all
移除任务:supervisorctl remove <name>
Nginx代理配置
安裝nginx:Linux - CentOS 7 通过Yum源安装 Nginx
修改nginx.conf
添加一个服务
server { listen 80; server_name 47.106.98.252; location / { root html; index index.html index.htm; proxy_pass http://localhost:8080; } }
检查配置文件是否成功
nginx -t
成功之后重启Nginx服务
systemctl restart nginx.service
测试
浏览器输入http://ip:/api/values,效果是一样的:
本文标题为:.Net Core 项目发布到Linux - CentOS 7(二)用Supervisor守护netcore进程
基础教程推荐
- 一个读写csv文件的C#类 2022-11-06
- unity实现动态排行榜 2023-04-27
- C# windows语音识别与朗读实例 2023-04-27
- C#类和结构详解 2023-05-30
- C#控制台实现飞行棋小游戏 2023-04-22
- ZooKeeper的安装及部署教程 2023-01-22
- C# List实现行转列的通用方案 2022-11-02
- winform把Office转成PDF文件 2023-06-14
- linux – 如何在Debian Jessie中安装dotnet core sdk 2023-09-26
- C# 调用WebService的方法 2023-03-09