NetCore1.1+Linux部署初体验

1.环境准备

  1. Centaos7+Win10 虚拟机

  2. Win10安装VS2017 h tt p s :  / / w w w . a s p . n e t / d o w n l o a d s 注意勾选下.Net Core

  NetCore1.1+Linux部署初体验

  3.Centaos安装netcore 1.1参见https://www.microsoft.com/net/core#linuxcentos

sudo yum install libunwind libicu
curl -sSL -o dotnet.tar.gz https://go.microsoft.com/fwlink/?linkid=848821sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet
sudo ln -s /opt/dotnet/dotnet /usr/local/bin

NetCore1.1+Linux部署初体验


dotnet new console -o hwapp
cd hwapp

NetCore1.1+Linux部署初体验

NetCore1.1+Linux部署初体验

dotnet restore
主要是寻找当前目录下的项目文件,然后利用NuGet库还原整个项目的依赖库,然后遍历每个目录,生成项目文件,继续还原该项目文件中的依赖项;
dotnet run

如果是交互的就直接运行,否则编译然后执行

[object Object]

NetCore1.1+Linux部署初体验

 

2.项目准备

1.我这边项目名称为: NetCore.Api

NetCore1.1+Linux部署初体验

 

NetCore1.1+Linux部署初体验

2.修改发布相关支持;

  .NET Core彻底放弃project.json,全面改回.csproj

     http://www.cnblogs.com/wangrudong003/p/6591104.html

  打开:NetCore.Api.csproj 添加发布支持 RuntimeIdentifiers配置

  <PropertyGroup>
<RuntimeIdentifiers>win10-x64;centos.7-x64</RuntimeIdentifiers>
</PropertyGroup>

3.打开Program.cs修改端口支持

NetCore1.1+Linux部署初体验

 public static void Main(string[] args)
        { 
            var host = new WebHostBuilder()
                .UseKestrel()                .UseUrls("http://*:8088")
                .UseContentRoot(Directory.GetCurrentDirectory())
                .UseIISIntegration()
                .UseStartup<Startup>()
                .UseApplicationInsights()
                .Build();

            host.Run();
        }

NetCore1.1+Linux部署初体验

4.编译运行没有问题,通过WinSCP上传到Centaos7服务器上

NetCore1.1+Linux部署初体验

3.Linux部署

进入上传的项目目录

NetCore1.1+Linux部署初体验

dotnet restore 命令进行还原依赖项

 

[object Object]

还原完成后,发布项目文件

dotnet  publish

NetCore1.1+Linux部署初体验

复制发布后的文件到运行文件夹

cp -rf /home/xupp/website/bin/Debug/netcoreapp1.1/publish/ /home/xupp/web.test/

 

NetCore1.1+Linux部署初体验

NetCore1.1+Linux部署初体验

运行项目

nohup dotnet NetCore.Api.dll
只是做测试用,正式环境下可以使用Supervisor守护进程

 

NetCore1.1+Linux部署初体验

外网测试看能否访问,不能访问的话先用dotnet NetCore.Api.dll运行,并检查防火墙配置

NetCore1.1+Linux部署初体验

Ngiux配置(负载均衡下用)

Ngiux安装http://www.linuxidc.com/Linux/2016-09/134907.htm

Ngiux简单配置

NetCore1.1+Linux部署初体验

http://www.cnblogs.com/wangrudong003/p/6591104.html

NetCore1.1+Linux部署初体验


本文转自  zddnd  51CTO博客,原文链接:http://blog.51cto.com/13013666/1940125
上一篇:金融企业从自建MySQL数据库迁移RDS方案


下一篇:【云周刊】第198期:阿里云推出全栈IPv6解决方案,加速推进下一代互联网应用