CentOS上搭建Nginx + Mono 运行 asp.net
安裝步驟:
一、獲取開源相關程序:
1、利用CentOS Linux系統自帶的yum命令安裝、升級所需的程序庫:
sudo -sLANG=C
yum -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 /down
wget 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.bz2libgdiplus下載: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.bz2pcre下載(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.gz
cd pcre-8.21/
./configure
make && make install
cd ../ 復制代碼
2、創建www用戶和組
/usr/sbin/groupadd www/usr/sbin/useradd -g www www
mkdir -p /data0/web
chmod +w /data0/web
chown -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_module
make && make install
cd ../ 復制代碼
?
4、開放80端口:
iptables -IINPUT -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.bz2
cd libgdiplus-2.10
./configure --prefix=/opt/mono
make && make install
echo "/opt/mono/lib" > /etc/ld.so.conf.d/mono.conf
ldconfig 復制代碼
2、安裝Mono:
tar –jxvf mono-2.10.7.tar.bz2cd mono-2.10.7
./configure --prefix=/opt/mono
make && make install //此處時間較長
echo export PKG_CONFIG_PATH=/opt/mono/lib/pkgconfig:$PKG_CONFIG_PATH>>~/.bash_profile
echo export LD_LIBRARY_PATH=/opt/mono/lib:$LD_LIBRARY_PATH>>~/.bash_profile
echo export PATH=/opt/mono/bin:$PATH>>~/.bash_profile
source ~/.bash_profile 復制代碼
?輸入 mono -V 如有mono版本信息,則安裝成功.?
3、安裝XSP:
cd /downtar –jxvf xsp-2.10.2.tar.bz2
./configure --prefix=/opt/mono
make && 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 reload2、啟動 fastcgi_mono服務器
fastcgi-mono-server2 /applications=/:/data0/web /socket=tcp:127.0.0.1:9000 &?
七、測試:
新建一個asp.net web項目上傳至 /data0/web目錄下,測試運行。
總結
以上是生活随笔為你收集整理的CentOS上搭建Nginx + Mono 运行 asp.net的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: NodeBlog v0.1.0发布
- 下一篇: 转:Socket在阻塞模式下的信息收发和