您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么用Supervisor守護dotnetcore程序”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么用Supervisor守護dotnetcore程序”吧!
1.設置nginx 服務開機啟動
systemctl enable nginx.servic
2.安裝Supervisor
yum install python-setuptools easy_install supervisor
3.配置Supervisor
mkdir /etc/supervisor echo_supervisord_conf > /etc/supervisor/supervisord.conf #指定配置文件 supervisord -c /etc/supervisor/supervisord.conf
指定守護的程序配置
vim /etc/supervisor/supervisord.conf
在最后增加
[include] files=conf.d/*.conf
新建一個“supervisord.service
”文件
# dservice for systemd (CentOS 7.0+) # by ET-CS (https://github.com/ET-CS) [Unit] Description=Supervisor daemon [Service] Type=forking ExecStart=/usr/bin/supervisord -c /etc/supervisor/supervisord.conf ExecStop=/usr/bin/supervisorctl shutdown ExecReload=/usr/bin/supervisorctl reload KillMode=process Restart=on-failure RestartSec=42s [Install] WantedBy=multi-user.target
將文件拷貝至:“/usr/lib/systemd/system/supervisord.service”
執行命令:systemctl enable supervisord
新增配置
vim /etc/supervisor/conf.d/acore.dll.conf
[program:acore.dll] command=/bin/bash -c "dotnet acore.dll server.urls=http://127.0.0.1:3000/" directory=/root/dotnetcore/acore/ autorestart=false stderr_logfile=/var/log/acore.dll.err.log stdout_logfile=/var/log/acore.dll.out.log environment=ASPNETCORE_ENVIRONMENT=Development user=root stopsignal=INT
重加載配置
supervisorctl reload supervisorctl start acore.dll
查看是否被守護進程拉起
重啟電腦查看是否自動啟動
感謝各位的閱讀,以上就是“怎么用Supervisor守護dotnetcore程序”的內容了,經過本文的學習后,相信大家對怎么用Supervisor守護dotnetcore程序這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。