Centos7部署.NetCore3.1

本文档详细介绍了在Centos7上部署.NET Core 3.1的步骤,包括注册微软签名密钥、安装SDK以及发布项目的操作。在部署过程中遇到的HttpRequest异常,主要是Consul地址配置错误,解决办法是确保Consul地址指向正确。在修正地址后,又出现因配置信息来源问题导致的新异常,提示内部服务器错误,需要通过命令行参数或appsettings.json文件传递配置信息。
摘要由CSDN通过智能技术生成

## Centos7部署.NetCore3.1 ##

1、注册微软签名密码密钥及微软相关支持

    *向微软提交,表明要用core*
    sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc

2、安装指定版本
    
    *安装SDK版本*
    sudo yum install netcore-sdk-3.1

3、将项目发布并拷贝至centos中
    
    1、选定项目,右键发布

    2、拷贝至centos文件夹中

    3、执行命令"dotnet xxx.dll"
        如项目带输入参数,在dll后输入即可
        "dotnet xxx.dll --name xx --env xx"

由于个人项目中设计的HttpRequest,执行时报如下异常
    
    *原因:Consul地址不对,应指向consul地址*

    Unhandled exception.System .Net.Http,HttpRequestException: Connection refused
    ---> System.Net.Sockets.SocketException (111): Connect ion refused
    at System.Net .Http . ComnectHe lper . CommectAsync (String host, Int32 port,Cance1lationToken cancella
    tionToken)--- End of inner exception stack trace
    at Syst

Centos7发布说明 环境说明: 服务器系统:CentOS 7.2.1511 相关工具:Xshel、Xftp 服务器软件软件:.netcore、nginx、supervisor 准备好发布的程序 安装.NET Core SDK for CentOS7 打开网址:https://www.microsoft.com/net/core#linuxcentos 复制如下命令,单步执行: sudo yum install libunwind libicu curl -sSL -o dotnet.tar.gz https://go.microsoft.com/fwlink/?LinkID=835019 sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet sudo ln -s /opt/dotnet/dotnet /usr/local/bin 输入 dotnet –info 来查看是否安装成功 配置Nginx 下载安装Nginx,单步执行如下命令: curl -o nginx.rpm http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm rpm -ivh nginx.rpm yum install nginx systemctl start nginx 来启动nginx systemctl enable nginx 来设置nginx的开机启动(linux宕机、重启会自动运行nginx不需要连上去输入命令)。 配置防火墙 命令:firewall-cmd --zone=public --add-port=80/tcp --permanent(开放80端口) 命令:systemctl restart firewalld(重启防火墙以使配置即时生效) 测试nginx是否可以访问。 配置nginx对ASP.NET Core应用的转发 修改 /etc/nginx/conf.d/default.conf 文件,将文件内容替换为: server { listen 80; location / { proxy_pass http://localhost:5000; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection keep-alive; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值