asp.net core 在Ubuntu 运行

Posted i祖林

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net core 在Ubuntu 运行相关的知识,希望对你有一定的参考价值。

环境:

  • Ubuntu 16.04
  • dotnet-dev-1.0.0-preview2-003121
  • Visual Studio 2015 update 3 

 

Ubuntu 安装.net core 参考:https://www.microsoft.com/net/core#ubuntu

  1.添加源

sudo sh -c \'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet/ xenial main" > /etc/apt/sources.list.d/dotnetdev.list\'
sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893
sudo apt-get update

 

 2.安装

sudo apt-get install dotnet-dev-1.0.0-preview2-003121

 

  3.把程序上传到 /home/zulin/dotnet 目录

发布

 

 


 运行 还原 并运行

dotnet coredemo.dll

  4.配置nginx 代理 

#安装
sudo apt-get install nginx

#配置
sudo nano /etc/nginx/sites-available/default #添加到后尾 server { # Port and domain listen 8080; server_name aspnet.local; # Path to the wwwroot folder root /home/zulin/dotnet/wwwroot; # Pass requests to Kestrel location / { proxy_pass http://127.0.0.1:5000; proxy_set_header Connection ""; proxy_http_version 1.1; } }

 

#重启服务
sudo service nginx restart

 

现在可以在浏览器上查看了

http://xxx.xxx.xxx.xxx:8080

 

以上是关于asp.net core 在Ubuntu 运行的主要内容,如果未能解决你的问题,请参考以下文章

在Linux上以服务的方式运行ASP.NET Core站点

ASP.NET Core:调用之间的空闲超时有延迟

部署到 Ubuntu 18.04 的 ASP.NET Core 3.0 应用程序抛出无法加载文件或程序集 System.Diagnostics.TraceSource

在 ASP.Net Core 应用程序启动期间运行异步代码

Linux系统(ubuntu)部署Asp.Net Core网站

Ubuntu 上对 ASP.NET Core Mvc进行 Docker 部署