Home Backend Development PHP Tutorial 在WindowsNT4.0下安装Apache + Servlet + JSP_PHP

在WindowsNT4.0下安装Apache + Servlet + JSP_PHP

Jun 01, 2016 pm 12:35 PM
apache c tomcat Install document Serve Table of contents

ApacheservletWindows NT

版本:1.0
作者:何志强(hhzqq@sina.com)
时间:2000.03.16

本文只讨论如何在Windows NT 4.0上安装Apache+Servlet+JSP。
本文中的配置情况如下:
  Windows NT 4.0
  jdk1_2_2-001-win.exe
  apache_1_3_12_win32.exe
  ApacheModuleJServ.dll
  tomcat.zip(3.0)
一、软件下载
  JDK
    http://java.sun.com/products/jdk/1.2/
  Apache Server
    http://www.apache.org/dist/binaries/win32/apache_1_3_12_win32.exe
  Apache JServ
    http://jakarta.apache.org/builds/tomcat/release/v3.0/win32/ApacheModuleJServ.dll
  Tomcat
    http://jakarta.apache.org/builds/tomcat/release/v3.0/tomcat.zip
二、软件安装
  (一)JDK
    1、双击jdk1_2_2-001-win.exe文件进行安装,使用缺省配置进行安装,JDK的缺省安装目录为
      C:\jdk1.2.2,JRE的缺省安装目录为C:\Program Files\JavaSoft\JRE\1.2;
    2、重启计算机;
    3、更新下列环境变量:把C:\jdk1.2.2\bin目录追加到PATH中;把
      .;C:\jdk1.2.2\lib\tools.jar;C:\jdk1.2.2\lib\dt.jar加入到CLASSPATH中。更新
      方法:控制面板->系统->环境->系统变量;
    4、测试applet:
         1)打开command窗口;
         2)切换到C:\jdk1.2.2\demo\applets\TicTacToe目录;
         3)运行appletviewer example1.htm;
         4)一切正常;
    5、测试application:
        1)在我的D:\HZQ\Java目录下创建一个test.java文件,内容如下:
            public class test
            {
               public static void main(String arc[]){
                  System.out.println("JDK安装成功了,朋友!");
               }
            };
         2)打开command窗口;
         3)切换到D:\HZQ\Java目录;
         4)运行javac test.java进行编译;
         5)运行java test运行这个程序;
         6)一切正常。
  (二)Apache Server
    1、双击apache_1_3_12_win32.exe文件进行安装,使用缺省配置进行安装,缺省安装目录为
      C:\Program Files\Apache Group\Apache,我用$APACHE_ROOT来代替安装目的地;
    2、修改$APACHE_ROOT\conf\httpd.conf:
         1)PORT
         设置Apache Web Server运行时使用的端口号,由于我这里的IIS也在运行,IIS使
         用了80端口号,于是我把它改成Port 8080,以后在浏览器上输入
         http://localhost:8080/才能访问到Apache Web Server服务器,输入
         http://localhost/时能访问到IIS,这样两个Web Server都可以用了哦,我用
               $APACHE_PORT标识;
        2)DocumentRoot
         设置文档根目录,当您在浏览器上输入http://localhost:$APACHE_PORT/时,服
         务器会从文档根目录读取数据,由于我的程序都放在D:\HZQ下,所以我把
         DocumentRoot设置为D:/HZQ;
    3、Apache安装完后在"开始->程序"菜单组中多了Apache Web Server菜单组,运行其中的
      Install Apache as a service,这样的话在"开始->设置->控制面板->服务"中就
      多了一个名为Apache的服务,您可以用它来启动或停止Apache服务;
    4、打开"开始->设置->控制面板->服务",选中Apache这个服务,按"开始"启动Apache
      服务;
    5、我在浏览器上输入http://localhost:$APACHE_PORT/,就看到了D:\HZQ下的所有文件,
      这时表明Apache服务已经安装成功。
  (三)Apache JServ
    1、把ApacheModuleJServ.dll文件拷贝到$APACHE_ROOT\modules目录下;
    2、修改$APACHE_ROOT\conf\httpd.conf:
        在该文件中加上LoadModule jserv_module modules/ApacheModuleJServ.dll以
        启动Apache JServ;
    3、重新启动Apache服务。
  (四)Tomcat
    1、用WinZIP等解压缩软件把tomcat.zip解压缩到一个目录下,我把它解压缩到C:\,它会自动
      创建tomcat子目录,这样在C盘就多了一个目录C:/tomcat,我用$TOMCAT标识;
    2、打开$APACHE_ROOT\conf\httpd.conf文件,在该文件最后加上类似这样一句话:
        Include $TOMCAT/etc/tomcat.conf
      在我这里为Include C:/tomcat/etc/tomcat.conf;
    3、修改Tomcat运行的端口号,注意Tomcat自己有一个独立的HTTP服务器,它必须使用一个还未
      被使用的端口号,我这里的8081还未被占用,我用$TOMCAT_PORT标识,分配给Tomcat:
        1)打开$TOMCAT/server.xml;
        2)修改ContextManager:
    4、双击$TOMCAT目录下的startup.bat来启动Tomcat;
    5、在浏览器上输入http://localhost:$TOMCAT_PORT/,能看到Tomcat Version 3.0这一页
      就表示Tomcat安装成功了;
    6、在浏览器上输入http://localhost:$APACHE_PORT/examples/servlets/,能看到
      Servlet Examples with Code这一页就表示Apache+Servlet也成功了;
    7、在浏览器上输入http://localhost:$APACHE_PORT/examples/jsp/,能看到JSP Samples
      这一页就表示Apache+JSP也成功了。

附:
  JDK Download
    http://java.sun.com/products/jdk/1.2/
  Apache Server Download
    http://www.apache.org/dist/binaries/win32/apache_1_3_12_win32.exe
  Apache JServ Download
    http://jakarta.apache.org/builds/tomcat/release/v3.0/win32/ApacheModuleJServ.dll
  Tomcat Download
    http://jakarta.apache.org/builds/tomcat/release/v3.0/tomcat.zip
  Java(TM) 2 SDK 1.2.2-001 Installation Instructions
    http://java.sun.com/products/jdk/1.2/install-windows.html
  Tomcat FAQ
    http://jakarta.apache.org/cvsweb/index.cgi/jakarta-tomcat/src/doc/faq
  Tomcat+Apache-HOWTO
    http://jakarta.apache.org/cvsweb/index.cgi/jakarta-tomcat/src/doc/Tomcat%2bApache-HOWTO  

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to add a server in eclipse How to add a server in eclipse May 05, 2024 pm 07:27 PM

To add a server to Eclipse, follow these steps: Create a server runtime environment Configure the server Create a server instance Select the server runtime environment Configure the server instance Start the server deployment project

How to conduct concurrency testing and debugging in Java concurrent programming? How to conduct concurrency testing and debugging in Java concurrent programming? May 09, 2024 am 09:33 AM

Concurrency testing and debugging Concurrency testing and debugging in Java concurrent programming are crucial and the following techniques are available: Concurrency testing: Unit testing: Isolate and test a single concurrent task. Integration testing: testing the interaction between multiple concurrent tasks. Load testing: Evaluate an application's performance and scalability under heavy load. Concurrency Debugging: Breakpoints: Pause thread execution and inspect variables or execute code. Logging: Record thread events and status. Stack trace: Identify the source of the exception. Visualization tools: Monitor thread activity and resource usage.

Application of algorithms in the construction of 58 portrait platform Application of algorithms in the construction of 58 portrait platform May 09, 2024 am 09:01 AM

1. Background of the Construction of 58 Portraits Platform First of all, I would like to share with you the background of the construction of the 58 Portrait Platform. 1. The traditional thinking of the traditional profiling platform is no longer enough. Building a user profiling platform relies on data warehouse modeling capabilities to integrate data from multiple business lines to build accurate user portraits; it also requires data mining to understand user behavior, interests and needs, and provide algorithms. side capabilities; finally, it also needs to have data platform capabilities to efficiently store, query and share user profile data and provide profile services. The main difference between a self-built business profiling platform and a middle-office profiling platform is that the self-built profiling platform serves a single business line and can be customized on demand; the mid-office platform serves multiple business lines, has complex modeling, and provides more general capabilities. 2.58 User portraits of the background of Zhongtai portrait construction

How to leverage Kubernetes Operator simplifiy PHP cloud deployment? How to leverage Kubernetes Operator simplifiy PHP cloud deployment? May 06, 2024 pm 04:51 PM

KubernetesOperator simplifies PHP cloud deployment by following these steps: Install PHPOperator to interact with the Kubernetes cluster. Deploy the PHP application, declare the image and port. Manage the application using commands such as getting, describing, and viewing logs.

Java Data Structures and Algorithms: A Practical Guide to Cloud Computing Java Data Structures and Algorithms: A Practical Guide to Cloud Computing May 09, 2024 am 08:12 AM

The use of data structures and algorithms is crucial in cloud computing for managing and processing massive amounts of data. Common data structures include arrays, lists, hash tables, trees, and graphs. Commonly used algorithms include sorting algorithms, search algorithms and graph algorithms. Leveraging the power of Java, developers can use Java collections, thread-safe data structures, and Apache Commons Collections to implement these data structures and algorithms.

What are the commonly used protocols and libraries in Java network programming? What are the commonly used protocols and libraries in Java network programming? May 09, 2024 pm 06:21 PM

Commonly used protocols and libraries for Java network programming: Protocols: TCP, UDP, HTTP, HTTPS, FTP Libraries: java.net, java.nio, ApacheHttpClient, Netty, OkHttp

A complete guide to containerized deployment of PHP microservices A complete guide to containerized deployment of PHP microservices May 08, 2024 pm 05:06 PM

A Complete Guide to PHP Microservice Containerization Deployment Introduction Microservice architecture has become a hot trend in modern software development, which decomposes applications into independent, loosely coupled services. Containerization provides an effective way to deploy and manage these microservices. This article will provide a step-by-step guide to help you containerize and deploy microservices using PHPDocker. Docker Basics Docker is a lightweight containerization platform that packages an application and all its dependencies into a portable container. The following steps describe how to use Docker: #Install Dockersudoapt-getupdatesudoapt-getinstalldock

Xiaomi's Thanksgiving Season event starts: 20% off on battery replacement for 80 mobile phone models, 50% off on cleaning of all laptop series, starting from 49.5 yuan Xiaomi's Thanksgiving Season event starts: 20% off on battery replacement for 80 mobile phone models, 50% off on cleaning of all laptop series, starting from 49.5 yuan Jul 17, 2024 am 07:45 AM

According to news from this site on July 16, Xiaomi has launched its Thanksgiving Season event today, providing preferential replacement and maintenance services for mobile phones, laptops, air conditioners, washing machines, range hoods and other accessories. The content of the activities organized by this site is as follows: The event time is from 10:00 on July 16, 2024 to 24:00 on July 25, 2024. Mobile phone battery replacement can be enjoyed at 20% off for 80 models, with official quality and original accessories. 12 models can enjoy a 20% discount on mobile phone back cover replacement starting from 79.2 yuan. Mobile phone back cover replacement, official accessories, starting from 68 yuan. It should be noted that after users place an order for the back cover replacement service on Xiaomi Mall, the color can be selected at the store. , the specific inventory is subject to the actual situation of the store. If the selected color is out of stock, there may be a delivery delay. Replace your laptop battery with a new one and enjoy 20% off on 14 models of laptops

See all articles