Centos7 시스템에서 .NET Core2.0+Nginx+Supervisor 환경을 구축하는 방법

PHPz
풀어 주다: 2023-05-12 20:13:18
앞으로
798명이 탐색했습니다.

1. Linux .net 코어 소개

역사적으로 Microsoft는 자체 플랫폼에 대해서만 .net 지원을 제공했습니다. 즉, 이 "이론적으로" 크로스 플랫폼 프레임워크는 Linux 및 Macos에서만 지원될 수 있습니다. 타사 프로젝트(예: mono.net).

Microsoft가 완전한 오픈 소스 .net 코어를 출시할 때까지입니다. 이 오픈 소스 플랫폼은 .NET 표준과 호환되며 Windows, Linux 및 macOS에서 완전히 일관된 API를 제공합니다. 이 소형 .net 프레임워크는 표준 .net의 하위 집합일 뿐이지만 이미 매우 강력합니다.

한편으로는 이 작은 프레임워크를 사용하면 특정 기능적 애플리케이션을 세 가지 플랫폼에서 동시에 실행할 수 있습니다(일부 기능적 Python 스크립트와 마찬가지로). 다른 한편으로는 서버 운영 및 유지 관리 담당자가 ASP를 사용할 수도 있습니다. net 서비스 프로그램은 Linux 서버(특히 Windows 서버 실행에 어려움이 있는 서버)에 배포됩니다.

2. Linux .net core2.0 환경 배포 전 준비

1. 환경 설명:

서버 시스템: centos 7.2.1511

2. 설치 전 준비(방화벽 끄기, selinux 끄기) )

1 )방화벽 닫기:

systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
firewall-cmd --state #查看默认防火墙状态(关闭后显示notrunning,开启后显示running)
로그인 후 복사

2) 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
로그인 후 복사

3. Centos는 .net core2.0 환경을 배포합니다

1. dotnet 제품 추가

.net core를 설치하기 전에 Microsoft Product Feed에 등록해야 합니다. 이 작업은 한 번만 수행하면 됩니다. 먼저 Microsoft 서명 키를 등록한 다음 Microsoft 제품 피드를 추가하세요.

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.Install .net core sdk

다음 단계를 진행하기 전에 시스템에서 .net의 이전 미리보기 버전을 모두 제거하세요.

다음 명령은 설치할 제품 목록을 업데이트하고, .net Core에 필요한 구성 요소를 설치한 다음, .net Core SDK를 설치합니다.

yum update
yum install libunwind libicu -y
yum install dotnet-sdk-2.0.0 -y
로그인 후 복사

3. dotnet이 성공적으로 설치되었는지 확인하고 버전을 확인합니다

dotnet --info
dotnet --version
로그인 후 복사

4. .net core2.0 환경을 테스트합니다

1. 홈 디렉터리에서 테스트 환경을 초기화하고 "hello world"를 출력합니다. 콘텐츠(테스트 방법 1, 무시 가능)

cd /home
dotnet new console -o hwapp
cd hwapp
dotnet run
로그인 후 복사

출력된 빈 콘텐츠는 다음과 같습니다.

[root@localhost hwapp]# dotnet run
hello world!
로그인 후 복사

2. 테스트를 위해 .net 코어의 인스턴스 페이지를 업로드합니다(테스트 방법 2, 권장)

centos는 .net 코어 아래에 있습니다. 2 환경 테스트 케이스 (/home 디렉터리 또는 사용자 지정 디렉터리에 업로드)

다운로드 주소:

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

다음 명령을 실행

cd /home/webapplication1
dotnet restore  //如果使过用测试方式一,就需先执行这命令重新加载一下当前新的网站文件
dotnet run
로그인 후 복사

실행 후 아래와 같이 :

Centos7系统下如何搭建.NET Core2.0+Nginx+Supervisor环境

ie를 통해 테스트 페이지 방문

Centos7系统下如何搭建.NET Core2.0+Nginx+Supervisor环境

5. asp.net 핵심 애플리케이션을 전달하기 위해 nginx 설치 및 구성

1. nginx 환경 설치

[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
로그인 후 복사

Enter: systemctl start nginx to nginx를 시작하세요.

[root@localhost ~]# systemctl start nginx
로그인 후 복사

Enter: systemctl에서 nginx를 활성화하여 nginx 시작 설정(Linux는 종료하고 다시 시작할 때 자동으로 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

[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系统下如何搭建.NET Core2.0+Nginx+Supervisor环境

에 액세스할 수 있는지 확인하세요. nginx에서 IE까지 자주 사용하는 운영 명령어

systemctl start nginx.service ​ ​

systemctl status nginx.service​​​​​​ #서비스 현재 상태 보기

systemctl restart nginx.service                           #서비스 재시작

systemctl 목록 -units –type=service                 # 시작된 모든 서비스 보기

4. 방화벽 구성(시스템에 방화벽이 있는 경우 규칙을 작성해야 함)

명령: Firewall-cmd –zone=public –add-port=80/tcp –permanent(포트 80 열기)

명령: systemctl restart Firewalld(구성이 즉시 적용되도록 방화벽을 다시 시작)

5. nginx를 asp.net으로 구성 핵심 애플리케이션 전달

/etc/nginx/conf 수정 .d/default.conf 파일.

파일 콘텐츠를

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. 테스트를 위해 dotnet 실행을 엽니다.

[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.
로그인 후 복사

ip 80 포트를 통해 액세스

6. Guardian 서비스를 구성합니다. 감독관)

Centos7系统下如何搭建.NET Core2.0+Nginx+Supervisor环境

현재 세 가지 문제가 있습니다

问题1:asp.net core应用程序运行在shell之中,如果关闭shell则会发现asp.net core应用被关闭,从而导致应用无法访问,这种情况当然是我们不想遇到的,而且生产环境对这种情况是零容忍的。

问题2:如果asp.net core进程意外终止那么需要人为连进shell进行再次启动,往往这种操作都不够及时。

问题3:如果服务器宕机或需要重启我们则还是需要连入shell进行启动。

为了解决这个问题,我们需要有一个程序来监听asp.net core 应用程序的状况。在应用程序停止运行的时候立即重新启动。这边我们用到了supervisor这个工具,supervisor使用python开发的。

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:如果服务已启动,修改配置文件可用“supervisorctl reload”命令来使其生效

3.配置对asp.net core应用的守护

创建一个 webapplication1.conf文件,内容大致如下

[root@localhost /]# vi webapplication1.conf
[program:webapplication1]
command=dotnet webapplication1.dll ; 运行程序的命令
directory=/home/webapplication1/ ; 命令执行的目录
autorestart=true ; 程序意外退出是否自动重启
stderr_logfile=/var/log/webapplication1.err.log ; 错误日志文件
stdout_logfile=/var/log/webapplication1.out.log ; 输出日志文件
environment=aspnetcore_environment=production ; 进程环境变量
user=root ; 进程执行的用户身份
stopsignal=int
로그인 후 복사

将文件拷贝至:“/etc/supervisor/conf.d/webapplication1.conf”下

[root@localhost /]#mkdir /etc/supervisor/conf.d
[root@localhost /]#cp webapplication1.conf /etc/supervisor/conf.d/
로그인 후 복사

运行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 进程则代表运行成功,这时候在使用浏览器进行访问。

Centos7系统下如何搭建.NET Core2.0+Nginx+Supervisor环境

至此关于asp.net core应用程序的守护即配置完成。

supervisor守护进程常用操作

【启动supervisord】
确保配置无误后可以在每台主机上使用下面的命令启动supervisor的服务器端supervisord
supervisord

【停止supervisord】
supervisorctl shutdown

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

七 、配置supervisor开机启动

新建一个“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/
로그인 후 복사

执行命令: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.
로그인 후 복사

执行命令:systemctl is-enabled supervisord #来验证是否为开机启动

[root@localhost /]# systemctl is-enabled supervisord
로그인 후 복사

重启系统看能否能成功访问

[root@localhost /]# reboot
로그인 후 복사

 Centos7系统下如何搭建.NET Core2.0+Nginx+Supervisor环境

위 내용은 Centos7 시스템에서 .NET Core2.0+Nginx+Supervisor 환경을 구축하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:yisu.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!