免费注册 查看新帖 |

Chinaunix

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

[Web] 又是apache和tomcat的JK整合,折磨死我了, [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-04-22 16:40 |只看该作者 |倒序浏览
我模仿http://blog.ossxp.com/2010/01/296/,重新安装了我的apache和tomcat,
现在他们的版本分别为
apache 2.2.17
tomcat 7.0.12
JK 1.2-30

按照这个博文整合前,apache(IP)和tomcat(IP:8080)分别好用。
整合后,没有错误提示,但是,我访问IP时,apache主页没有问题,访问IP/tomcheck.jsp,是显示源代码。访问IP:8080时,没有错误信息,页面为空白。在tomcat下部署的服务,正常我访问IP:8080/geoserver,(正常能出现Geoserver的主界面才对)。也一样没有错误提示,只出现一个空白页。

大侠们,帮我看看该怎么配置吧,我真的是一头雾水

apache的httpd.conf文件如下:

  1. ServerRoot "/usr/local/apache2"


  2. #Listen 12.34.56.78:80
  3. Listen myIP:80


  4. #
  5. # Example:
  6. # LoadModule foo_module modules/mod_foo.so
  7. #
  8. LoadModule jk_module modules/mod_jk.so
  9. Include /usr/local/apache2/conf/mod_jk.conf
  10. <IfModule !mpm_netware_module>
  11. <IfModule !mpm_winnt_module>

  12. #
  13. # If you wish httpd to run as a different user or group, you must run
  14. # httpd as root initially and it will switch.  
  15. #
  16. # User/Group: The name (or #number) of the user/group to run httpd as.
  17. # It is usually good practice to create a dedicated user and group for
  18. # running httpd, as with most system services.
  19. #
  20. User yrf
  21. Group yrf

  22. </IfModule>
  23. </IfModule>

  24. # 'Main' server configuration
  25. #
  26. # The directives in this section set up the values used by the 'main'
  27. # server, which responds to any requests that aren't handled by a
  28. # <VirtualHost> definition.  These values also provide defaults for
  29. # any <VirtualHost> containers you may define later in the file.
  30. #
  31. # All of these directives may appear inside <VirtualHost> containers,
  32. # in which case these default settings will be overridden for the
  33. # virtual host being defined.
  34. #


  35. ServerAdmin you@example.com


  36. ServerName myIP:80


  37. DocumentRoot "/usr/local/apache2/htdocs"


  38. <Directory />
  39.     Options FollowSymLinks
  40.     AllowOverride None
  41.     Order deny,allow
  42.     Deny from all
  43. </Directory>


  44. <Directory "/usr/local/apache2/htdocs">
  45.    
  46.     Options Indexes FollowSymLinks
  47.     AllowOverride None
  48.     Order allow,deny
  49.     Allow from all

  50. </Directory>

  51. #
  52. # DirectoryIndex: sets the file that Apache will serve if a directory
  53. # is requested.
  54. #
  55. <IfModule dir_module>
  56.     DirectoryIndex index.html index.jsp
  57. </IfModule>

  58. #
  59. # The following lines prevent .htaccess and .htpasswd files from being
  60. # viewed by Web clients.
  61. #
  62. <FilesMatch "^\.ht">
  63.     Order allow,deny
  64.     Deny from all
  65.     Satisfy All
  66. </FilesMatch>


  67. ErrorLog "logs/error_log"


  68. LogLevel warn

  69. <IfModule log_config_module>
  70.     #
  71.     # The following directives define some format nicknames for use with
  72.     # a CustomLog directive (see below).
  73.     #
  74.     LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  75.     LogFormat "%h %l %u %t \"%r\" %>s %b" common

  76.     <IfModule logio_module>
  77.       # You need to enable mod_logio.c to use %I and %O
  78.       LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  79.     </IfModule>

  80.    
  81.     #
  82.     CustomLog "logs/access_log" common

  83.     #
  84.     # If you prefer a logfile with access, agent, and referer information
  85.     # (Combined Logfile Format) you can use the following directive.
  86.     #
  87.     #CustomLog "logs/access_log" combined
  88. </IfModule>

  89. <IfModule alias_module>

  90.     ScriptAlias /cgi-bin/ "/usr/local/apache2/cgi-bin/"

  91. </IfModule>

  92. <IfModule cgid_module>
  93.     #
  94.     # ScriptSock: On threaded servers, designate the path to the UNIX
  95.     # socket used to communicate with the CGI daemon of mod_cgid.
  96.     #
  97.     #Scriptsock logs/cgisock
  98. </IfModule>


  99. <Directory "/usr/local/apache2/cgi-bin">
  100.     AllowOverride None
  101.     Options None
  102.     Order allow,deny
  103.     Allow from all
  104. </Directory>


  105. DefaultType text/plain

  106. <IfModule mime_module>
  107.     #
  108.     # TypesConfig points to the file containing the list of mappings from
  109.     # filename extension to MIME-type.
  110.     #
  111.     TypesConfig conf/mime.types

  112.     #
  113.     # AddType allows you to add to or override the MIME configuration
  114.     # file specified in TypesConfig for specific file types.
  115.     #
  116.     #AddType application/x-gzip .tgz
  117.     #
  118.     # AddEncoding allows you to have certain browsers uncompress
  119.     # information on the fly. Note: Not all browsers support this.
  120.     #
  121.     #AddEncoding x-compress .Z
  122.     #AddEncoding x-gzip .gz .tgz
  123.     #
  124.     # If the AddEncoding directives above are commented-out, then you
  125.     # probably should define those extensions to indicate media types:
  126.     #
  127.     AddType application/x-compress .Z
  128.     AddType application/x-gzip .gz .tgz

  129.     #
  130.     # AddHandler allows you to map certain file extensions to "handlers":
  131.     # actions unrelated to filetype. These can be either built into the server
  132.     # or added with the Action directive (see below)
  133.     #
  134.     # To use CGI scripts outside of ScriptAliased directories:
  135.     # (You will also need to add "ExecCGI" to the "Options" directive.)
  136.     #
  137.     #AddHandler cgi-script .cgi

  138.     # For type maps (negotiated resources):
  139.     #AddHandler type-map var

  140.     #
  141.     # Filters allow you to process content before it is sent to the client.
  142.     #
  143.     # To parse .shtml files for server-side includes (SSI):
  144.     # (You will also need to add "Includes" to the "Options" directive.)
  145.     #
  146.     #AddType text/html .shtml
  147.     #AddOutputFilter INCLUDES .shtml
  148. </IfModule>

  149. #
  150. # The mod_mime_magic module allows the server to use various hints from the
  151. # contents of the file itself to determine its type.  The MIMEMagicFile
  152. # directive tells the module where the hint definitions are located.
  153. #
  154. #MIMEMagicFile conf/magic

  155. #
  156. # Customizable error responses come in three flavors:
  157. # 1) plain text 2) local redirects 3) external redirects
  158. #
  159. # Some examples:
  160. #ErrorDocument 500 "The server made a boo boo."
  161. #ErrorDocument 404 /missing.html
  162. #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
  163. #ErrorDocument 402 http://www.example.com/subscription_info.html
  164. #

  165. #
  166. # EnableMMAP and EnableSendfile: On systems that support it,
  167. # memory-mapping or the sendfile syscall is used to deliver
  168. # files.  This usually improves server performance, but must
  169. # be turned off when serving from networked-mounted
  170. # filesystems or if support for these functions is otherwise
  171. # broken on your system.
  172. #
  173. #EnableMMAP off
  174. #EnableSendfile off

  175. # Supplemental configuration
  176. #
  177. # The configuration files in the conf/extra/ directory can be
  178. # included to add extra features or to modify the default configuration of
  179. # the server, or you may simply copy their contents here and change as
  180. # necessary.

  181. # Server-pool management (MPM specific)
  182. #Include conf/extra/httpd-mpm.conf

  183. # Multi-language error messages
  184. #Include conf/extra/httpd-multilang-errordoc.conf

  185. # Fancy directory listings
  186. #Include conf/extra/httpd-autoindex.conf

  187. # Language settings
  188. #Include conf/extra/httpd-languages.conf

  189. # User home directories
  190. #Include conf/extra/httpd-userdir.conf

  191. # Real-time info on requests and configuration
  192. #Include conf/extra/httpd-info.conf

  193. # Virtual hosts
  194. #Include conf/extra/httpd-vhosts.conf

  195. # Local access to the Apache HTTP Server Manual
  196. #Include conf/extra/httpd-manual.conf

  197. # Distributed authoring and versioning (WebDAV)
  198. #Include conf/extra/httpd-dav.conf

  199. # Various default settings
  200. #Include conf/extra/httpd-default.conf

  201. # Secure (SSL/TLS) connections
  202. #Include conf/extra/httpd-ssl.conf
  203. #
  204. # Note: The following must must be present to support
  205. #       starting without SSL on platforms with no /dev/random equivalent
  206. #       but a statically compiled-in mod_ssl.
  207. #
  208. <IfModule ssl_module>
  209. SSLRandomSeed startup builtin
  210. SSLRandomSeed connect builtin
  211. </IfModule>
复制代码
然后我在tomcat的context.xml下添加了context

  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. <!-- The contents of this file will be loaded for each web application -->
  17. <Context>

  18.     <!-- Default set of monitored resources -->
  19.     <WatchedResource>WEB-INF/web.xml</WatchedResource>

  20.     <!-- Uncomment this to disable session persistence across Tomcat restarts -->
  21.     <!--
  22.     <Manager pathname="" />
  23.     -->

  24.     <!-- Uncomment this to enable Comet connection tacking (provides events
  25.          on session expiration as well as webapp lifecycle) -->
  26.     <!--
  27.     <Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
  28.     -->

  29. </Context>
  30. <Context path="" docBase="/usr/local/apache2/htdocs" debug="0" reloadable="true" crossContext="true"/>
复制代码
其实就是添加了最后一行

同样的,在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.   <!-- Security listener. Documentation at /docs/config/listeners.html
  22.   <Listener className="org.apache.catalina.security.SecurityListener" />
  23.   -->
  24.   <!--APR library loader. Documentation at /docs/apr.html -->
  25.   <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
  26.   <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
  27.   <Listener className="org.apache.catalina.core.JasperListener" />
  28.   <!-- Prevent memory leaks due to use of particular java/javax APIs-->
  29.   <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
  30.   <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
  31.   <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />

  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.   
  52.     <!--The connectors can use a shared executor, you can define one or more named thread pools-->
  53.     <!--
  54.     <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
  55.         maxThreads="150" minSpareThreads="4"/>
  56.     -->
  57.    
  58.    
  59.     <!-- A "Connector" represents an endpoint by which requests are received
  60.          and responses are returned. Documentation at :
  61.          Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
  62.          Java AJP  Connector: /docs/config/ajp.html
  63.          APR (HTTP/AJP) Connector: /docs/apr.html
  64.          Define a non-SSL HTTP/1.1 Connector on port 8080
  65.     -->
  66.     <Connector port="8080" protocol="HTTP/1.1"
  67.                connectionTimeout="20000"
  68.                redirectPort="8443" />
  69.     <!-- A "Connector" using the shared thread pool-->
  70.     <!--
  71.     <Connector executor="tomcatThreadPool"
  72.                port="8080" protocol="HTTP/1.1"
  73.                connectionTimeout="20000"
  74.                redirectPort="8443" />
  75.     -->           
  76.     <!-- Define a SSL HTTP/1.1 Connector on port 8443
  77.          This connector uses the JSSE configuration, when using APR, the
  78.          connector should be using the OpenSSL style configuration
  79.          described in the APR documentation -->
  80.     <!--
  81.     <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
  82.                maxThreads="150" scheme="https" secure="true"
  83.                clientAuth="false" sslProtocol="TLS" />
  84.     -->

  85.     <!-- Define an AJP 1.3 Connector on port 8009 -->
  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">

  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.       <!-- Use the LockOutRealm to prevent attempts to guess user passwords
  103.            via a brute-force attack -->
  104.       <Realm className="org.apache.catalina.realm.LockOutRealm">
  105.         <!-- This Realm uses the UserDatabase configured in the global JNDI
  106.              resources under the key "UserDatabase".  Any edits
  107.              that are performed against this UserDatabase are immediately
  108.              available for use by the Realm.  -->
  109.         <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
  110.                resourceName="UserDatabase"/>
  111.       </Realm>

  112.       <Host name="localhost"  appBase="webapps"
  113.             unpackWARs="true" autoDeploy="true">

  114.         <!-- SingleSignOn valve, share authentication between web applications
  115.              Documentation at: /docs/config/valve.html -->
  116.         <!--
  117.         <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
  118.         -->

  119.         <!-- Access log processes all example.
  120.              Documentation at: /docs/config/valve.html
  121.              Note: The pattern used is equivalent to using pattern="common" -->
  122.         <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"  
  123.                prefix="localhost_access_log." suffix=".txt"
  124.                pattern="%h %l %u %t &quot;%r&quot; %s %b" resolveHosts="false"/>
  125. <Context path="" docBase="/usr/local/apache2/htdocs" debug="0" reloadable="true" crossContext="true"/>

  126.       </Host>
  127.     </Engine>
  128.   </Service>
  129. </Server>
复制代码
添加了最后一行,其他没变

能不能帮我看下,是不是哪里设置不对了~~~{:3_201:}

论坛徽章:
0
2 [报告]
发表于 2011-04-23 23:39 |只看该作者
访问IP:8080时,没有错误信息,页面为空白。

>>>>>>>>>>>>>>>正常的话会显示那只猫的页面的,估计这里就错了。看看jdk的配置正确吗。

论坛徽章:
0
3 [报告]
发表于 2011-04-24 11:53 |只看该作者
回复 2# linkiang


    不是的,没有配置JK选项的话,单独启动tomcat是可以看到那个猫的页面的,设置了连接后,就不行了

论坛徽章:
6
CU大牛徽章
日期:2013-04-17 10:59:39CU大牛徽章
日期:2013-04-17 11:01:45CU大牛徽章
日期:2013-04-17 11:02:15CU大牛徽章
日期:2013-04-17 11:02:36CU大牛徽章
日期:2013-04-17 11:02:582015年辞旧岁徽章
日期:2015-03-03 16:54:15
4 [报告]
发表于 2011-04-25 14:10 |只看该作者
tomcat 7.0.12已经不需要jk了,和apache整合以后反而降低性能.
单独用就可以了

论坛徽章:
0
5 [报告]
发表于 2011-04-25 15:13 |只看该作者
回复 4# realmon


    哦,是吗,这样倒是方便了,有文献支持吗,给我发个链接看下呗。呵呵。

论坛徽章:
0
6 [报告]
发表于 2011-04-25 22:26 |只看该作者
现在tomcat独自跑,php用nginx.......

论坛徽章:
0
7 [报告]
发表于 2011-04-26 08:14 |只看该作者
回复 6# c2shield


    单独使用是可以,可是现在我很想跑通两者的整合问题,为什么就是不成功呢,汗

论坛徽章:
6
CU大牛徽章
日期:2013-04-17 10:59:39CU大牛徽章
日期:2013-04-17 11:01:45CU大牛徽章
日期:2013-04-17 11:02:15CU大牛徽章
日期:2013-04-17 11:02:36CU大牛徽章
日期:2013-04-17 11:02:582015年辞旧岁徽章
日期:2015-03-03 16:54:15
8 [报告]
发表于 2011-04-26 09:15 |只看该作者
本帖最后由 realmon 于 2011-04-26 09:17 编辑

参考
http://tomcat.apache.org/tomcat-7.0-doc/connectors.html
AJP下那一段话,大概意思是没有特殊需要就不需要用jk了
我原来的apache+tomcat已经改为用LVS+jk了

至于jk的问题,你把log发出来看看 /etc/httpd/logs/mok_jk.log

论坛徽章:
0
9 [报告]
发表于 2011-04-26 09:26 |只看该作者
回复 8# realmon

  1. [Thu Apr 21 09:33:16 2011][1397:139947344553728] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  2. [Thu Apr 21 09:33:16 2011][1399:139947344553728] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  3. [Thu Apr 21 09:40:36 2011][1399:139947344553728] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  4. [Thu Apr 21 09:44:46 2011][1399:139947344553728] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  5. [Thu Apr 21 09:45:19 2011]worker1 202.199.230.171 0.035937
  6. [Thu Apr 21 09:46:21 2011]worker1 202.199.230.171 0.002314
  7. [Thu Apr 21 09:46:24 2011]worker1 202.199.230.171 0.000372
  8. [Thu Apr 21 09:46:26 2011]worker1 202.199.230.171 0.000346
  9. [Thu Apr 21 09:46:28 2011]worker1 202.199.230.171 0.000361
  10. [Thu Apr 21 09:46:30 2011]worker1 202.199.230.171 0.000346
  11. [Thu Apr 21 09:54:47 2011][1886:140501269899008] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  12. [Thu Apr 21 09:54:47 2011][1888:140501269899008] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  13. [Thu Apr 21 10:11:47 2011][1888:140501269899008] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  14. [Thu Apr 21 10:12:36 2011]worker1 202.199.230.171 0.008260
  15. [Thu Apr 21 10:19:30 2011]worker1 202.199.230.171 0.002223
  16. [Thu Apr 21 10:23:18 2011]worker1 202.199.230.171 0.002185
  17. "mod_jk.log" 20L, 1711C                                       1,1           Top
  18. [Thu Apr 21 09:33:16 2011][1397:139947344553728] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  19. [Thu Apr 21 09:33:16 2011][1399:139947344553728] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  20. [Thu Apr 21 09:40:36 2011][1399:139947344553728] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  21. [Thu Apr 21 09:44:46 2011][1399:139947344553728] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  22. [Thu Apr 21 09:45:19 2011]worker1 202.199.230.171 0.035937
  23. [Thu Apr 21 09:46:21 2011]worker1 202.199.230.171 0.002314
  24. [Thu Apr 21 09:46:24 2011]worker1 202.199.230.171 0.000372
  25. [Thu Apr 21 09:46:26 2011]worker1 202.199.230.171 0.000346
  26. [Thu Apr 21 09:46:28 2011]worker1 202.199.230.171 0.000361
  27. [Thu Apr 21 09:46:30 2011]worker1 202.199.230.171 0.000346
  28. [Thu Apr 21 09:54:47 2011][1886:140501269899008] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  29. [Thu Apr 21 09:54:47 2011][1888:140501269899008] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  30. [Thu Apr 21 10:11:47 2011][1888:140501269899008] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  31. [Thu Apr 21 10:12:36 2011]worker1 202.199.230.171 0.008260
  32. [Thu Apr 21 10:19:30 2011]worker1 202.199.230.171 0.002223
  33. [Thu Apr 21 10:23:18 2011]worker1 202.199.230.171 0.002185
  34. [Thu Apr 21 10:23:21 2011]worker1 202.199.230.171 0.000375
  35. [Fri Apr 22 14:33:15 2011][1363:140728261793536] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  36. [Fri Apr 22 14:33:15 2011][1365:140728261793536] [info] init_jk::mod_jk.c (3198): mod_jk/1.2.31 (1026297) initialized
  37. [Fri Apr 22 14:33:36 2011]worker1 202.199.230.171 0.063182
复制代码
这是我所有的jklog,最近因为着急要做后面的实验,所以把jk整合的部分都注释掉了,可还是很想能把这部分整合上

论坛徽章:
6
CU大牛徽章
日期:2013-04-17 10:59:39CU大牛徽章
日期:2013-04-17 11:01:45CU大牛徽章
日期:2013-04-17 11:02:15CU大牛徽章
日期:2013-04-17 11:02:36CU大牛徽章
日期:2013-04-17 11:02:582015年辞旧岁徽章
日期:2015-03-03 16:54:15
10 [报告]
发表于 2011-04-26 09:26 |只看该作者
我的配置文件供你参考
/etc/httpd/conf.d/jk.conf
  1. LoadModule jk_module modules/mod_jk-1.2.31-httpd-2.2.x.so

  2. <ifmodule mod_jk.c>
  3. JkWorkersFile /etc/httpd/conf/workers.properties
  4. JkLogFile /etc/httpd/logs/mod_jk.log
  5. JkShmFile logs/mod_jk.shm
  6. JkLogLevel warn
  7. JkLogStampFormat "[%a %b %d %H:%M:%S %Y]"
  8. JkMount /*.do hhlb
  9. JkMount /*.jsp hhlb
  10. JkMount /manager/* hhlb
  11. </ifmodule>

  12. # vim:ft=apache:
复制代码
/etc/httpd/conf/workers.properties
  1. #====== list all app servers here ======
  2. worker.list=hhlb,tomcat001,tomcat002
  3. #recovery_options=3 # do not recovery
  4. #====== balancer ======
  5. worker.hhlb.type=lb
  6. worker.hhlb.balance_workers=tomcat001,tomcat002  # replaces old balanced_workers directive for mod_jk 1.2.7 +.
  7. worker.hhlb.sticky_session=1
  8. #====== tomcat001 ======
  9. worker.tomcat001.port=8009
  10. worker.tomcat001.host=192.168.1.200
  11. worker.tomcat001.type=ajp13
  12. worker.tomcat001.lbfactor=1
  13. #====== tomcat002 ======
  14. worker.tomcat002.port=8009
  15. worker.tomcat002.host=192.168.1.201
  16. worker.tomcat002.type=ajp13
  17. worker.tomcat002.lbfactor=1
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP