快捷搜索:  

打造WIN下完美全能服务器(APACHE+JSP+CGI+PHP+ASP+MYSQL)(2)


3.安装mysql-5.0.1-alpha-snapshot-win
很简单,不多说了。我们假设把它安装在D:\mysql目录下,打开该目录下的bin文件夹,运行winmysqladmin.exe配置mysql
输入管理员的用户名和密码就可以了。
以后每次启动,都可以在服务里面看到MYSQL进程已经打开。
4,安装phpMyAdmin-2.6.0-pl2
phpadmin不需要安装,直接COPY到网页目录下即可,将其命名为phpadmin。打开C:\Windows/php.ini文件, 查找 extension=php_mysql.dll 字串.删除掉前面的 ; 号extension=php_mysql.dll,启动 PHP 对 MYSQL 模块支持.
打开phpmyadmin文件夹下面的config.inc.php3文件,定位到下面的内容:
$cfg['Servers'][$i]['host']       = 'localhost'; // MySQL hostname or IP address
$cfg['Servers'][$i]['auth_type']   = 'config';   // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user']       = 'root';     // MySQL user
$cfg['Servers'][$i]['password']     = '';       // MySQL password (only needed
                                  // with 'config' auth_type)
将host,user和password修改成你自己的IP地址,用户和密码,打开网页http://127.0.0.1/phpmyadmin/index.php,如果可以看到下面的页面,恭喜你,安装成功了。
5,安装ActivePerl-5.8.4.810-MSWin32-x86
安装过程很简单,一路NEXT就可以了。我们将其安装在D:\usr下面,注意,ActivePerl-5.8.4.810-MSWin32-x86默认的根目录是Perl文件夹,按照国际上面的惯例,最好是usr作我根目录,以免在以后调试程序时候出现麻烦。
配置Apache让其支持CGI和PL文件。用记事本打开 D:\Apache2\conf\ (我这里是按照默认安装路径安装,后面的设置按照自己的安装路径做相应的改变) 目录下的 httpd.conf 文件,寻找
#ScriptAlias /cgi-bin/ "D:/Apache/cgi-bin/"
把前面的#号去掉 ,把D:/Apache/cgi-bin/新开为你需要支持CGI程序的目录,我设置的是f:/Web/cgi-bin。
寻找
同样,也修改为f:/Web/cgi-bin
寻找
AddHandler cgi-script .cgi
后面加上.pl ,即 AddHandler cgi-script .cgi .pl
OK,自己写个CGI程序测试一下:
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "Hello, World.";
保存为hello.cgi,放置在F:\WEB\CGI-BIN文件夹下面,使用浏览器打开http://127.0.0.1/cgi-bin/hello.cgi,出现如下的页面,安装成功。
6,安装j2sdk-1_4_2-windows-i586
由于安装tomcat前需要安装j2sdk,所以要先安装j2sdk-1_4_2-windows-i586,过程很简单,安装到D:\j2sdk文件夹。
设置环境变量,
JAVA_HOME = D:\j2sdk
在Path最后附加:
Path = ......;%JAVA_HOME%\bin
打开CMD,输入java –version,显示下面的内容
java version "1.4.2"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-b28)
Java HotSpot(TM) Client VM (build 1.4.2-b28, mixed mode)
输入javac,显示:
C:\Documents and Settings\lin>javac
Usage: javac 
where possible options include:
-g                 Generate all debugging info
-g:none             Generate no debugging info
-g:{lines,vars,source}   Generate only some debugging info
-nowarn             Generate no warnings
-verbose             Output messages about what the compiler is doing
-deprecation         Output source locations where deprecated APIs are us
ed
-classpath
       Specify where to find user class files
-sourcepath
     Specify where to find input source files
-bootclasspath
   Override location of bootstrap class files
-extdirs        Override location of installed extensions
-d          Specify where to place generated class files
-encoding      Specify character encoding used by source files
-source        Provide source compatibility with specified release
-target        Generate class files for specific VM version
-help               Print a synopsis of standard options
表示JAVAC也安装成功。
7.安装jakarta-tomcat-4.1.31
jakarta-tomcat不需要安装,下载压缩包以后直接解压到D:\TOMCAT目录下,设置环境变量
TOMCAT_HOME =D:\TOMCAT
打开D:\tomcat\bin目录下的startup.bat启动tomcat,如果出现下图的状态,表示启动成功。如图:
使用MYIE打开 http://127.0.0.1:8080/index.jsp,可以看到如下的页面,再次恭喜你,tomcat也安装成功。tomcat默认的HTTP端口和用户名可以去D:\tomcat\conf目录下修改server.xml和tomcat-user.xml文件。
整合Apache和Tomcat。用记事本打开 D:\Apache2\conf\ 目录下的 httpd.conf 文件,在最后面增加下面的内容:
顶(0)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论