Apache implements weblogic cluster configuration

  1. Install apache and install a relatively stable version. If you want to test whether it can start normally after installation, you can test it by visiting http://localhost/ .
  2. Install Weblogic, see documentation
  3. Copy the mod_wl_20.so file under the bea installation directory weblogic81/server/bin to the Apache2/modules/ directory under the apache installation directory
  4. Add the Weblogic module to Apache and find the conf directory in the apache2 installation directory.

Add the following lines in httpd.conf,

LoadModule weblogic_module modules/mod_wl_20.so

<IfModule mod_weblogic.c>
      WebLogicCluster localhost:7082,localhost:7084,localhost:7086
       MatchExpression *.jsp
       MatchExpression *.*
       MatchExpression *
</IfModule>

5. Modify the gisServer.properties file under AppConfig, change serverip to apache address, and serverport to apache port.

6. Modify cabletech_gis_system.properties under GisConfig

 

Guess you like

Origin blog.csdn.net/caryxp/article/details/132680089