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
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.
$ ./configure --prefix=PREFIX (./configure --prefix=/scratch/aime/apache)
$ 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.
For more information:http://download.oracle.com/docs/cd/E13222_01/wls/docs92/plugins/apache.html
Comments
Post a Comment