1. 将所有的软件包都复制到/usr/src/soft/ 目录下,并解包。 2. 安装openssl cd /usr/src/soft/openssl0.9.7 ./config -fPIC no-threads make make test make install 3.安装 mm cd /usr/src/soft/mm-1.2.1 ./configure –disable-shared make 4.安装 mod_ssl ./configure –with-apache=/usr/src/soft/apache1.3.27 5.安装apache cd /usr/src/soft/apache1.3.27 cp –af ../fp-patch-apache1.3.22 ./ patch –p0 ./configure --enable-module=ssl --enable-shared=ssl --enable-module=so --enable-rule=SHARED_CORE --add-module=mod_frontpage.c make make certificate TYPE=custom make install 6.安装mod_perl cd /usr/src/soft/mod_perl1.27 perl Makefile.PL EVERYTHING=1 USE_DSO=1 DO_HTTPD=1 WITH_APXS=/usr/local/apache/bin/apxs Make Make install 7.安装FrontPage extension vi /usr/local/apache/conf/httpd.conf 将DocumentRoot 的AllowOverride None 改为All 将servername前面的#去掉 cd /usr/src/soft/frontpgae/version5.0 ./fp-install.sh cd /usr/local/apache/bin/ cp –af httpd.orig httpd 在/usr/local/apache/conf/httpd.conf中加入以下文字 Options None AllowOverride All Order allow,deny Allow from all
8.安装 Apache::ASP perl -MCPAN -e shell 提问是否手动配置cpan,选否 cpan>install Bundle::Apache::ASP cpan>exit cd /root/.cpan/build/Apache-ASP2.50 perl Makefile.PL make make test make install 在httpd.conf中加入以下文字 SetHandler perl-scirpt PerlModule Apache::ASP PerlHandler Apache::ASP PerlSetvar Global . PerlSetVar StateDir /tmp/asp