
记录在CentOS7 下 .NetCore+Nginx 部署简单过程,供参考。
安装DotNet SDK 官方文档
添加镜像订阅
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-prod\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/dotnetdev.repo'
安装SDK
sudo yum install libunwind libicu
sudo yum install dotnet-sdk-2.1.3
查看安装
dotnet--version
上传站点 官方文档
psftp[主机地址]putD:\website.7z
解压文件,使用的是 p7zip
7za x website.7z
创建服务
vi /etc/systemd/system/website.service
[Unit]Description=Web API Application running on CentOS[Service]WorkingDirectory=/home/websiteExecStart=/usr/bin/dotnet /home/website/website.dllRestart=alwaysRestartSec=10 # Restart service after 10 seconds if dotnet service crashesSyslogIdentifier=websiteUser=rootEnvironment=ASPNETCORE_ENVIRONMENT=ProductionEnvironment=DOTNET_PRINT_TELEMETRY_MESSAGE=false[Install]WantedBy=multi-user.target
启动服务
systemctl start website systemctl enable website
测试站点
curllocalhost:8010
安装Nginx
yum install -y nginx
启动,测试
systemctl start nginx nginx -v
修改配置文件
cd /etc/nginx
vi /etc/nginx/conf.d/vhost_website.conf
server {
server_name [test.xxx.com];
root /home/website;
location / {
proxy_pass http://localhost:8010;
}
}
重新加载
systemctl restart nginx
浏览器打开
http://[test.xxx.com]
其它异常
1.Unable to bind to http://localhost:5000 on the IPv6 loopback interface: ‘Error -99 EADDRNOTAVAIL address not available’.
添加hosting.json
{
"server.urls": "http://*:8010"}
修改Program
publicstaticvoidMain(string[] args)
{
var config = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("hosting.json", optional: true)
.Build();
WebHost.CreateDefaultBuilder(args)
.UseConfiguration(config)
.UseStartup<Startup>()
.Build()
.Run();
}
文章来源网络,作者:运维,如若转载,请注明出处:https://shuyeidc.com/wp/201022.html<