workers.properties
上传用户:zhangkaihu
上传日期:2008-02-20
资源大小:3690k
文件大小:6k
源码类别:

Web服务器

开发平台:

Java

  1. # workers.properties -
  2. #
  3. # This file provides jk derived plugins with the needed information to
  4. # connect to the different tomcat workers.  Note that the distributed
  5. # version of this file requires modification before it is usable by a
  6. # plugin.
  7. #
  8. # As a general note, the characters $( and ) are used internally to define
  9. # macros. Do not use them in your own configuration!!!
  10. #
  11. # Whenever you see a set of lines such as:
  12. # x=value
  13. # y=$(x)something
  14. #
  15. # the final value for y will be valuesomething
  16. #
  17. # Normaly all you will need to do is un-comment and modify the first three
  18. # properties, i.e. workers.tomcat_home, workers.java_home and ps.
  19. # Most of the configuration is derived from these.
  20. #
  21. # When you are done updating workers.tomcat_home, workers.java_home and ps
  22. # you should have 3 workers configured:
  23. #
  24. # - An ajp12 worker that connects to localhost:8007
  25. # - An ajp13 worker that connects to localhost:8009
  26. # - A jni inprocess worker.
  27. # - A load balancer worker
  28. #
  29. # However by default the plugins will only use the ajp12 worker. To have
  30. # the plugins use other workers you should modify the worker.list property.
  31. #
  32. #
  33. # OPTIONS ( very important for jni mode ) 
  34. #
  35. # workers.tomcat_home should point to the location where you
  36. # installed tomcat. This is where you have your conf, webapps and lib
  37. # directories.
  38. #
  39. workers.tomcat_home=/var/tomcat3
  40. #
  41. # workers.java_home should point to your Java installation. Normally
  42. # you should have a bin and lib directories beneath it.
  43. #
  44. workers.java_home=/opt/IBMJava2-13
  45. #
  46. # You should configure your environment slash... ps= on NT and / on UNIX
  47. # and maybe something different elsewhere.
  48. #
  49. ps=/
  50. #
  51. #------ ADVANCED MODE ------------------------------------------------
  52. #---------------------------------------------------------------------
  53. #
  54. #
  55. #------ DEFAULT worket list ------------------------------------------
  56. #---------------------------------------------------------------------
  57. #
  58. #
  59. # The workers that your plugins should create and work with
  60. #
  61. # Add 'inprocess' if you want JNI connector 
  62. worker.list=ajp12, ajp13
  63. # , inprocess
  64. #
  65. #------ DEFAULT ajp12 WORKER DEFINITION ------------------------------
  66. #---------------------------------------------------------------------
  67. #
  68. #
  69. # Defining a worker named ajp12 and of type ajp12
  70. # Note that the name and the type do not have to match.
  71. #
  72. worker.ajp12.port=8007
  73. worker.ajp12.host=localhost
  74. worker.ajp12.type=ajp12
  75. #
  76. # Specifies the load balance factor when used with
  77. # a load balancing worker.
  78. # Note:
  79. #  ----> lbfactor must be > 0
  80. #  ----> Low lbfactor means less work done by the worker.
  81. worker.ajp12.lbfactor=1
  82. #
  83. #------ DEFAULT ajp13 WORKER DEFINITION ------------------------------
  84. #---------------------------------------------------------------------
  85. #
  86. #
  87. # Defining a worker named ajp13 and of type ajp13
  88. # Note that the name and the type do not have to match.
  89. #
  90. worker.ajp13.port=8009
  91. worker.ajp13.host=localhost
  92. worker.ajp13.type=ajp13
  93. #
  94. # Specifies the load balance factor when used with
  95. # a load balancing worker.
  96. # Note:
  97. #  ----> lbfactor must be > 0
  98. #  ----> Low lbfactor means less work done by the worker.
  99. worker.ajp13.lbfactor=1
  100. #
  101. # Specify the size of the open connection cache.
  102. #worker.ajp13.cachesize
  103. #
  104. #------ DEFAULT LOAD BALANCER WORKER DEFINITION ----------------------
  105. #---------------------------------------------------------------------
  106. #
  107. #
  108. # The loadbalancer (type lb) workers perform wighted round-robin
  109. # load balancing with sticky sessions.
  110. # Note:
  111. #  ----> If a worker dies, the load balancer will check its state
  112. #        once in a while. Until then all work is redirected to peer
  113. #        workers.
  114. worker.loadbalancer.type=lb
  115. worker.loadbalancer.balanced_workers=ajp12, ajp13
  116. #
  117. #------ DEFAULT JNI WORKER DEFINITION---------------------------------
  118. #---------------------------------------------------------------------
  119. #
  120. #
  121. # Defining a worker named inprocess and of type jni
  122. # Note that the name and the type do not have to match.
  123. #
  124. worker.inprocess.type=jni
  125. #
  126. #------ CLASSPATH DEFINITION -----------------------------------------
  127. #---------------------------------------------------------------------
  128. #
  129. #
  130. # Additional class path components.
  131. #
  132. worker.inprocess.class_path=$(workers.tomcat_home)$(ps)lib$(ps)tomcat.jar
  133. #
  134. # Setting the command line for tomcat. 
  135. # Note: The cmd_line string may not contain spaces.
  136. #
  137. worker.inprocess.cmd_line=start
  138. # Not needed, but can be customized.
  139. #worker.inprocess.cmd_line=-config
  140. #worker.inprocess.cmd_line=$(workers.tomcat_home)$(ps)conf$(ps)server.xml
  141. #worker.inprocess.cmd_line=-home
  142. #worker.inprocess.cmd_line=$(workers.tomcat_home)
  143. #
  144. # The JVM that we are about to use
  145. #
  146. # This is for Java2
  147. #
  148. # Windows
  149. worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)jvm.dll
  150. # IBM JDK1.3 
  151. #worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)bin$(ps)classic$(ps)libjvm.so
  152. # Unix - Sun VM or blackdown
  153. #worker.inprocess.jvm_lib=$(workers.java_home)$(ps)jre$(ps)lib$(ps)i386$(ps)classic$(ps)libjvm.so
  154. #
  155. # And this is for jdk1.1.X
  156. #
  157. #worker.inprocess.jvm_lib=$(workers.java_home)$(ps)bin$(ps)javai.dll
  158. #
  159. # Setting the place for the stdout and stderr of tomcat
  160. #
  161. worker.inprocess.stdout=$(workers.tomcat_home)$(ps)logs$(ps)inprocess.stdout
  162. worker.inprocess.stderr=$(workers.tomcat_home)$(ps)logs$(ps)inprocess.stderr
  163. #
  164. # Setting the tomcat.home Java property
  165. #
  166. #worker.inprocess.sysprops=tomcat.home=$(workers.tomcat_home)
  167. #
  168. # Java system properties
  169. #
  170. # worker.inprocess.sysprops=java.compiler=NONE
  171. # worker.inprocess.sysprops=myprop=mypropvalue
  172. #
  173. # Additional path components.
  174. #
  175. # worker.inprocess.ld_path=d:$(ps)SQLLIB$(ps)bin
  176. #