安裝步驟:
一、獲取開源相關程序:
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 –jxvf 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 –jxvf 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目錄下,測試運行。
|
新聞熱點
疑難解答