新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
CentOS7 下部署 .Net Core+Nginx
記錄在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上傳站點(diǎn) 官方文檔
psftp [主機(jī)地址]
put D:\website.7z解壓文件,使用的是 p7zip
7za x website.7z創(chuàng)建服務(wù)
vi /etc/systemd/system/website.service[Unit]
Description=Web API Application running on CentOS
[Service]
WorkingDirectory=/home/website
ExecStart=/usr/bin/dotnet /home/website/website.dll
Restart=always
RestartSec=10 # Restart service after 10 seconds if dotnet service crashes
SyslogIdentifier=website
User=root
Environment=ASPNETCORE_ENVIRONMENT=Production
Environment=DOTNET_PRINT_TELEMETRY_MESSAGE=false
[Install]
WantedBy=multi-user.target啟動服務(wù)
systemctl start website systemctl enable website測試站點(diǎn)
curl localhost:8010安裝Nginx
yum install -y nginx啟動,測試
systemctl start nginx nginx -v修改配置文件
cd /etc/nginx
vi /etc/nginx/conf.d/vhost_website.confserver {
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
public static void Main(string[] args)
{
var config = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("hosting.json", optional: true)
.Build();
WebHost.CreateDefaultBuilder(args)
.UseConfiguration(config)
.UseStartup()
.Build()
.Run();
}
當(dāng)前名稱:CentOS7 下部署 .Net Core+Nginx
分享URL:http://www.dlmjj.cn/article/dpjgped.html


咨詢
建站咨詢
