Linux系统Jsp的环境:Apache,Tomcat配置

2020-01-30 12:21:01王振洲

  # chmod 755 buildconf.sh

  # ./buildconf.sh

  # ./configure --with-apxs=/usr/local/apache/bin/apxs

  # make

  # make install

  # cd /usr/local/jakarta-tomcat-connectors-jk1.2.14-src/jk/native/apache-2.0/

  # cp mod_jk.so /usr/local/apache/modules/

  E 系统整合

  # vi /usr/local/apache/conf/httpd.conf

  在文件最末尾加上如下语句

  #Load mod_jk

  LoadModule jk_module modules/mod_jk.so

  # Configure mod_jk

  JkWorkersFile conf/workers.properties

  JkLogFile logs/mod_jk.log

  JkLogLevel info

  JkMount /*.jsp loadbalancer

  JkMount /servlet/* loadbalancer

  JkMount /application/* loadbalancer

  #vi /usr/local/apache/conf/workers.properties

  添加下列语句

  #

  # workers.properties

  #

  # In Unix, we use forward slashes:

  ps=/

  # list the workers by name

  worker.list=tomcat1, tomcat2, loadbalancer

  # ------------------------

  # First tomcat server

  # ------------------------

  worker.tomcat1.port=8009

  worker.tomcat1.host=127.0.0.1

  worker.tomcat1.type=ajp13

  # Specify the size of the open connection cache.

  #worker.tomcat1.cachesize

  #

  # Specifies the load balance factor when used with

  # a load balancing worker.

  # Note:

  # ----> lbfactor must be > 0

  # ----> Low lbfactor means less work done by the worker.

  worker.tomcat1.lbfactor=100

  # ------------------------

  # Second tomcat server

  # ------------------------

  worker.tomcat2.port=8009

  worker.tomcat2.host=192.168.1.34

  worker.tomcat2.type=ajp13

  # Specify the size of the open connection cache.

  #worker.tomcat2.cachesize

  #

  # Specifies the load balance factor when used with

  # a load balancing worker.

  # Note:

  # ----> lbfactor must be > 0

  # ----> Low lbfactor means less work done by the worker.

  worker.tomcat2.lbfactor=100

  # ------------------------

  # Load Balancer worker

  # ------------------------

  # The loadbalancer (type lb) worker performs weighted round-robin

  # load balancing with sticky sessions.

  # Note:

  # ----> If a worker dies, the load balancer will check its state

  # once in a while. Until then all work is redirected to peer

  # worker.

  worker.loadbalancer.type=lb

  worker.loadbalancer.balanced_workers=tomcat1, tomcat2

  #

  # END workers.properties

  #

  #vi /usr/local/tomcat/conf/server.xml