The Apache Project

  • The Apache Project is a collaborative software development effort.

  • Its goal is to produce a robust, commercial-grade, free HTTP server.

  • The project is run by volunteers the Apache Group communicating and planning through the Internet.

  • Organizational support is provided by the Apache Software Foundation.

  • Home page:

http://apache.org

Foundation Myths

  • Long ago, when the Web was young, the most famous Web server in the World was called the NCSA server.

  • It was developed by Rob McCool at the National Center for Supercomputing Applications.

  • McCool left NCSA in 1994, and development of the public-domain NCSA server temporarily faltered.

  • At that time, a group of eight powerful Webmasters had developed their own extensions and bug-fixes for the NCSA server.

  • The founding Webmasters brought together by email pooled their updates.

  • Apache  came into being early in 1995. It was a series of  patches  to the NCSA code.

  • A year later, Apache was the most popular Web server.

Apache and Tomcat

  • This  lecture  is mainly a how-to guide to installing the Apache server and integrating it with the current version of Tomcat.

  • This allows a site primarily served by Apache to seamlessly make servlet and JSP content available.

Tomcat vs. Apache

The Apache Web server

    • is faster than Tomcat when it comes to static pages,
    • is more configurable than Tomcat,
    • is more robust than Tomcat, and
    • it supports CGI scripts, Server API modules, Perl, PHP, etc.

Hence for real world sites, Apache would generally be a better choice than Tomcat, except that. . .

    • In itself, Apache doesn t support Servlets or JavaServer Pages!

Integrating Apache and Tomcat

The solution, of course, is to allow the two Web servers to work together.

The Apache server will be the principal server, dealing with static documents.

Or dynamic documents generated by any of the other technologies mentioned in the previous slide.
Apache will forward requests for Servlets or JavaServer Pages to Tomcat.

The approach we describe here is what was called the out-of-process servlet container the lectures on Servlets.

The Adapter

For Apache to communicate with Tomcat, and forward requests as necessary, it needs some extra software an adapter.

An adapter will be implemented as an Apache module.

An Apache module is a piece of code that can be optionally linked in to (or left out of) the main server code.
Non-standard, plug-in, modules will typically be shared-object libraries (DLLs under Windows).
These live in a directory called /usr/local/apache/libexec.
Apache modules generally have names of the form mod_XXXX

For example, mod_perl.
There are two Tomcat adapter modules in common use: mod_jserv and mod_jk.

mod_jk

mod_jk is a new Tomcat-Apache plug-in that handles communication between Tomcat and Apache.

It replaces the older mod_jserv.
For more information, see the file doc/mod_jk-howto.html in the Tomcat release, which is also online at

jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/mod_jk-howto.html

For now the only way to obtain the mod_jk library for Linux seems to be to build it yourself. The sources are included in the source release of Tomcat.

Obtaining mod_jk for Linux

Go to jakarta.apache.org and follow the Source Code link.

Get the release build of Tomcat (currently 3.2). At the time of writing, the relevant file is

jakarta-tomcat-3.2-src.tar.gz
Unpack the distribution:

gunzip -c jakarta-tomcat-3.2-src.tar.gz | tar xvf -
You can do this anywhere, e.g. in /tmp.
I do not particularly recommend you try to rebuild the Tomcat server itself from this release: it is much easier just to download the compiled, binary version of the server, as described in the lectures on Servlets.

Building mod_jk

Go to the directory

jakarta-tomcat-3.2-src/src/native/apache1.3
If necessary, edit the definition of the macro APXS in Makefile.linux so that it refers to the apxs command in the Apache release, probably /usr/local/apache/bin/apxs.

Build the library:

make -f Makefile.linux
Install the plug-in in the Apache libexec/ directory, e.g.:

cp mod_jk.so /usr/local/apache/libexec

Updating the Apache Configuration

In the first instance (until you need to do something clever) this is very easy, because whenever the Tomcat server is run, it generates a self-describing include file.

This file contains a series of Apache configuration-file commands.
The include file is in

jakarta-tomcat-X.X/conf/mod_jk.conf-auto
In my case I added the line

include /home/users/dbc/jakarta-tomcat-3.2/conf/mod_jk.conf-auto

to the end of the file /usr/local/apache/conf/httpd.conf.

Fragment of the File mod_jk.conf-auto

#########################################################

# Auto configuration for the /dbc context starts.

#########################################################

# The following line makes apache aware of the location of the /dbc context

Alias /dbc "/home/users/dbc/jakarta-tomcat-3.2/webapps/dbc"

<Directory "/home/users/dbc/jakarta-tomcat-3.2/webapps/dbc">

Options Indexes FollowSymLinks

</Directory>

# The following line mounts all JSP files and the /servlet/ uri to tomcat

JkMount /dbc/servlet/* ajp12

JkMount /dbc/*.jsp ajp12

# The following line prohibits users from directly accessing WEB-INF

<Location "/dbc/WEB-INF/">

AllowOverride None

deny from all

</Location>

# The following line prohibits users from directly accessing META-INF

<Location "/dbc/META-INF/">

AllowOverride None

deny from all

</Location>

Remarks

Recall these are commands that Tomcat generates to configure Apache.

As the first comments indicates, these commands relate to the servlet context called dbc/.

The Alias command causes Apache to generally look in the Tomcat document directory for URLs with paths that start /dbc.

This is needed for static documents in the Tomcat directory.
The first JkMount command causes URLs with paths that match the pattern /dbc/servlet/* to be redirected to the AJP module (hence the Tomcat server).

The second JkMount command causes URLs with paths that match the pattern /dbc/*.jsp to be similarly redirected Tomcat server.

Configuring Workers

In Tomcat 3.2, the generated include file, jakarta-tomcat-X.X/conf/mod_jk.conf-auto has a reference to the file workers.properties in the same directory. You will probably have to manually edit this file.

Enclosed comments are fairly self-explanatory. If necessary change the Java home directory and the path-component separator (to / rather than \ for Linux).

You may also need to choose one or the other of ajp12 and ajp13, and comment out references to the other.

I went with ajp12. ajp13 is supposed to be an improved protocol, but I know and love ajp12.
Set the port number for your AJP connector, as specified in server.xml.

See jakarta-tomcat-X.X/doc/Tomcat-Workers-HowTo.html.

Start the Apache Server. . .

In principle, we are done. Restart the Apache server.

With the default configuration, URLs with paths in Tomcat servlet contexts that start /servlet or end with .jsp are redirected to Tomcat.

Note Apache will directly serve static .html pages, even if they are in the Tomcat document directory.
Because Apache (unlike Tomcat) runs as user nobody by default, such files now need to be world readable.
(Apparently) things continue to work across multiple restarts of Tomcat, even without restarting Apache.

We note however that, according to the FAQ, this is not the case with AJP13. . .

What is the difference Apache (Http Server) and Tomcat (Servlet Container)的更多相关文章

  1. Apache Http Server和Tomcat 之区别

    转自:Apache Http Server和Tomcat 之区别 Apache官方网站:http://www.apache.org/Tomcat官方网站:http://tomcat.apache.or ...

  2. [转]Apache HTTP Server 与 Tomcat 的三种连接方式介绍

    首先我们先介绍一下为什么要让 Apache 与 Tomcat 之间进行连接.事实上 Tomcat 本身已经提供了 HTTP 服务,该服务默认的端口是 8080,装好 tomcat 后通过 8080 端 ...

  3. 转自IBM:Apache HTTP Server 与 Tomcat 的三种连接方式介绍

    http://www.ibm.com/developerworks/cn/opensource/os-lo-apache-tomcat/index.html 整合 Apache Http Server ...

  4. Apache HTTP Server与Tomcat整合学习记录

    Apache HTTP Server与Tomcat整合 个人环境:Windows10,JDK8,Tomcat8.5,Apache2.4,JK模块1.2.4 前言 ​ 其实网上有很多教程,但问题是得每次 ...

  5. Windows 下 Apache HTTP Server 与 Tomcat 的整合

    整合准备: 1.Apache HTTP Server(下文用Apache简称) 2.Tomcat 7或8 3.mod_jk.so (tomcat-connectors)-这个文件是用来链接http s ...

  6. Apache http server和tomcat的区别

    Apache官方网站:http://www.apache.org/Tomcat官方网站:http://tomcat.apache.org/ 1. Apache是web服务器,Tomcat是应用(jav ...

  7. apache http server 和tomcat的区别 以及nginx

    Apache HTTP Server(简称Apache)是Apache软件基金会的一个开放源码的网页服务器. 要明白他们之间的区别,我们首先需要明白HTTP协议.HTML页面.JSP.Servlet之 ...

  8. Apache HTTP Server 与 Tomcat 的三种连接方式介绍(转)

    首先我们先介绍一下为什么要让 Apache 与 Tomcat 之间进行连接.事实上 Tomcat 本身已经提供了 HTTP 服务,该服务默认的端口是 8080,装好 tomcat 后通过 8080 端 ...

  9. Apache HTTP Server 与 Tomcat 的三种连接方式介绍

    本文转载自IBM developer 首先我们先介绍一下为什么要让 Apache 与 Tomcat 之间进行连接.事实上 Tomcat 本身已经提供了 HTTP 服务,该服务默认的端口是 8080,装 ...

随机推荐

  1. php 变量原理

    1.php作为一种弱类型语言,不需要显式的指明变量的类型,但是php变量也是有类型的,php变量包含以下8种变量(三大类) a.标量类型:boolean,integer,float(double),s ...

  2. nyoj------20吝啬的国度

    吝啬的国度 时间限制:1000 ms  |  内存限制:65535 KB 难度:3    描述 在一个吝啬的国度里有N个城市,这N个城市间只有N-1条路把这个N个城市连接起来.现在,Tom在第S号城市 ...

  3. iOS开发之——从零开始完成页面切换形变动画

    前言 某天我接到了UI发给我的两张图: 需求图.png 看到图的时候我一脸懵逼,显然我需要做一个页面切换的指示动画.老实说,从大三暑假开始做iOS开发也一年有余了,但是遇到复杂动画总是唯恐避之不及,只 ...

  4. SQL批量删除与批量插入

    批量删除: DELETE FROM MyTable WHERE ID IN (1,2); 批量插入: INSERT INTO MyTable(ID,NAME) VALUES(1,'123');INSE ...

  5. Android存储数据方式

    可以查看Android开发文档中的:/docs/guide/topics/data/data-storage.html Android provides several options for you ...

  6. web页面动态加载UserControl,并调用用户控件中的方法来初始化控件

    1,HTML页 头部注册: <%@ Register Src="~/WorkLog/WorkLogNewV1/UserControl/CeShiBu.ascx" TagPre ...

  7. SQL Server数据库(作业讲解和复习)

    --第一题 查询Student表中的所有记录的Sname.Ssex和Class列.select Sname,Ssex,Class from student --第二题 查询教师所有的单位即不重复的De ...

  8. SQL Server数据库(作业)

    create datebase zuoye2gouse zuoyegocreate table student --学生表( Sno varchar(20) not null primary key, ...

  9. Oracle “dba_tables”介绍

    DBA_TABLES describes all relational tables in the database. Its columns are the same as those in ALL ...

  10. JDE910笔记1--基础介绍及配置

    1.一般JDE部署后环境: DV:开发环境 PY:测试环境 PD:正式环境 根据端口号区分不同环境,可配置.同时,JDE默认使用分发服务器,不同环境连接为不同的数据库. 2.命名规范: 自定义项目.函 ...