首页 > 代码库 > ubuntu 跑.net core 2.0

ubuntu 跑.net core 2.0

安装.net core参考地址:http://www.microsoft.com/net/core/preview#linuxubuntu

服务器版本     UBbuntu  16.04

 

执行命令

sudo sh -c echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ xenial main" > /etc/apt/sources.list.d/dotnetdev.listsudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893sudo apt-get update

 

sudo apt-get install dotnet-sdk-2.0.0-preview2-006497

安装成功。

 

然后在服务器安装nginx,参考另一篇文章   http://www.cnblogs.com/xiaoquangege/p/7285967.html

 

创建一个服务文件  在目录

/etc/systemd/system/[服务文件名称].service

文件内容

[Unit]Description=Example .NET Web API Application running on Ubuntu[Service]WorkingDirectory=/var/网站目录ExecStart=/usr/bin/dotnet /var/网站目录/hellomvc.dllRestart=alwaysRestartSec=10  # Restart service after 10 seconds if dotnet service crashesSyslogIdentifier=dotnet-exampleUser=www-dataEnvironment=ASPNETCORE_ENVIRONMENT=Production [Install]WantedBy=multi-user.target

保存文件到服务里面

systemctl enable kestrel-hellomvc.service

启动这个服务

systemctl start kestrel-hellomvc.service

 参考地址:https://docs.microsoft.com/en-us/aspnet/core/publishing/linuxproduction

打开网站,linux浏览.net core网站就可以啦

ubuntu 跑.net core 2.0