服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|

服务器之家 - 服务器系统 - Centos - CentOS 5.1下跑Mono和Asp.net的实现方法分享

CentOS 5.1下跑Mono和Asp.net的实现方法分享

2021-04-14 02:00CentOS教程网 Centos

由于想研究在linux下跑.net程序的可行性,于是尝试在CentOS5.1下搭建Mono环境和Asp.Net的服务器。Asp.Net的服务器是采用mod_mono和Apache的方式搭建(Nginx的搭建尚未研究)

下载编译环境:
yum install gcc bison pkgconfig glib2-devel gettext make httpd-devel gcc-c++ libstdc++-devel

下载并解压源代码:
wget http://ftp.novell.com/pub/mono/sources/mono/mono-2.6.3.tar.bz2
wget http://ftp.novell.com/pub/mono/sources/mod_mono/mod_mono-2.6.3.tar.bz2
wget http://ftp.novell.com/pub/mono/sources/xsp/xsp-2.6.3.tar.bz2
tar -jxvf mono-2.6.3.tar.bz2
tar -jxvf xsp-2.6.3.tar.bz2
tar -jxvf mod_mono-2.6.3.tar.bz2

安装mono环境:
cd /root/mydir/mono-2.6.3
./configure --prefix=/opt/mono; make ; make install
echo export PKG_CONFIG_PATH=/opt/mono/lib/pkgconfig:$PKG_CONFIG_PATH>>~/.bash_profile
echo export PATH=/opt/mono/bin:$PATH>>~/.bash_profile
source ~/.bash_profile

安装xsp:
cd /root/mydir/xsp-2.6.3
./configure --prefix=/opt/mono; make ; make install

安装mod_mono:
先用find / -iname apr*config命令查找出“--with-apr-config=/usr/bin/apr-1-config”(不知道--with-apr-config=/usr/bin/apr-1-config有什么用,好像不要也可以,麻烦知道的告诉一下小弟)
再执行下面的命令:
cd /root/mydir/mod_mono-2.6.3
./configure --prefix=/opt/mono --with-mono-prefix=/opt/mono --with-apr-config=/usr/bin/apr-1-config; make ; make install
cp /etc/httpd/conf.d/ /etc/httpd/conf/mod_mono.conf

selinux阻止了httpd对mod-mono-server的访问,所以执行下面的语句:
setsebool -P httpd_disable_trans=1

重启httpd服务器:
service httpd restart

在防火墙中开启80端口,允许同一个Lan的其他机器访问:
方法1.在不使用图形界面工具的时候,通过关闭防火墙来实现允许开放80端口
service iptables stop
(PS:我尝试过下面的方法,
vi /etc/sysconfig/iptables
添加:-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
service iptables restart
虽然在iptables -L中看到http
但无法从其他机器访问该服务器。
如果有谁成功,请告知小弟):

方法2.在安装有图形界面工具的情况下,用startx进入图形界面,用“Security Level and Firewall”开启80端口。

安装libgdiplus(xsp的测试页面中,有很多都需要libgdiplus):
yum install httpd build-essential gcc bzip bison pkgconfig glib-devel \
glib2-devel httpd-devel libpng-devel libX11-devel freetype fontconfig \
pango-devel ruby ruby-rdoc gtkhtml38-devel wget
wget http://ftp.novell.com/pub/mono/sources/libgdiplus/libgdiplus-2.6.2.tar.bz2
tar -jxvf libgdiplus-2.6.2.tar.bz2
cd /root/mydir/libgdiplus-2.6.2
./configure
make ; make install
echo export LD_LIBRARY_PATH=/usr/local/lib/:$LD_LIBRARY_PATH >>~/.bash_profile
source ~/.bash_profile

vi /opt/mono/etc/mono/config
添加节点:<dllmap dll="gdiplus.dll" target="/usr/lib/libgdiplus.so.0" />
否则会出现DllNotFoundException的异常。

测试:
一、测试mono
a.运行mono -V输出:
Mono JIT compiler version 2.6.3 (tarball Fri Apr 2 06:13:46 CST 2010)
Copyright (C) 2002-2010 Novell, Inc and Contributors. http://www.mono-project.com/
TLS: __thread
GC: Included Boehm (with typed GC and Parallel Mark)
SIGSEGV: altstack
Notifications: epoll
Architecture: x86
Disabled: none
b.运行mono-test-install输出:
Active Mono: /opt/mono/bin/mono
Your have a working System.Drawing setup
Your file system watcher is: System.IO.InotifyWatcher

二、测试Asp.Net服务器
a.测试是否能够执行aspx:
在/var/www/html/目录下建一个test.aspx页面,内容为
<%="Hello World!"%>
通过wget http://localhost/test.aspx来下载该页面的内容。

b.测试同一个Lan下其他机器能否访问:
用其他机器的浏览器打开http://ip/test.aspx

c.跑xsp自带的测试程序(多点几个页面,查看是否会出现gdiplus.dll DllNotFoundException的一场):
1.修改Apache的配置,开放防火墙8080端口
Listen 8080
NameVirtualHost *:8080
<VirtualHost *:8080>
ServerAdmin hlfstephen@gmail.com
DocumentRoot /var/www/test/
ServerName local.mydomain.com
ErrorLog logs/local.mydomain.com-error_log
CustomLog logs/local.mydomain.com common
</VirtualHost>
2.复制/opt/mono/lib/xsp/test目录到var/www/下
3.service httpd restart
4.用浏览器打开http://ip:8080/

参考:
http://blog.rubypdf.com/2009/10/23/how-to-install-mono-2-4-2-3-on-centos-5/
http://blog.rubypdf.com/2009/10/23/how-to-install-xsp-and-integrate-xsp-with-apache-2-under-centos-5/
http://blog.bennyland.com/2010/02/06/serving-asp-net-pages-in-apache-on-centos-5/
http://mingster.com/site/?q=content/mono-2x-centos-5
http://mono-project.com/DllNotFoundException
http://mono-project.com/Config_DllMap

转载请保留链接: CentOS 5.1下跑Mono和Asp.net的实现方法

延伸 · 阅读

精彩推荐
  • CentosCentOS系统中跟踪高IO等待详解

    CentOS系统中跟踪高IO等待详解

    高IO等待问题的第一个征兆通常是系统平均负载,负载均衡的计算都是基于CPU利用率的,即使用或等待CPU的进程数目。今天小编为大家带来的是CentOS系统中...

    服务器之家2662019-06-15
  • CentosCentOS文件查看及编辑介绍详解

    CentOS文件查看及编辑介绍详解

    今天小编将为大家带来CentOS文件查看及编辑介绍详解;希望对大家会有帮助,有需要的朋友一起去看看吧...

    1982019-06-15
  • Centoscentos 6.4 使用epel 源的方法

    centos 6.4 使用epel 源的方法

    这篇文章主要介绍了centos 6.4 使用epel 源的方法,需要的朋友可以参考下 ...

    centos教程网3572019-10-12
  • CentosCentos使用文件来实现swap的功能

    Centos使用文件来实现swap的功能

    今天小编为大家带来的是Centos使用文件来实现swap的功能;有需要的朋友可以过来看看,希望对大家会有帮助...

    www.zzvips.com3802019-06-29
  • CentosCentOS怎么无法连通端口?解决CentOS无法连通端口的方法

    CentOS怎么无法连通端口?解决CentOS无法连通端口的方法

    最近在搭建一个CentOS服务时,发现22端口总是不可用,而且Windows Telnet 22端口无法通;这是什么情况,如何解决呢?下面小编将为大家带来解决CentOS无法连通...

    服务器之家5292019-06-20
  • Centos如何配置Centos 6.5 的yum源?

    如何配置Centos 6.5 的yum源?

    如何配置Centos,6.5,的yum源?Linux系统一定会用到一个源安装软件库无论是使用哪一个版本的,下面我与大家分享一下如何配置Centos 6.5 的yum源,需要的朋友可...

    百度经验7472019-09-24
  • Centoscentos7怎么安装 centos7安装步骤

    centos7怎么安装 centos7安装步骤

    centos 7安装教程来咯~如果你不了解centos7怎么安装的话可以参考下文,下文提供了centos 7安装的一些技巧,希望能帮助到有需要的朋友 ...

    脚本之家3662019-09-25
  • CentosCentOS用户账号管理详解

    CentOS用户账号管理详解

    今天小编将为大家带来的是CentOS用户账号管理详解;希望对大家会有帮助,有需要的朋友一起去看看吧...

    CentOS之家5542019-06-15