CentOS上搭建Nginx+Mono运行asp.net环境的配置方法
linux  /  管理员 发布于 7年前   318
安装步骤:
一、获取开源相关程序:
1、利用CentOS Linux系统自带的yum命令安装、升级所需的程序库:
sudo -sLANG=Cyum -y install gcc gcc-c++ autoconf libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel bison pkgconfig glib2-devel gettext make
2、下载程序源码包:
Nginx安装包:下载地址:http://nginx.org/en/download.html
mkdir -p /downcd /downwget http://nginx.org/download/nginx-1.1.11.tar.gz
Mono下载:官网:http://download.mono-project.com/sources/mono/(请下载最新版)
wget http://download.mono-project.com/sources/mono/mono-2.10.7.tar.bz2
libgdiplus下载:http://download.mono-project.com/sources/libgdiplus/(请下载最新版)
wget http://download.mono-project.com/sources/libgdiplus/libgdiplus-2.10.tar.bz2
xsp下载:http://download.mono-project.com/sources/xsp/(请下载最新版)
wget http://download.mono-project.com/sources/xsp/xsp-2.10.2.tar.bz2
pcre下载(Nginx所需的pcre库):ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/(请下最新版)
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.21.tar.gz
二、安装编译Nginx:
1、安装安装Nginx所需的pcre库:
cd /downtar zxvf pcre-8.21.tar.gzcd pcre-8.21/./configuremake && make installcd ../
2、创建www用户和组
/usr/sbin/groupadd www/usr/sbin/useradd -g www wwwmkdir -p /data0/webchmod +w /data0/webchown -R www:www /data0/web
3、安装Nginx
tar zxvf nginx-1.1.11.tar.gzcd nginx-1.1.11/./configure --user=www --group=www --prefix=/opt/nginx --with-http_stub_status_module --with-http_ssl_modulemake && make installcd ../
4、开放80端口:
iptables -I INPUT -p tcp --dport 80 -j ACCEPT启动nginx /opt/nginx/sbin/nginx
在浏览器上输入访问地址 http://192.168.1.1(根据个人本机地址页定),正常会看到默认nginx页面
三、安装编译Mono
1、安装libgdiplus:
cd /downtar -jxvf libgdiplus-2.10.tar.bz2cd libgdiplus-2.10./configure --prefix=/opt/mono make && make installecho "/opt/mono/lib" > /etc/ld.so.conf.d/mono.confldconfig
2、安装Mono:
tar Cjxvf mono-2.10.7.tar.bz2cd mono-2.10.7./configure --prefix=/opt/monomake && make install //此处时间较长echo export PKG_CONFIG_PATH=/opt/mono/lib/pkgconfig:$PKG_CONFIG_PATH>>~/.bash_profileecho export LD_LIBRARY_PATH=/opt/mono/lib:$LD_LIBRARY_PATH>>~/.bash_profileecho export PATH=/opt/mono/bin:$PATH>>~/.bash_profilesource ~/.bash_profile
输入 mono -V 如有mono版本信息,则安装成功.
3、安装XSP:
cd /downtar Cjxvf xsp-2.10.2.tar.bz2./configure --prefix=/opt/monomake && make install
四、配置Nginx
vi /opt/nginx/conf/nginx.conf
server { listen 80; server_name localhost; location / { root /data0/web; index index.html index.htm; fastcgi_index Default.aspx; fastcgi_pass 127.0.0.1:9000; include fastcgi_params; } }
五、配置fastcgi_params增加下面两行:
vi /opt/nginx/conf/fastcgi_paramsfastcgi_param PATH_INFO "";fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
六、启动:
1、重启nginx:
/opt/nginx/sbin/nginx -s reload
2、启动 fastcgi_mono服务器
fastcgi-mono-server2 /applications=/:/data0/web /socket=tcp:127.0.0.1:9000 &
七、测试:
新建一个asp.net web项目上传至 /data0/web目录下,测试运行。
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号