Windows下打造完美的服务器平台(2)

时间:2008-10-23 17:47:00 

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 <options> <source files>
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 <path>       Specify where to find user class files
-sourcepath <path>     Specify where to find input source files
-bootclasspath <path>   Override location of bootstrap class files
-extdirs <dirs>       Override location of installed extensions
-d <directory>         Specify where to place generated class files
-encoding <encoding>     Specify character encoding used by source files
-source <release>       Provide source compatibility with specified release
-target <release>       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 文件,在最后面增加下面的内容:
LoadModule jk2_module modules/mod_jk2.so

在D:\Apache2\conf目录下新建一个workers2.properties文件,内容如下:
[shm]
info=Scoreboard. Requried for reconfiguration and status with multiprocess servers.
file=anon

# Defines a load balancer named lb. Use even if you only have one machine.
[lb:lb]

# Example socket channel, override port and host.
[channel.socket:localhost:8009]
port=8009
host=127.0.0.1

# define the worker
[ajp13:localhost:8009]
channel=channel.socket:localhost:8009
group=lb

# Map the Tomcat examples webapp to the Web server uri space
[uri:/examples/*]
group=lb

[status:]
info=Status worker, displays runtime information

[uri:/jkstatus/*]
info=The Tomcat /jkstatus handler
group=status:

如果懒得写代码,将该文件夹下面的workers2.properties.sample改成workers2.properties即可。
写一个JSP文件,内容如下:
<% out.println("Hello, world."); %>
保存放置在D:\tomcat\webapps\examples目录下,打开网页http://127.0.0.1/examples/index.jsp,就可以看到Hello, world.字样,这个效果和使用地址http://127.0.0.1:8080/examples/index.jsp看到的页面是一样的,说明Apache和Tomcat已经整合成功。
5,安装iASP2.1.01
安装过程iASP2.1.01会自动找到JDK的安装路径,所以安装过程很很是简单,我们将其安装在d:/Instant文件夹下面。

主要是后面的配置:
第一步:代理服务(proxy)选择:instant asp native servlet support
第二步:WEB SERVER选择:apache。(可以不管它提示)
第三步:选择apache的配置文件:httpd.conf的位置。我的为:D:\Program Files\Apache Group\Apache2\conf\\httpd.conf
版本选择2.X(根据您的apache版本选择)。
proxy:如果您有固定ip,添入您的固定ip。如果没有,那就添:127.0.0.1。
port: 这是apache与iasp之间的代理接口。使用默认(9098)即可。
server manager port:远程管理端口,选择默认(9095)即可。
第四步:配置完成。

配置完成以后,程序会自动在apache的配置文件httpd.conf最后加入了以下语句:


# iASP Setting
LoadModule iasp_module "d:/Instant/bin/apache/win32/2.0/iasp.dll"

Alias /iasp "d:/Instant"
IaspConfig server "d:/Instant/properties/server.properties"
IaspConfig rules "d:/Instant/properties/rules.properties"

通过更改httpd.conf更改apache的默认首页:

DirectoryIndex index.htm
DirectoryIndex index.php
DirectoryIndex index.asp

更改完毕后,保存,重启apache
执行:开始->程序->Instant ASP 2.1.01->Install iASP as NT Service
这样,iasp就被加到了win2000 server的服务中。

执行:开始->程序->Instant ASP 2.1.01->Start Instant ASP
这样,iasp就被立即打开。apache可以支持asp了!

从新启动Apache,发现如下:

这个主要是因为Iasp还不支持我们用的APACHE版本,问一个朋友要了一个支持apache_2.0.52的iasp.dll,替换d:/Instant/bin/apache/win32/2.0/iasp.dll,从新启动Apache成功,写一个ASP文件保存为index.asp.
<%
Response.Write "<BR><h1>Congradulations!<BR>Instant ASP has worked for you!</h1>"
%>
打开网页http://127.0.0.1/index.asp
出现:

这个iasp.dll不是很好,如果你希望在Apache安装ASP,建议使用Apache低一点的版本,使其有支持的iasp.dll文件.
三,组建自己的网站
1.安装vBulletin 3.0.3,去http://www.newvbb.com/下载NewvBB 团队中文化和功能修改后的NewvBB Core 1.1 Final (vBulletin 简体中文化插件版) 20040921。将得到的压缩包解压至F:\WEB\NEWVBB文件夹。打开http://127.0.0.1/phpmyadmin/index.php,新建一个mysql数据库newvbbcore,如图:

将 includes 目录下的 config.php.new 更名为 config.php,打开该文件夹,修改下面的内容为你自己的个人配置:
$servername = 'localhost';//你的IP地址
$dbusername = 'root';//mysql数据库用户名
$dbpassword = '';//mysql数据库密码
$dbname = 'newvbbcore';//刚刚建立的数据库
打开网页http://127.0.0.1/newvbb/install/install.php,进行安装。接下来就是简单的安装过程,直接点击下一步就可以完成NEWVBB的安装。安装完成以后根据提示删除如下文件:
install/install.php,就可以打开地址http://127.0.0.1/newvbb/index.php观看你的PHP论坛了。

2,安装leobbs CGI论坛
去http://www.leobbs.com/下载最新提供的版本LeoBBSX040926,下载完成后解压,将CGI-BIN文件夹下面的全部文件放置在F:\WEB\CGI-BIN文件夹下面。non-cgi文件夹下面的全部文件放置在F:\WEB\NON-CGI文件夹下面。打开网页:http://127.0.0.1/cgi-bin/install.cgi,就可以看到安装页面,注意下面的安装路径:

点击设定完毕完成LEOBBS的安装,打开网页http://127.0.0.1/cgi-bin/leobbs.cgi可以看见我们的CGI论坛:

3,安装JSP探针
由于JSP用得不是很,我也很少去关注这方面的代码,所以我们去http://xuyizhi.y365.com 下载怀才不遇 改写的JSP探针-V0.05测试结果,将其放置在D:\tomcat\webapps\examples下面,取名为jspchexk.jsp。打开网页http://127.0.0.1/examples/jspcheck.jsp,得到如下的页面:

至此,我们已经完成了JSP的全部安装工作。

标签:服务器,windows,软件,php,mysql,jsp
0
投稿

猜你喜欢

  • PCadvisor:苹果设计史上16个梦幻产品设计

    2009-11-07 08:14:00
  • PHPWind v7.3.2好友个人空间中相册链接错误

    2009-05-31 17:15:00
  • .htaccess rewrite 规则详细说明

    2023-07-27 00:15:51
  • 如何利用404错误页面引导流量、吸引点击

    2009-02-05 03:08:00
  • Linux nohup实现后台运行程序及查看(nohup与&)

    2023-06-29 20:35:13
  • 王月章:做好网站推广应该把握几个基本点

    2009-04-07 13:25:00
  • 网站粘度从哪些方面考虑

    2007-09-19 13:15:00
  • 站长需要有基本的矜持:广告不是这么卖的

    2007-09-19 13:08:00
  • 网赚贵在坚持

    2010-05-10 14:18:00
  • dedeCMS站内搜索代码的改进

    2010-01-16 17:25:00
  • 开源网页服务器Lighttpd再爆漏洞 影响所有版本

    2011-12-02 12:46:20
  • 站长浅谈:WordPress博客怎样轻松搬家

    2009-08-30 15:00:00
  • 关键词优化的研究要观念先行

    2008-12-23 14:52:00
  • 关于搜索引擎收录量的问题

    2008-07-15 07:30:00
  • 如何计算GoDaddy空间的流量使用

    2010-04-10 12:45:00
  • 打造企业的核心需求 看商业博客营销优点

    2009-02-02 10:06:00
  • 一行代码杜绝iframe挂马

    2007-12-23 17:18:00
  • 如何避免你的Adsense帐号被锁定的技巧

    2009-01-23 13:16:00
  • 建站攻略——如何用动易构建自己的网站

    2009-02-13 18:10:00
  • apache伪静态与iis伪静态规则与配置区别介绍

    2023-08-25 21:43:20
  • asp之家 网站运营 m.aspxhome.com