欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

NetCore1.1+Linux部署初体验

程序员文章站 2023-11-09 13:27:52
netcore1.1+linux部署初体验 1.环境准备 centaos7+win10 虚拟机 win10安装vs2017 注意勾选下.net core 3.c...

netcore1.1+linux部署初体验

1.环境准备

centaos7+win10 虚拟机

win10安装vs2017 注意勾选下.net core

NetCore1.1+Linux部署初体验

3.centaos安装netcore 1.1参见

sudo yum install libunwind libicu
curl -ssl -o dotnet.tar.gz https://go.microsoft.com/fwlink/?linkid=848821
sudo 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

dotnet restore

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

dotnet run

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

NetCore1.1+Linux部署初体验

2.项目准备

1.我这边项目名称为: netcore.api

NetCore1.1+Linux部署初体验

NetCore1.1+Linux部署初体验

2.修改发布相关支持;

.net core彻底放弃project.json,全面改回.csproj

asp.netcore1.1版本去掉project.json后如何打包生成跨平台包

打开:netcore.api.csproj 添加发布支持runtimeidentifiers配置

<propertygroup>
 <runtimeidentifiers>win10-x64;centos.7-x64</runtimeidentifiers>
</propertygroup>

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

public static void main(string[] args)
 { 
 var host = new webhostbuilder()
 .usekestrel()
 .useurls("http://*:8088")
 .usecontentroot(directory.getcurrentdirectory())
 .useiisintegration()
 .usestartup<startup>()
 .useapplicationinsights()
 .build();

 host.run();
 }

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

NetCore1.1+Linux部署初体验

3.linux部署

进入上传的项目目录

NetCore1.1+Linux部署初体验

dotnet restore 命令进行还原依赖项

NetCore1.1+Linux部署初体验

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

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守护进程[/code]

NetCore1.1+Linux部署初体验

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

NetCore1.1+Linux部署初体验

ngiux配置(负载均衡下用)

ngiux安装

ngiux简单配置

NetCore1.1+Linux部署初体验

asp.netcore1.1版本去掉project.json后如何打包生成跨平台包

NetCore1.1+Linux部署初体验

netcore2.0体验参见:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。