`
hucoy
  • 浏览: 5075 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
最近访客 更多访客>>
社区版块
存档分类
最新评论

使用jakarta-tomcat-connectors整合apache2和tomcat

阅读更多
1 Installing Apache2

下载apache
wget -c http://apache.mirror.phpchina.com/httpd/httpd-2.2.4.tar.bz2
解压缩后进入目录进行配置

./configure --enable-module=so --enable-module=usertrack --enable-modules=fastcgi --enable-info --enable-suexec --with-mpm=worker --enable-expires --enable-headers --enable-deflate --enable-file-cache --enable-cache --enable-disk-cache --enable-mem-cache

make && make install

Edit /usr/local/apache2/conf/httpd.conf and change(修改apache2配置文件):

加入
DirectoryIndex index.htm index.html index.php index.xhtml index.shtml

/usr/local/apache2/bin/apachects start
启动apache2

2 Installing JDK (Java Development Kit) or JRE(Java Runtime Environment)

http://java.sun.com
下载 jdk 或 jre

chmod +x jre-6u4-linux-i586.bin
Now execute the file:
./jre-6u4-linux-i586.bin
mv jre1.6.0_04 /usr/local/

Now we need to set the JAVA_HOME environment variable. Add the following at the end of /etc/profile just after export PATH.

vi /root/.bashrc
加入
JAVA_HOME=/usr/local/jre1.6.0_04
PATH=$JAVA_HOME:$JAVA_HOME/bin:$PATH
#CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export JAVA_HOME PATH CLASSPATH

重新登陆系统后
echo $JAVA_HOME
就会打印JAVA_HOME

3 Installing Tomcat
http://tomcat.apache.org
下载tomcat

执行
tar xvzf apache-tomcat-6.0.14.tar.gz

进入
TOMCAT_HOME/bin/

执行./startup.sh

启动 进入 http://localhost:8080/ 就表示成功

4 Installing and configuring mod_jk
(1) cd /usr/src

(2) 首先下载(wget http://archive.apache.org/dist/jakarta/tomcat-connectors/jk/source/jk-1.2.15/jakarta-tomcat-connectors-1.2.15-src.tar.gz)
http://archive.apache.org/dist/jakarta/tomcat-connectors/jk/source/jk-1.2.15/jakarta-tomcat-connectors-1.2.15-src.tar.gz

(3) tar xvzf jakarta-tomcat-connectors-1.2.15-src.tar.gz

(4) cd jakarta-tomcat-connectors-1.2.15-src/jk/native

(5) Now you are ready to create the custom configure file for your system. Execute the following:

    ./buildconf.sh
 
    如果提示失败,最好下载
    autoconf,automake,libtool
   
 
    This will create a configure file in the
    /usr/src/jakarta-tomcat-connectors-1.2.15-src/jk/native directory.

(6) Execute the following command in order to configure mod_jk for your system.
    Important note: You will need to have apxs2 (APache eXtension tool) installed and configured with Apache.
    If you do not have it, as was my case, you can download and install the apache2-threaded-dev package
    (which replaced the former apache-dev package) from www.debian.org.
    At the time of this writing, the Debian package archive at www.debian.org was down and
    they referred me to their temporary site until they resolved their issues pdo.debian.net.
    I found the apache2-threaded-dev package and was able to install it successfully.
    Be sure to include the correct location apxs2 on your system in the path of the command.


    ./configure --with-apxs=/usr/local/apache2/bin/apxs

(7) 执行make
 
    在执行make 时可能会出现
 
    libtool: compile: unable to infer tagged configuration
    libtool: compile: specify a tag with `--tag'
    make[1]: *** [jk_ajp12_worker.lo] Error 1
    make[1]: Leaving directory `/usr/src/jakarta-tomcat-connectors-1.2.15-src/jk/native/common'
    make: *** [all-recursive] Error 1
 
    修改Makefile 和common/Makefile两个文件
 
    找到
    LIBTOOL = /usr/share/apr-1.0/build/libtool --silent
 
    改为
 
    LIBTOOL = /usr/share/apr-1.0/build/libtool --silent --tag CC


 
(8) make install 执行后应该在/usr/local/apache2/modules/可以看到mod_jk.so


5 Configuring Tomcat and Apache
Create the workers.properties file
  Important note: Be sure to make a backup copy of your config files before modifying.
  The workers.properties file contains the details about how each process is linked to Tomcat by defining workers that communicate through the ajpv13 protocol. Refer to the Workers HowTo for more detail.
1.First create the workers.properties file in your Apache2 root directory.
  touch /usr/local/apache2/conf/workers.properties


2.Next, open the workers.properties file and add the following.
You can find many other examples of the workers.properties file on the internet,
but this is the one that I created and it seems to work fine with the other portions
that have already been configured in this tutorial.

在workers.properties加入以下内容:
workers.tomcat_home=/usr/local/tomcat
workers.java_home=/usr/local/jre1.6.0_01
ps=/
worker.list=worker1

worker.default.port=8009
worker.default.host=localhost
worker.default.type=ajp13
worker.default.lbfactor=1

3 保存并关闭文件

4. Now we need to open the /usr/local/apache2/conf/httpd.conf file and add the following lines at the bottom.
  (httpd.conf is just for backward compatibility)

  在最后加入 以下内容

LoadModule jk_module /usr/local/apache2/modules/mod_jk.so

# Where to find workers.properties
JkWorkersFile /usr/local/apache2/conf/workers.properties

# Where to put jk logs
JkLogFile   /var/log/apache2/mod_jk.log

# Set the jk log level [debug/error/info]
JkLogLevel   info

# Select the log format
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "

# JkOptions indicate to send SSL KEY SIZE,
JkOptions   +ForwardKeySize +ForwardURICompat -ForwardDirectories

# JkRequestLogFormat set the request format
JkRequestLogFormat   "%w %V %T"


JkMount /*.jsp worker1
JkMount /*.do worker1

保存修改

(5) 修改
    /usr/local/apache2/conf/extra/httpd-vhost.conf
       修改,指定到应用程序中
    DocumentRoot /var/www/test/
       <Directory /var/www/test/>
           Options FollowSymLinks MultiViews
           AllowOverride None
           Order allow,deny
           allow from all
    </Directory>

  并把 Options Indexes FollowSymLinks MultiViews
  改成 Options FollowSymLinks MultiViews

  保存修改

(6) 重启 tomcat

  然后 /usr/local/apache2/bin/apachectl restart
  这样apache就会把jsp请求交给tomcat来处理了
分享到:
评论

相关推荐

    jakarta-tomcat-connectors-1.2.15-src.tar.gz

    在本文中,我们将深入探讨jakarta-tomcat-connectors-1.2.15-src.tar.gz这个源码包,揭示其中包含的源代码、设计理念以及如何利用这些源码来理解Tomcat的工作原理。 首先,让我们了解一下Jakarta Tomcat Connectors...

    jakarta-tomcat-connectors-jk2.0.4-win32

    综上所述,"jakarta-tomcat-connectors-jk2.0.4-win32"是一个关键的中间件,它允许开发者和管理员将高性能的Apache Tomcat应用服务器与广泛使用的IIS Web服务器集成,以实现动态内容的处理。通过正确配置和使用这个...

    jakarta-tomcat-connectors-jk-1.2.6-src.tar.gz

    标题中的"jakarta-tomcat-connectors-jk-1.2.6-src.tar.gz"是一个源码压缩包,其中包含了Jakarta Tomcat Connectors(JK)的版本1.2.6的源代码。Jakarta Tomcat Connectors是Apache Tomcat服务器的一部分,用于处理...

    jakarta-tomcat-connectors-1.2.15-src.zip

    【标题】"jakarta-tomcat-...总的来说,"jakarta-tomcat-connectors-1.2.15-src.zip"为开发者提供了一个宝贵的资源,让他们能够更深入地了解和定制Apache Tomcat服务器,提升其在实际部署和复杂应用场景下的表现。

    jakarta-tomcat-connectors-jk2-src-current.tar.gz

    总之,“jakarta-tomcat-connectors-jk2-src-current.tar.gz”为开发者提供了深入了解和定制JK2的机会,对于构建高可用、高性能的Java Web应用环境具有重要意义。通过深入研究源码,开发者不仅可以解决特定问题,还...

    jakarta-tomcat-connectors-jk2.0.2-win32-IIS.zip

    1. **下载与安装**:首先,从Apache官方网站下载对应版本的jakarta-tomcat-connectors-jk2.0.2-win32-IIS.zip文件,解压后将isapi_redirect.dll和相关库文件拷贝到IIS的扩展目录。 2. **配置IIS**:在IIS管理工具中...

    jakarta-tomcat-connectors-1.2.13-src.tar.tar

    Apache和tomcat负载均衡需要的jar包

    jakarta-tomcat-connectors-jk-1.2.6-src.zip

    源代码包`jakarta-tomcat-connectors-jk-1.2.6-src`包含以下内容: 1. **源代码文件**:这些文件提供了JK模块的详细实现,包括请求分发逻辑、连接管理和状态监控等。开发者可以通过阅读源码了解其工作原理,进行...

    apache-tomcat-8.5.73

    在解压缩"apache-tomcat-8.5.73"后,你会找到包含服务器配置文件、web应用程序目录(webapps)、日志文件(logs)、临时工作目录(work)和其他必要组件的结构。为了启动Tomcat,你需要运行bin目录下的startup.sh...

    Apache与Tomcat整合的简单方法.pdf

    2. 进入解压后的目录:`# cd jakarta-tomcat-connectors-1.2.15-src/jk/native` 3. 配置编译选项:`# ./configure --with-apxs=/usr/local/apache2/bin/apxs` 4. 编译源码:`# make` 5. 将编译好的mod_jk.so复制到...

    apache-tomcat-7.0.57(32位)

    Tomcat是Apache软件基金会Jakarta项目的一部分,它实现了Java EE的Web组件规范,尤其是Servlet和JSP规范。在本篇中,我们将深入探讨Apache Tomcat 7.0.57的特性和使用方法。 首先,让我们了解Tomcat的核心功能。...

    apache-tomcat-5.5.25

    Apache Tomcat 5.5.25 是一个广泛使用的开源软件,它是一个实现了Java Servlet和JavaServer Pages(JSP)规范的应用服务器,主要用于部署和运行Java Web应用程序。这个版本是Tomcat 5.5系列的一个具体发行版,发布于...

    Linux下Apache与Tomcat整合

    - `jakarta-tomcat-connectors-1.2.15-src.tar.gz`: 用于Apache和Tomcat之间的连接器(mod_jk)的源代码包。 3. **安装Apache** 解压Apache源码包,然后配置、编译并安装到指定目录`/usr/local/apache2`。 ```...

    apache-tomcat-7.0.55

    5. **Web Applications**:在解压的apache-tomcat-7.0.55目录下,可以看到`webapps`文件夹,其中包含预装的示例应用程序和任何用户部署的应用程序。 6. **Conf**:这个目录包含了Tomcat的配置文件,如`server.xml`...

    apache-tomcat-6.0.32-windows-x64

    总的来说,"apache-tomcat-6.0.32-windows-x64"为Windows 64位用户提供了稳定且高效的Java Web应用托管环境,适合开发、测试和部署基于Servlet和JSP技术的Web应用程序。尽管现在已经有了更高级的版本,但6.0.32仍因...

    apache-tomcat-7.0.63

    Apache Tomcat 7.0.63 是一个广泛使用的开源Web服务器和Servlet容器,它遵循Java EE(现在称为Jakarta EE)规范中的Web组件标准。Tomcat被设计为轻量级,易于部署和管理,使其成为开发和部署小型到中型Java Web应用...

    apache-tomcat-7.0.55.rar

    Tomcat是Apache软件基金会Jakarta项目的一部分,作为轻量级应用服务器,它在Java EE环境中扮演着关键角色,特别是在处理动态Web内容时。 Tomcat 7.0.55 是Tomcat 7系列的一个具体发行版,该系列在2014年发布,提供...

    apache-tomcat-7.0.106.rar

    在"apache-tomcat-7.0.106.rar"这个压缩包中,包含的是Tomcat 7.0.106的所有文件,包括必要的库、配置文件、文档以及管理应用等。解压后,你可以根据需要配置`conf`目录下的配置文件,将你的Web应用程序放入`webapps...

    Linux环境下apache+tomcat共存

    - JK模块(用于Apache和Tomcat之间的通信):jakarta-tomcat-connectors-1.2.15-src.tar.gz 2. **安装Apache**: - 解压Apache源码包并进入目录 - 运行`./configure`命令,指定安装路径和其他配置选项,特别是...

Global site tag (gtag.js) - Google Analytics