溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Centos7系統(tǒng)下如何搭建.NET Core2.0+Nginx+Supervisor環(huán)境

發(fā)布時(shí)間:2022-04-12 16:19:28 來(lái)源:億速云 閱讀:150 作者:iii 欄目:編程語(yǔ)言

這篇文章主要介紹了Centos7系統(tǒng)下如何搭建.NET Core2.0+Nginx+Supervisor環(huán)境的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇Centos7系統(tǒng)下如何搭建.NET Core2.0+Nginx+Supervisor環(huán)境文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。

一、linux .net core簡(jiǎn)介

 一直以來(lái),微軟只對(duì)自家平臺(tái)提供.net支持,這樣等于讓這個(gè)“理論上”可以跨平臺(tái)的框架在linux和macos上的支持只能由第三方項(xiàng)目提供(比如mono .net)。

直到微軟推出完全開(kāi)源的.net core。這個(gè)開(kāi)源的平臺(tái)兼容.net  standard,并且能在windows、linux和macos上提供完全一致的api。雖然這個(gè)小巧的.net框架只是標(biāo)準(zhǔn).net的一個(gè)子集,但是已經(jīng)相當(dāng)強(qiáng)大了。

一方面,這個(gè)小巧的框架可以讓某些功能性應(yīng)用同時(shí)運(yùn)行在三個(gè)平臺(tái)上(就像某些功能性的python腳本一樣),另一方面,這也可以讓服務(wù)器運(yùn)維人員將asp .net服務(wù)程序部署在linux服務(wù)器上(特別是對(duì)于運(yùn)行windows server較為吃力的服務(wù)器)。

二、linux .net core2.0 環(huán)境部署前準(zhǔn)備

1.環(huán)境說(shuō)明:

服務(wù)器系統(tǒng):centos 7.2.1511

 2.安裝前準(zhǔn)備(關(guān)閉防火墻、關(guān)閉selinux)

1)關(guān)閉firewall:

systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall開(kāi)機(jī)啟動(dòng)
firewall-cmd --state #查看默認(rèn)防火墻狀態(tài)(關(guān)閉后顯示notrunning,開(kāi)啟后顯示running)

 2)關(guān)閉selinux

sed -i "s/selinux=enforcing/selinux=disabled/g" /etc/selinux/config

查看改后文件如下:

[root@localhost ~]# cat /etc/selinux/config 
 
# this file controls the state of selinux on the system.
# selinux= can take one of these three values:
#   enforcing - selinux security policy is enforced.
#   permissive - selinux prints warnings instead of enforcing.
#   disabled - no selinux policy is loaded.
selinux=disabled
# selinuxtype= can take one of three two values:
#   targeted - targeted processes are protected,
#   minimum - modification of targeted policy. only selected processes are protected. 
#   mls - multi level security protection.
selinuxtype=targeted

3)重啟centos

reboot

三、centos 部署.net core2.0 環(huán)境

1.添加dotnet產(chǎn)品

在安裝.net核心之前,您需要注冊(cè)微軟產(chǎn)品提要。這只需要做一次。首先,注冊(cè)微軟簽名密鑰,然后添加微軟產(chǎn)品提要。

rpm --import https://packages.microsoft.com/keys/microsoft.asc                   
sh -c 'echo -e "[packages-microsoft-com-prod]nname=packages-microsoft-com-prod nbaseurl=https://packages.microsoft.com/yumrepos/microsoft-rhel7.3-prodnenabled=1ngpgcheck=1ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/dotnetdev.repo'

2.安裝.net核心sdk

在下一步之前,請(qǐng)從您的系統(tǒng)中刪除.net .net以前的任何預(yù)覽版本。

以下命令更新用于安裝的產(chǎn)品列表,安裝.net核心所需的組件,然后安裝.net核心sdk。

yum update
yum install libunwind libicu -y
yum install dotnet-sdk-2.0.0 -y

3.檢查dotnet是否安裝成功與版本查看

dotnet --info
dotnet --version

四、測(cè)試.net core2.0 環(huán)境

1.在home目錄下初始化一個(gè)測(cè)試環(huán)境并輸出”hello world “內(nèi)容 (測(cè)試方式一,可忽略)

cd /home
dotnet new console -o hwapp
cd hwapp
dotnet run

輸出空內(nèi)容如下:

[root@localhost hwapp]# dotnet run
hello world!

2.上傳.net core的實(shí)例頁(yè)面進(jìn)行測(cè)試 (測(cè)試方式二、推薦)

centos 下.net core 2 環(huán)境測(cè)試用例?。ò阉蟼鞯?home目錄下或自定義的目錄)

下載地址:

http://down.51cto.com/data/2334968

執(zhí)行以下命令

cd /home/webapplication1
dotnet restore  //如果使過(guò)用測(cè)試方式一,就需先執(zhí)行這命令重新加載一下當(dāng)前新的網(wǎng)站文件
dotnet run

運(yùn)行后如下圖:

 Centos7系統(tǒng)下如何搭建.NET Core2.0+Nginx+Supervisor環(huán)境

 通過(guò)ie訪問(wèn)測(cè)試頁(yè)

  Centos7系統(tǒng)下如何搭建.NET Core2.0+Nginx+Supervisor環(huán)境

五、安裝配置nginx對(duì)asp.net core應(yīng)用的轉(zhuǎn)發(fā)

1.安裝nginx環(huán)境

[root@localhost ~]#curl -o nginx.rpm http://nginx.org/packages/centos/7/noarch/rpms/nginx-release-centos-7-0.el7.ngx.noarch.rpm
[root@localhost ~]#rpm -ivh nginx.rpm
[root@localhost ~]#yum install nginx -y

輸入:systemctl start nginx 來(lái)啟動(dòng)nginx。

[root@localhost ~]# systemctl start nginx

輸入:systemctl enable nginx 來(lái)設(shè)置nginx的開(kāi)機(jī)啟動(dòng)(linux宕機(jī)、重啟會(huì)自動(dòng)運(yùn)行nginx不需要連上去輸入命令)

[root@localhost ~]#systemctl enable nginx
created symlink from /etc/systemd/system/multi-user.target.wants/nginx.service to /usr/lib/systemd/system/nginx.service.

2.通過(guò)ie檢查能否訪問(wèn)

[root@localhost nginx-1.8.1]# ps -ef|grep nginx
root   14626   1 0 08:47 ?    00:00:00 nginx: master process nginx
nginx   14627 14626 0 08:47 ?    00:00:00 nginx: worker process
root   14636  3269 0 08:49 pts/1  00:00:00 grep --color=auto nginx

Centos7系統(tǒng)下如何搭建.NET Core2.0+Nginx+Supervisor環(huán)境

nginx常用的操作命令

systemctl start nginx.service               #啟動(dòng)nginx服務(wù)

systemctl enable nginx.service             #設(shè)置開(kāi)機(jī)自啟動(dòng)

systemctl disable nginx.service            #停止開(kāi)機(jī)自啟動(dòng)

systemctl status nginx.service             #查看服務(wù)當(dāng)前狀態(tài)

systemctl restart nginx.service           #重新啟動(dòng)服務(wù)

systemctl list-units –type=service        #查看所有已啟動(dòng)的服務(wù)

4.防火墻配置(如果系統(tǒng)有防火墻就需要進(jìn)行寫(xiě)入規(guī)則)

命令:firewall-cmd –zone=public –add-port=80/tcp –permanent(開(kāi)放80端口)

命令:systemctl restart firewalld(重啟防火墻以使配置即時(shí)生效)

5.配置nginx對(duì)asp.net core應(yīng)用的轉(zhuǎn)發(fā)

修改 /etc/nginx/conf.d/default.conf 文件。

將文件內(nèi)容替換為

server {
  listen 80;
  location / {
    proxy_pass http://localhost:88;
    proxy_http_version 1.1;
    proxy_set_header upgrade $http_upgrade;
    proxy_set_header connection keep-alive;
    proxy_set_header host $host;
    proxy_cache_bypass $http_upgrade;
  }
}

 重新加載nignx

[root@localhost nginx]# nginx -s reload

nginx的配置己完成

6.開(kāi)啟dotnet run進(jìn)行測(cè)試

[root@localhost ~]# cd /home/webapplication1/
[root@localhost webapplication1]# dotnet run
using launch settings from /home/webapplication1/properties/launchsettings.json...
hosting environment: development
content root path: /home/webapplication1
now listening on: http://[::]:88
application started. press ctrl+c to shut down.

通過(guò)ip 80端口訪問(wèn)

Centos7系統(tǒng)下如何搭建.NET Core2.0+Nginx+Supervisor環(huán)境

六、配置守護(hù)服務(wù)(supervisor)

目前存在三個(gè)問(wèn)題

問(wèn)題1:asp.net core應(yīng)用程序運(yùn)行在shell之中,如果關(guān)閉shell則會(huì)發(fā)現(xiàn)asp.net core應(yīng)用被關(guān)閉,從而導(dǎo)致應(yīng)用無(wú)法訪問(wèn),這種情況當(dāng)然是我們不想遇到的,而且生產(chǎn)環(huán)境對(duì)這種情況是零容忍的。

問(wèn)題2:如果asp.net core進(jìn)程意外終止那么需要人為連進(jìn)shell進(jìn)行再次啟動(dòng),往往這種操作都不夠及時(shí)。

問(wèn)題3:如果服務(wù)器宕機(jī)或需要重啟我們則還是需要連入shell進(jìn)行啟動(dòng)。

為了解決這個(gè)問(wèn)題,我們需要有一個(gè)程序來(lái)監(jiān)聽(tīng)asp.net core 應(yīng)用程序的狀況。在應(yīng)用程序停止運(yùn)行的時(shí)候立即重新啟動(dòng)。這邊我們用到了supervisor這個(gè)工具,supervisor使用python開(kāi)發(fā)的。

1.安裝supervisor

[root@localhost /]# yum install python-setuptools -y
[root@localhost /]#easy_install supervisor

2.配置supervisor

[root@localhost /]#mkdir /etc/supervisor
[root@localhost /]#echo_supervisord_conf > /etc/supervisor/supervisord.conf

修改supervisord.conf文件,將文件尾部的配置

[root@localhost /]# vi /etc/supervisor/supervisord.conf

將里面的最后兩行:

;[include]                          
;files = relative/directory/*.ini

 改為

[include]
files = conf.d/*.conf

ps:如果服務(wù)已啟動(dòng),修改配置文件可用“supervisorctl reload”命令來(lái)使其生效

3.配置對(duì)asp.net core應(yīng)用的守護(hù)

創(chuàng)建一個(gè) webapplication1.conf文件,內(nèi)容大致如下

[root@localhost /]# vi webapplication1.conf
[program:webapplication1]
command=dotnet webapplication1.dll ; 運(yùn)行程序的命令
directory=/home/webapplication1/ ; 命令執(zhí)行的目錄
autorestart=true ; 程序意外退出是否自動(dòng)重啟
stderr_logfile=/var/log/webapplication1.err.log ; 錯(cuò)誤日志文件
stdout_logfile=/var/log/webapplication1.out.log ; 輸出日志文件
environment=aspnetcore_environment=production ; 進(jìn)程環(huán)境變量
user=root ; 進(jìn)程執(zhí)行的用戶身份
stopsignal=int

將文件拷貝至:“/etc/supervisor/conf.d/webapplication1.conf”下

[root@localhost /]#mkdir /etc/supervisor/conf.d
[root@localhost /]#cp webapplication1.conf /etc/supervisor/conf.d/

運(yùn)行supervisord,查看是否生效

[root@localhost /]#supervisord -c /etc/supervisor/supervisord.confsupervisord -c /etc/supervisor/supervisord.conf
[root@localhost /]# ps -ef | grep webapplication1
root   29878 29685 0 09:57 ?    00:00:00 dotnet webapplication1.dll
root   29892 29363 0 09:57 pts/3  00:00:00 grep --color=auto webapplication1

如果存在dotnet webapplication1.dll 進(jìn)程則代表運(yùn)行成功,這時(shí)候在使用瀏覽器進(jìn)行訪問(wèn)。

Centos7系統(tǒng)下如何搭建.NET Core2.0+Nginx+Supervisor環(huán)境

至此關(guān)于asp.net core應(yīng)用程序的守護(hù)即配置完成。

supervisor守護(hù)進(jìn)程常用操作

【啟動(dòng)supervisord】
確保配置無(wú)誤后可以在每臺(tái)主機(jī)上使用下面的命令啟動(dòng)supervisor的服務(wù)器端supervisord
supervisord

【停止supervisord】    
supervisorctl shutdown

【重新加載配置文件】
supervisorctl reload

七 、配置supervisor開(kāi)機(jī)啟動(dòng)

新建一個(gè)“supervisord.service”文件

[root@localhost /]# vi 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”

[root@localhost /]# cp supervisord.service /usr/lib/systemd/system/

 執(zhí)行命令:systemctl enable supervisord

[root@localhost /]# systemctl enable supervisord
created symlink from /etc/systemd/system/multi-user.target.wants/supervisord.service to /usr/lib/systemd/system/supervisord.service.

執(zhí)行命令:systemctl is-enabled supervisord #來(lái)驗(yàn)證是否為開(kāi)機(jī)啟動(dòng)

[root@localhost /]# systemctl is-enabled supervisord

重啟系統(tǒng)看能否能成功訪問(wèn)

[root@localhost /]# reboot

 Centos7系統(tǒng)下如何搭建.NET Core2.0+Nginx+Supervisor環(huán)境

關(guān)于“Centos7系統(tǒng)下如何搭建.NET Core2.0+Nginx+Supervisor環(huán)境”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“Centos7系統(tǒng)下如何搭建.NET Core2.0+Nginx+Supervisor環(huán)境”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI