Integration
Apache integration with web logic
Setting up Apache 2.2 plugin for Weblogic Clusters (Linux)
1. Download and install Apache for linux. Normal installation steps would be
* User <user_name>
* Listen <listen_port>
official support for apache installing latest version.
apache configuring
1. Download and install Apache for linux. Normal installation steps would be
$ ./configure --prefix=PREFIX (./configure --prefix=/scratch/aime/apache)
$ make
$ make install
$ PREFIX/bin/apachectl -k start
$ PREFIX/bin/apachectl -k stop
$ make
$ make install
$ PREFIX/bin/apachectl -k start
$ PREFIX/bin/apachectl -k stop
2. Copy the mod_wl_22.so file from $MW_HOME/wlserver_10.3/server/plugin/linux/i686 to $APACHE_HOME/modules directory
3. Configure httpd.conf file to incorporate WLS changes* User <user_name>
* Listen <listen_port>
* LoadModule weblogic_module /scratch/aime1/apache/modules/mod_wl_22.so
<IfModule mod_weblogic.c>
WebLogicCluster host1:port,host2:port
MatchExpression *
</IfModule>
4. Start Apache as normal user or as root.WebLogicCluster host1:port,host2:port
MatchExpression *
</IfModule>
official support for apache installing latest version.
apache configuring
Comments
Post a Comment