Skip to main content

Posts

Showing posts with the label Apache

Setting up Apache 2.2 plugin for Weblogic Clusters (Linux)

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 ...