免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1549 | 回复: 0
打印 上一主题 下一主题

Apache与Tomcat安装配置手册 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-05-02 12:21 |只看该作者 |倒序浏览
By 疯傻


  很多朋友都发信给我,希望得到最新的安装文档,我就利用业余时间,安装了最新的操作系统Red Hat Linux release 8.0 (Psyche)和最新的应用软件,并重新设置Apache和Tomcat整合的配置.安装和配置还算比较顺利,所以就更新了这个文档,希望对大家会有所帮助!如果有什么错误的地方,也请大家指正!好了,不罗嗦了!

1.所需的软件包

  j2sdk-1_4_1_02-linux-i586
  Apache2.0.40 (Red Hat Linux)
  jakarta-tomcat-4.1.18
  jakarta-tomcat-connectors-4.1.18

2.软件包下载地址

  (1) Java J2SE1.4.1
    URL:http://java.sun.com/j2se/1.4.1/download.html
  (2) Apache2.0.40
    URL:http://httpd.apache.org
  (3) Tomcat 4.1.18
    URL:http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.1.18/bin/jakarta-tomcat-4.1.18.tar.gz
  (4) Tomcat connectors-4.1.18
    URL:http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.1.18/src/jakarta-tomcat-connectors-4.1.18-src.tar.gz

3.软件安装

  (1) 解开压缩包
    使用gunzip或tar或rpm解开下载的软件包,按照默认方式安装既可
  (2) 目录的处理
    J2SDK安装目录: /usr/j2sdk1.4.1_02
    Apache安装目录: /etc/httpd
             /usr/lib/apache
             /var/www
    Jakarta-Tomcat安装目录: /opt/jakarta-tomcat-4.1.18
    Jakarta-Tomcat-connectors安装目录: /opt/jakarta-tomcat-connectors-4.1.18-src

4.环境变量设置

  JAVA_HOME=/usr/j2sdk1.4.1_02
  CLASSPATH=$JAVA_HOME/libJAVA_HOME/jre/lib
  CATALINA_BASE=/opt/jakarta-tomcat-4.1.18
  CATALINA_HOME=/opt/jakarta-tomcat-4.1.18
  PATH=$JAVA_HOME/binJAVA_HOME/jre/binPATHHOME/bin

5.特殊安装

  (1) 编译Jakarta-Tomcat-connectors
    cd /opt/jakarta-tomcat-connectors-4.1.18-src/webapp ## 进入指定的目录
    ./support/buildconf.sh ## 生成编译配置文件
    ./configure --with-apxs ## 生成Makefile编译文件
    make ## 编译生成mod_webapp.so
    注释: 生成的mod_webapp.so文件在apache-2.0目录中
  (2) 把apache-2.0目录中的mod_webapp.so文件复制到目录/usr/lib/httpd/modules
    并检查文件/usr/lib/httpd/modules/mod_webapp.so的属性,应与其它Modules文件
    属性一致,如果不相同,则使用chmod chgrp chown来修改

6.独立环境的测试

  (1) 测试Java的运行状况,如下命令:
    java -version
    javac -version
    看到版本号则表示JDK安装成功
  (2) 测试Apache的运行状况,如下命令:
    /etc/init.d/httpd restart ## 重新启动Apache Server
    使用任意一浏览器,输入服务器地址后回车,应该可以看到Apache的默认主页
  (3) 测试Jakarta-Tomcat的运行状况,如下命令:
    cd $CATALINA_HOME
    cd bin
    ./startup.sh ## 启动jakarta-tomcat-4.1.18服务
    使用任意一浏览器,输入服务器地址和端口号8080后回车,应该可以看到jakarta-tomcat-4.1.18的默认主页
    例如: http://192.192.192.1:8080
    ./shutdown.sh ## 关闭jakarta-tomcat-4.0.1服务

7.整合安装设置

  (1) 修改/etc/httpd/conf/httpd.conf文件
    在# Dynamic Shared Object (DSO) Support之后,添加如下内容
    LoadModule webapp_module modules/mod_webapp.so
  (2) 测试配置和Modules,执行以下命令
    apachectl configtest
    如果出现Syntax OK,则证明Module安装和配置成功了!
  3) 修改/etc/httpd/conf/httpd.conf文件
    在文件尾部添加如下内容
    WebAppConnection warpConnection warp localhost:8008
    WebAppDeploy examples warpConnection /examples/
  4) 再次测试配置,执行以下命令
    apachectl configtest
    如果出现Syntax OK,则证明安装成功!
    如果出现以下错误信息
    Syntax error on line 1038 of /etc/httpd/conf/httpd.conf:
    Invalid virtual host name
    则修改httpd.conf文件,找到#ServerName所在的行,并在其下面加入如下内容即可
    ServerName localhost:8008 # 制定服务器的名称和端口
  5) 检查$CATALINA_HOME/conf/server.xml文件中相关的配置,默认情况下的
    相关的信息是被注释掉了,所以需要删掉注释的语句,这样Tomcat在启动的时候才会初始化
    相关的内容并开启8008端口!

8.整合测试

  重新启动所有服务
    $CATALINA_HOME/bin/shutdown.sh
    $CATALINA_HOME/bin/startup.sh
    /etc/init.d/httpd restart
  在浏览器中输入如下地址
    http://服务器IP/examples/jsp/index.html,如果能够显示正常的网页,则安装成功
  在浏览器中输入如下地址
    http://服务器IP/examples/jsp/jsptoserv/jsptoservlet.jsp如果能够显示正常的网页和时间,则jsp和Servlet安装成功

9.祝你好运,如还有问题,请联系我!

  作 者: 疯傻
  邮 件: madfool@163.net
  主 页: http://www.avaw.com
      http://www.binary.com.cn
  此文档严格遵循GPL协议,转帖请保持此文档的完整性!


【责任编辑:泛舟】
【关闭窗口】


相关内容   



· 无


请您评论
姓名:   
电邮:   
留言:   
   


网友:凯旋 发表时间:2003-03-12 14:20:29
  
谢谢!!!谢谢!!!谢谢!!!谢谢!!!谢谢!!!:)
  
网友:fangshun 发表时间:2003-03-15 12:02:13
  
java设置中classpath少一个点
  
网友:xixixixi 发表时间:2003-03-21 13:06:25
  
为什么不用 jk/jk2 connector?
  
网友:seaman 发表时间:2003-03-27 21:10:04
  
5.特殊安装

  (1) 编译Jakarta-Tomcat-connectors
    cd /opt/jakarta-tomcat-connectors-4.1.18-src/webapp ## 进入指定的目录
    ./support/buildconf.sh ## 生成编译配置文件


为什么我在执行这一步的时候 首先提示是

           bash: ./support/buildconf.sh: Permission denied

我修改了 buildconf.sh 属性 加上 excetive 之后 提示变为

             bad interpreter: No such file or directory
  
网友:tomcat apache connector 选择 发表时间:2003-03-30 20:20:08
  
转:
Brian Sullivan (brian-sfNOSPAM(at)pacbellNOSPAM.net)

Since I see alot of questions and not too much success on integrating Apache
with Tomcat, here are the steps I followed and things I learned along the
way.

These are the "connector" options
(http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/connectors.html):

mod_jserv - Obsolete Read more at JServ
mod_jk using ajp1.3 protocol - Ajp13Connector mod_jk supports load
balancing. Works with 3.x and 4.x.
mod_jk2 using ajp1.3/ajp1.4 and the CoyoteConnector+JkCoyoteHandler Current
developpements. Enabled by default in 4.1; works in 4.0. mod_jk2 supports
in-process JVM and load balancing.
mod_webapp using WARP 1.0 protocol - WarpConnector Not for Win32; no
in-process nor load balancing; works in 4.x. Use APR. Supported Apache-2.0
and Apache-1.3)

mod_jserv is elderly and deprecated, so forget it.

I have used mod_jk for a while and it works fine.

mod_jk2 is supposed to be an improvement and perhaps the standard for
tomcat4.1, but I am finding it very dangerous to use brand new releases -
both because the documentation is lacking, and not every issue seems to be
anticipated.

Which brings me to mod_webapp. I wasted so much time on this connector.
First, you can't use it on win32, something not well documented until
lately. You cannot configure the connector to discriminate based on a
url-pattern (ie: send .jsp to tomcat, keep .html in apache), it doesn't
support load balancing, and then the best problem: the latest version of IE
6, version 6.0.28 has an extremely odd interaction with this connector.

mod_webapp and IE 6.0.28 - IE sends request to apache2. mod_webapp grabs
the request, IE sends an identical request, the server responds with twice,
and just as the second request seems to interrupt the first request, the
second response seems to interrupt the first response. Needless to say,
this confuses the browser and it displays "age cannot be displayed". I
speculate that the handoff of the request from apache to mod_webapp is
somehow relayed back to IE and interpretted as a dropped request and so it
tries again. When I disabled tomcat, IE did not duplicate the request and I
got an expected error about the mod_webapp connection is not available. My
speculation may not be accurate at all, but it led me to replace mod_webapp
with mod_jk and the problem is no longer present.

Use mod_jk, unless you have a very strong reason for using mod_webapp.

Integrating Apache 2 (version 2.0.39) with Tomcat (version 4.0.3) on Linux
(Redhat version 7.3) (The same basic scheme worked for windows 2000,
although I haven't been able to compile mod_jk. You can find a compiled
mod_jk at http://www.acg-gmbh.de/mod_jk/
These are the basic requirements:
1. Get the module mod_jk.so
2. Update apache2/conf/httpd.conf to call a file to configure mod_jk.conf
and disable mod_webapp if used.
3. Create the file mod_jk.conf in tomcat_home/conf
4. Create the file workers.properties in tomcat_home/conf

1>;>; Getting mod_jk.so - as of 14 September 2002, good luck.
1>;>; Compiling mod_jk..so - it seems worse than it is, but I can't guarantee
you will have success.
Here are the basic steps (based on
http://jakarta.apache.org/tomcat/tomcat-3.3-doc/mod_jk-howto.html#s64 -
which is pretty confusing)
1. Download the connectors source code at
http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0.4/src/jakar
ta-tomcat-connectors-4.0.4-src.tar.gz
2. Unzip it, eg "gzip -d jakarta-tomcat-connectors-4.0.4-src.tar.gz"
3. Untar it, eg: "tar -xvf jakarta-tomcat-connectors-4.0.4-src.tar"
4. Go to the directory for the jk connector for apache2:
jakarta-tomcat-connectors-4.0.4-src\jk\native\apache-2.0
5. In order to compile the module, you need to set APACHE_HOME in your
shell, e.g.
        set APACHE_HOME=/usr/local/apache2
        export APACHE_HOME
6.Compile with "./build-unix.sh"
7. The compile works for several files and then eventually fails because the
object files from the ../jk directory have been compiled to the current
directory, rather than their source directory.
8. Run "gcc -shared -o mod_jk.so *.o" should finish the build.
9. Hopefully you now have the mod_jk.so module.

You don't need to do anything else with the connectors source code because
the other necessary components are already part of the tomcat binary
distribution.

2>;>; Update apache2/conf/httpd.conf to call a file to configure mod_jk.conf
and disable mod_webapp if used.
1. Add this line to the end of httpd.conf: "Include
/var/tomcat4/conf/mod_jk.conf-pd4" (add it without the quotes)

3>;>; Create the file mod_jk.conf in tomcat_home/conf. Here are the most
salient parts. There is more information at the mod_jk-howto link above.
#Load the mod_jk module created above:
<IfModule !mod_jk.c>;
LoadModule jk_module modules/mod_jk.so
</IfModule>;

# Point to the workers properties and log files
JkWorkersFile /var/tomcat4/conf/workers.properties
JkLogFile /var/tomcat4/logs/mod_jk.log

# Use the JkMount directive to correlate a url pattern to the connection
protocol:

JkMount /*.jsp ajp13
JkMount /servlet/* ajp13

# Make specific correlation from a webapp context and url pattern with the
connection protocol:

In this example, assume you have a context called myContext, such that a
valid url could look like http:\\localhost\myContext\index.jsp and the file
index.jsp is located at /var/tomcat3/webapps/myContext/index.jsp.

Alias /myContext "/var/tomcat4/webapps/myContext"

# here all files in myContext ending with .jsp are set to tomcat via the
ajp13 protocol. All other requests will be handled by apache directly.

JkMount /myContext/*.jsp ajp13

Remember to use Location and Directory elements to protect your files.

4>;>;. Create the file workers.properties in tomcat_home/conf. Here is a
sample of the salient parts of the workers.properties files
# define tomcat home
workers.tomcat_home=/var/tomcat4

#define java home
workers.java_home=/usr/java/j2sdk1.4.0_01

#define environment slash
ps=/

# The workers that your plugins should create and work with
#
worker.list=ajp13

#define worker properties Use your actual server IP address for the host.
worker.ajp13.port=8009
worker.ajp13.host=12.34.56.78
worker.ajp13.type=ajp13

There are several other default properties defined in the workers.properties
files. The defaults should be fine.

It is daunting to get all of the pieces in place, especially the first time.
I hope some of this info helps.'
  
网友:疯傻 发表时间:2003-03-31 12:22:59
  
解答了很多网友的问题,总结后有一个比较突出,我已经更新了文档!

5.特殊安装:
  (1) 编译Jakarta-Tomcat-connectors
      cd /opt/jakarta-tomcat-connectors-4.1.18-src/webapp ## 进入指定的目录
      ./support/buildconf.sh ## 生成编译配置文件
      ./configure --with-apxs ## 生成Makefile编译文件
      make ## 编译生成mod_webapp.so
      注释: 生成的mod_webapp.so文件在apache-2.0目录中
      提醒: 如果生成mod_webapp.so时失败,并提示找不到apxs,则证明你的Apache在
            安装的时候,未安装Apache附加的开发包,请下载安装该开发包,则会解决
            该问题(这个包在RedHat8中的文件名是:httpd-devel-2.0.40-8.i386.rpm)
  (2) 把apache-2.0目录中的mod_webapp.so文件复制到目录/usr/lib/httpd/modules
      并检查文件/usr/lib/httpd/modules/mod_webapp.so的属性,应与其它Modules文件
      属性一致,如果不相同,则使用chmod chgrp chown来修改

如果有朋友还有什么问题,欢迎发邮件给我(抱歉,我太少上帖子中心了)!
  
网友:ssming 发表时间:2003-04-18 16:08:43
  
我的linux服务器www服务三天两头的down机,怎么回是其中log里有个error_log文件,内容如下,麻烦高手给我看看。

[Tue Mar 25 11:36:46 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Mar 25 11:36:46 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Mar 25 11:36:46 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Tue Mar 25 11:41:31 2003] [notice] caught SIGTERM, shutting down
[Tue Mar 25 11:43:08 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Mar 25 11:43:08 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Mar 25 11:43:08 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Tue Mar 25 11:43:17 2003] [notice] caught SIGTERM, shutting down
[Tue Mar 25 11:43:17 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Mar 25 11:43:17 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Mar 25 11:43:17 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Tue Mar 25 11:54:36 2003] [notice] caught SIGTERM, shutting down
[Tue Mar 25 11:56:05 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Mar 25 11:56:05 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Mar 25 11:56:05 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Tue Mar 25 11:56:13 2003] [notice] caught SIGTERM, shutting down
[Tue Mar 25 11:56:13 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Mar 25 11:56:13 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Mar 25 11:56:13 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Wed Mar 26 11:53:31 2003] [notice] caught SIGTERM, shutting down
[Wed Mar 26 11:53:31 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Wed Mar 26 11:53:31 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Wed Mar 26 11:53:31 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Thu Mar 27 15:22:54 2003] [notice] caught SIGTERM, shutting down
[Thu Mar 27 15:22:54 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Mar 27 15:22:54 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Mar 27 15:22:54 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Fri Mar 28 08:20:36 2003] [notice] caught SIGTERM, shutting down
[Fri Mar 28 08:20:36 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Fri Mar 28 08:20:36 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Fri Mar 28 08:20:36 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Mon Mar 31 10:53:43 2003] [notice] caught SIGTERM, shutting down
[Mon Mar 31 10:53:43 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Mon Mar 31 10:53:43 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Mon Mar 31 10:53:43 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Mon Mar 31 10:53:49 2003] [notice] caught SIGTERM, shutting down
[Mon Mar 31 10:53:49 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Mon Mar 31 10:53:49 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Mon Mar 31 10:53:49 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Mon Mar 31 22:31:13 2003] [notice] child pid 8426 exit signal Segmentation faul
t (11)
[Tue Apr 1 08:22:31 2003] [notice] caught SIGTERM, shutting down
[Tue Apr 1 08:22:32 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Apr 1 08:22:32 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Apr 1 08:22:32 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Tue Apr 1 17:09:40 2003] [notice] caught SIGTERM, shutting down
[Tue Apr 1 17:09:40 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Apr 1 17:09:40 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Apr 1 17:09:40 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Wed Apr 2 14:36:28 2003] [notice] caught SIGTERM, shutting down
[Wed Apr 2 14:36:29 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Wed Apr 2 14:36:29 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Wed Apr 2 14:36:29 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Thu Apr 3 10:43:33 2003] [notice] caught SIGTERM, shutting down
[Thu Apr 3 10:49:17 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Apr 3 10:49:18 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Apr 3 10:49:18 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Thu Apr 3 10:49:26 2003] [notice] caught SIGTERM, shutting down
[Thu Apr 3 10:49:26 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Apr 3 10:49:26 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Apr 3 10:49:26 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Thu Apr 3 19:26:56 2003] [notice] caught SIGTERM, shutting down
[Thu Apr 3 19:26:56 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Apr 3 19:26:56 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Apr 3 19:26:56 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Thu Apr 3 19:27:24 2003] [notice] caught SIGTERM, shutting down
[Thu Apr 3 19:27:24 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Apr 3 19:27:24 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Apr 3 19:27:24 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Thu Apr 3 19:32:02 2003] [notice] caught SIGTERM, shutting down
[Thu Apr 3 19:33:34 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Apr 3 19:33:34 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Apr 3 19:33:34 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Thu Apr 3 19:33:42 2003] [notice] caught SIGTERM, shutting down
[Thu Apr 3 19:33:43 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Apr 3 19:33:43 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Apr 3 19:33:43 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Tue Apr 8 09:24:21 2003] [notice] caught SIGTERM, shutting down
[Tue Apr 8 08:06:50 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Apr 8 08:06:50 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Apr 8 08:06:50 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Tue Apr 8 08:06:58 2003] [notice] caught SIGTERM, shutting down
[Tue Apr 8 08:06:58 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Apr 8 08:06:58 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Apr 8 08:06:58 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Tue Apr 8 16:46:27 2003] [notice] child pid 4960 exit signal Segmentation faul
t (11)
[Sun Apr 13 10:18:02 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Sun Apr 13 10:18:02 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Sun Apr 13 10:18:02 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Sun Apr 13 10:18:11 2003] [notice] caught SIGTERM, shutting down
[Sun Apr 13 10:18:11 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Sun Apr 13 10:18:11 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Sun Apr 13 10:18:11 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Sun Apr 13 10:25:58 2003] [notice] caught SIGTERM, shutting down
[Sun Apr 13 10:27:27 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Sun Apr 13 10:27:27 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Sun Apr 13 10:27:27 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Sun Apr 13 10:27:36 2003] [notice] caught SIGTERM, shutting down
[Sun Apr 13 10:27:36 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Sun Apr 13 10:27:36 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Sun Apr 13 10:27:36 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Tue Apr 15 08:09:00 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Apr 15 08:09:00 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Apr 15 08:09:00 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Tue Apr 15 08:09:08 2003] [notice] caught SIGTERM, shutting down
[Tue Apr 15 08:09:08 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Apr 15 08:09:08 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Apr 15 08:09:08 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Tue Apr 15 14:19:52 2003] [notice] caught SIGTERM, shutting down
[Tue Apr 15 14:26:45 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Apr 15 14:26:45 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Apr 15 14:26:45 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Tue Apr 15 14:26:52 2003] [notice] caught SIGTERM, shutting down
[Tue Apr 15 14:26:53 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Tue Apr 15 14:26:53 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Tue Apr 15 14:26:53 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Wed Apr 16 07:28:54 2003] [notice] caught SIGTERM, shutting down
[Wed Apr 16 07:28:55 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Wed Apr 16 07:28:55 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Wed Apr 16 07:28:55 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Wed Apr 16 09:10:51 2003] [notice] caught SIGTERM, shutting down
[Wed Apr 16 09:10:52 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Wed Apr 16 09:10:52 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Wed Apr 16 09:10:52 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Wed Apr 16 20:35:29 2003] [notice] child pid 25942 exit signal Segmentation fau
lt (11)
[Thu Apr 17 12:07:32 2003] [notice] caught SIGTERM, shutting down
[Thu Apr 17 12:07:32 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Apr 17 12:07:32 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Apr 17 12:07:32 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Thu Apr 17 14:14:48 2003] [notice] caught SIGTERM, shutting down
[Thu Apr 17 14:14:49 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Apr 17 14:14:49 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Apr 17 14:14:49 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Thu Apr 17 14:14:56 2003] [notice] caught SIGTERM, shutting down
[Thu Apr 17 14:14:56 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Apr 17 14:14:56 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Apr 17 14:14:56 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Thu Apr 17 14:15:29 2003] [notice] caught SIGTERM, shutting down
[Thu Apr 17 14:15:29 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Apr 17 14:15:29 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Apr 17 14:15:29 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Thu Apr 17 14:16:49 2003] [notice] caught SIGTERM, shutting down
[Thu Apr 17 14:16:49 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Apr 17 14:16:49 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Apr 17 14:16:49 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[Thu Apr 17 15:06:12 2003] [notice] caught SIGTERM, shutting down
[Thu Apr 17 15:06:12 2003] [warn] Loaded DSO modules/mod_jserv.so uses plain Apa
che 1.3 API, this module might crash under EAPI! (please recompile it with -DEAP
I)
[Thu Apr 17 15:06:12 2003] [notice] Apache/1.3.20 (Unix) (RedFlag/Linux) tomcat
/1.0 configured -- resuming normal operations
[Thu Apr 17 15:06:12 2003] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin
/suexec)
[root@localhost httpd]#
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP