這篇文章主要講解了“怎么用Supervisor守護(hù)dotnetcore程序”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“怎么用Supervisor守護(hù)dotnetcore程序”吧!
創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括潤州網(wǎng)站建設(shè)、潤州網(wǎng)站制作、潤州網(wǎng)頁制作以及潤州網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,潤州網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到潤州省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
1.設(shè)置nginx 服務(wù)開機(jī)啟動(dòng)
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
指定守護(hù)的程序配置
vim /etc/supervisor/supervisord.conf
在最后增加
[include] files=conf.d/*.conf
新建一個(gè)“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”
執(zhí)行命令: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
查看是否被守護(hù)進(jìn)程拉起
重啟電腦查看是否自動(dòng)啟動(dòng)
感謝各位的閱讀,以上就是“怎么用Supervisor守護(hù)dotnetcore程序”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對怎么用Supervisor守護(hù)dotnetcore程序這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!