免费注册 查看新帖 |

Chinaunix

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

[Web] apache2 Tomcat6 jk整合不成功 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-04-18 16:18 |只看该作者 |倒序浏览
我模仿http://blog.ossxp.com/2010/01/312/日志进行了apache2,tomcat6的安装与整合
最开始是成功了,因为我访问http://IP/tomcheck.jsp时,探针是工作的。后来我添加了CGI脚本的运行项,开始也成功,第二天重启后就不行了。
现在www.test.com/*/cgi可运行
www.test.com/*.jsp只显示代码
www.test2.com/*.jsp可以正常运行
大家能不能帮我看下问题出在哪里啊,着急~~~~

下面是我的一些配置文件
首先安装软件

  1. sudo aptitude  install tomcat6 tomcat6-docs tomcat6-admin tomcat6-examples
  2. sudo aptitude install apache2
  3. sudo aptitude install libapache2-mod-jk
复制代码
然后配置JK
/etc/apache2/mods-available下,添加jk.conf,内容如下

  1. JkWorkersFile /etc/libapache2-mod-jk/workers.properties

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

  4. JkShmFile /var/log/apache2/jk-runtime-status
  5. # Set the jk log level [debug/error/info]
  6. JkLogLevel info

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

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

  11. # JkRequestLogFormat set the request format
  12. JkRequestLogFormat "%w %V %T"

  13. JkMount /* ajp13_worker
复制代码
编辑JK的工作文件/etc/libapache2-mod-jk/workers.properties
  1. worker.list=ajp13_worker
  2. worker.ajp13_worker.port=8009
  3. worker.ajp13_worker.host=localhost
  4. worker.ajp13_worker.type=ajp13
  5. worker.ajp13_worker.lbfactor=58
  6. worker.ajp13_worker.cachesize=10
  7. worker.ajp13_worker.cache_timeout=600
  8. worker.ajp13_worker.socket_keepalive=1
  9. worker.ajp13_worker.socket_timeout=300
复制代码
/etc/apache2/sites-available/default文件代码如下

  1. <VirtualHost *:80>
  2.     ServerName www.test.com
  3.     DocumentRoot "/var/www"

  4.     <Directory /var/www>
  5.       Options FollowSymLinks
  6.       AllowOverride None
  7.       Order deny,allow
  8.       Allow from all
  9.     </Directory>

  10.     <IfModule dir_module>
  11.       DirectoryIndex index.html
  12.     </IfModule>

  13.     HostnameLookups off
  14.     <Files ~ "\.(html|cgi)$">
  15.       HostnameLookups on
  16.     </Files>

  17.      ScriptAlias /cgi-bin/ /var/www/cgi-bin/
  18.      <Directory /var/www/cgi-bin/>
  19.       Options +ExecCGI
  20.       AddHandler cgi-script .cgi
  21.       AllowOverride None
  22.       Order Deny,Allow
  23.       Allow from all
  24.     </Directory>
  25. ErrorLog /var/log/apache2/error.log

  26.         # Possible values include: debug, info, notice, warn, error, crit,
  27.         # alert, emerg.
  28.         LogLevel warn

  29.         CustomLog /var/log/apache2/access.log combined
  30. </VirtualHost>
复制代码
/etc/apache2/sites-available/tomcat代码如下

  1. <VirtualHost *:80>

  2. ServerName www.test2.com
  3. DocumentRoot /var/www
  4. ErrorLog /var/log/apache2/tomcat-error.log
  5. LogLevel warn
  6. CustomLog /var/log/apache2/tomcat.log combined

  7. JKMount /* ajp13_worker
  8. </VirtualHost>
复制代码
etc/tomcat6/server.xml文件
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <!--
  3.   Licensed to the Apache Software Foundation (ASF) under one or more
  4.   contributor license agreements.  See the NOTICE file distributed with
  5.   this work for additional information regarding copyright ownership.
  6.   The ASF licenses this file to You under the Apache License, Version 2.0
  7.   (the "License"); you may not use this file except in compliance with
  8.   the License.  You may obtain a copy of the License at

  9.       http://www.apache.org/licenses/LICENSE-2.0

  10.   Unless required by applicable law or agreed to in writing, software
  11.   distributed under the License is distributed on an "AS IS" BASIS,
  12.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.   See the License for the specific language governing permissions and
  14.   limitations under the License.
  15. -->
  16. <!-- Note:  A "Server" is not itself a "Container", so you may not
  17.      define subcomponents such as "Valves" at this level.
  18.      Documentation at /docs/config/server.html
  19. -->
  20. <Server port="8005" shutdown="SHUTDOWN">

  21.   <!--APR library loader. Documentation at /docs/apr.html -->
  22.   <!--
  23.   <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
  24.   -->
  25.   <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
  26.   <Listener className="org.apache.catalina.core.JasperListener" />
  27.   <!-- Prevent memory leaks due to use of particular java/javax APIs-->
  28.   <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
  29.   <!-- JMX Support for the Tomcat server. Documentation at /docs/non-existent.html -->
  30.   <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
  31.   <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />

  32.   <!-- Global JNDI resources
  33.        Documentation at /docs/jndi-resources-howto.html
  34. -->
  35. <GlobalNamingResources>
  36.     <!-- Editable user database that can also be used by
  37.          UserDatabaseRealm to authenticate users
  38.     -->
  39.     <Resource name="UserDatabase" auth="Container"
  40.               type="org.apache.catalina.UserDatabase"
  41.               description="User database that can be updated and saved"
  42.               factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
  43.               pathname="conf/tomcat-users.xml" />
  44.   </GlobalNamingResources>

  45.   <!-- A "Service" is a collection of one or more "Connectors" that share
  46.        a single "Container" Note:  A "Service" is not itself a "Container",
  47.        so you may not define subcomponents such as "Valves" at this level.
  48.        Documentation at /docs/config/service.html
  49.    -->
  50.   <Service name="Catalina">

  51.     <!--The connectors can use a shared executor, you can define one or more named thread pools-->
  52.     <!--
  53.     <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
  54.         maxThreads="150" minSpareThreads="4"/>
  55.     -->


  56.     <!-- A "Connector" represents an endpoint by which requests are received
  57.          and responses are returned. Documentation at :
  58.          Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
  59.          Java AJP  Connector: /docs/config/ajp.html
  60.          APR (HTTP/AJP) Connector: /docs/apr.html
  61.          Define a non-SSL HTTP/1.1 Connector on port 8080
  62.     -->
  63.     <Connector port="8080" protocol="HTTP/1.1"
  64.                connectionTimeout="20000"
  65.                URIEncoding="UTF-8"
  66.                redirectPort="8443" />
  67.     <!-- A "Connector" using the shared thread pool-->
  68.     <!—
  69. <Connector executor="tomcatThreadPool"
  70.                port="8080" protocol="HTTP/1.1"
  71.                connectionTimeout="20000"
  72.                redirectPort="8443" />
  73.     -->
  74.     <!-- Define a SSL HTTP/1.1 Connector on port 8443
  75.          This connector uses the JSSE configuration, when using APR, the
  76.          connector should be using the OpenSSL style configuration
  77.          described in the APR documentation -->
  78.     <!--
  79.     <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
  80.                maxThreads="150" scheme="https" secure="true"
  81.                clientAuth="false" sslProtocol="TLS" />
  82.     -->
  83. <!--
  84.      Define an AJP 1.3 Connector on port 8009
  85.   -->
  86.     <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />



  87.     <!-- An Engine represents the entry point (within Catalina) that processes
  88.          every request.  The Engine implementation for Tomcat stand alone
  89.          analyzes the HTTP headers included with the request, and passes them
  90.          on to the appropriate Host (virtual host).
  91.          Documentation at /docs/config/engine.html -->

  92.     <!-- You should set jvmRoute to support load-balancing via AJP ie :
  93.     <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">         
  94.     -->
  95.     <Engine name="Catalina" defaultHost="localhost" jvmRoute="tomcat1">

  96.       <!--For clustering, please take a look at documentation at:
  97.           /docs/cluster-howto.html  (simple how to)
  98.           /docs/config/cluster.html (reference documentation) -->
  99.       <!--
  100.       <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
  101.       -->
  102. <!-- The request dumper valve dumps useful debugging information about
  103.            the request and response data received and sent by Tomcat.
  104.            Documentation at: /docs/config/valve.html -->
  105.       <!--
  106.       <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
  107.       -->

  108.       <!-- This Realm uses the UserDatabase configured in the global JNDI
  109.            resources under the key "UserDatabase".  Any edits
  110.            that are performed against this UserDatabase are immediately
  111.            available for use by the Realm.  -->
  112.       <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
  113.              resourceName="UserDatabase"/>

  114.       <!-- Define the default virtual host
  115.            Note: XML Schema validation will not work with Xerces 2.2.
  116.        -->
  117.       <Host name="localhost"  appBase="webapps"
  118.             unpackWARs="true" autoDeploy="true"
  119.             xmlValidation="false" xmlNamespaceAware="false">

  120.         <!-- SingleSignOn valve, share authentication between web applications
  121.              Documentation at: /docs/config/valve.html -->
  122.         <!--
  123.         <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
  124.         -->

  125.         <!-- Access log processes all example.
  126.              Documentation at: /docs/config/valve.html -->
  127.         <!--
  128.         <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"  
  129.                prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>
  130.         -->
  131. <Context path="" docBase="/var/www/" debug="0" reloadable="true" crossContext="true"/>
  132.       </Host>
  133.     </Engine>
  134.   </Service>
  135. </Server>
复制代码

论坛徽章:
0
2 [报告]
发表于 2011-04-18 16:25 |只看该作者
其实我是这么理解的.www.test.com访问的是apache服务器,www.test2.com访问的是tomcat,如果二者整合成功的话,利用www.test.com访问jsp,应该是成功的。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP