详解ASP.NET Core 网站发布到Linux服务器
长期以来,使用.net开发的应用只能运行在windows平台上面,而目前国内蓬勃发展的互联网公司由于成本的考虑,大量使用免费的linux平台,这就使得.net空有一身绝技但无法得到广大的施展空间,.net平台被认为只适合开发企业内部应用系统。
2016年6月27日,微软正式发布.net core 1.0、asp.net 1.0和entity framework core 1.0,通吃 windows、os x和linux三大操作系统。.net core作为新一代跨平台、开源的.net平台备受瞩目,有人说,.net程序员的春天来了。
本文将介绍如何把asp.net core的网站发布到linux服务器上。
环境准备
本文用到的操作系统和软件版本如下:
- visual studio 2017企业版
- .net core 1.1
- centos 7 x64
创建发布asp.net core网站项目
1.创建项目
打开vs2017,新建项目,选择asp.net core web应用程序(.net core)
选择web应用程序模板。
直接f5测试网站是否正常。
2.增加url网址配置文件
项目默认使用http://localhost:5000的url进行侦听,我们可以增加一个配置文件来随时修改url地址。
在项目根目录中增加一个hosting.json文件,文件内容如下(192.168.57.7是服务器ip):
{ "server.urls": "http://192.168.57.7:8080" }
编辑program.cs文件,修改为内容如下:
public static void main(string[] args) { var config = new configurationbuilder() .setbasepath(directory.getcurrentdirectory()) .addjsonfile("hosting.json", optional: true) .build(); var host = new webhostbuilder() .usekestrel() .useconfiguration(config) .usecontentroot(directory.getcurrentdirectory()) .useiisintegration() .usestartup<startup>() .useapplicationinsights() .build(); host.run(); }
3.发布项目
右键项目-发布,选择文件夹模式。
把发布的publishoutput文件夹压缩成zip格式,上传到centos服务器。
安装.net core
1.下载最新的.net core版本
官网下载地址:
我使用的版本是dotnet-centos-x64.1.1.1.tar.gz。
2.上传并解压下载的安装文件。
$ # 创建dotnet文件夹 $ mkdir ~/dotnet $ # 复制dotnet安装文件到dotnet文件夹下 $ cp dotnet-centos-x64.1.1.1.tar.gz ~/dotnet $ # 解压安装文件 $ tar -xzf ~/dotnet/dotnet-centos-x64.1.1.1.tar.gz $ # 添加软连接,可以在全局使用 $ ln -s ~/dotnet/dotnet /usr/local/bin $ # 测试安装是否成功,成功会显示版本号 $ dotnet –version
启动网站
$ #解压之前上传的网站压缩文件,如果没有安装unzip,运行yum install -y unzip zip安装 $ unzip ~/dotnet/publishoutput.zip $ #先关闭防火墙 $ systemctl stop firewalld.service $ #启动网站 $ cd publishoutput $ dotnet testaspnetcoreweb.dll $ 如果报错failed to bind to coreclr,运行yum install -y libunwind
启动成功,可以访问http://192.168.57.7:8080打开了。
安装配置守护进程(supervisor)
使用supervisor对asp.net core网站应用进行监控,使网站可以持续运行,不然退出shell后网站就停止了。
$ # 安装supervisor $ yum install python-setuptools $ easy_install supervisor $ #配置supervisor $ mkdir /etc/supervisor $ echo_supervisord_conf > /etc/supervisor/supervisord.conf
修改supervisord.conf文件,将文件最后的内容修改如下:
创建目录conf.d,在目录下创建文件testaspnetcoreweb.conf
文件内容如下:
[program:testdotnetcoreweb] command=dotnet testaspnetcoreweb.dll directory=~/dotnet/publishoutput autorestart=true stderr_logfile=/var/log/testdotnetcoreweb.err.log stdout_logfile=/var/log/testdotnetcoreweb.out.log environment=aspnetcore_environment=production user=root stopsignal=int
运行supervisord并查看进程是否生效。
$ supervisord -c /etc/supervisor/supervisord.conf $ ps -ef | grep testdotnetcoreweb
配置文件如有修改,使用命令supervisorctl reload重新加载。
安装配置nginx
访问
下载合适版本的epel,并上传到服务器。
如:
$ #安装epel $ rpm -ivh epel-release-7-9.noarch.rpm $ #安装nginx $ yum install nginx $ #启动nginx $ systemctl start nginx $ #将nginx添加至selinux的白名单,否则会报502错误。 $ yum install policycoreutils-python $ cat /var/log/audit/audit.log | grep nginx | grep denied | audit2allow -m mynginx $ semodule -i mynginx.pp $ #测试nginx是否正常 $ curl http://127.0.0.1
修改配置文件/etc/nginx/nginx.conf中server部分为以下内容,配置nginx侦听之前的网站。
server { listen 80 ; location / { proxy_pass http://192.168.57.7:8080; 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; } error_page 404 /404.html; location = /40x.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } }
$ #修改完后重新加载配置文件 $ nginx -s reload
配置完成后即可使用http://192.168.57.7访问网站。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Photoshop 一头可爱的卡通小牛仔
下一篇: Photoshop 漂亮的彩色气泡效果
推荐阅读
-
详解ASP.NET Core 网站发布到Linux服务器
-
ASP.NET Core程序发布到Linux生产环境详解
-
ASP.NET Core程序发布到Linux生产环境详解
-
详解ASP.NET Core 网站发布到Linux服务器
-
详解Asp.Net Core 发布和部署( MacOS + Linux + Nginx )
-
ASP.NET Core 发布到Linux需要注意的地方
-
将网站发布到阿里云的Linux服务器上(简述)
-
Asp.Net Core2.0获取客户IP地址,及解决发布到Ubuntu服务器获取不到正确IP解决办法
-
ASP.NET Core 网站发布到Linux服务器
-
ASP.NET Core 发布到Linux需要注意的地方