Below steps explains the steps required on how to install Apache Webserver Installation and configure weblogic plug-in:
Step1: Download the any stable version of httpd for your operating environemnt (Now I am intersted in Solaris) suitable binaries given as tar/zip file (Ex: httpd-2.2.11.tar) and Extract it
tar -xvf httpd-2.2.11.tar
Step2: Go to httpd-2.2.11 directory and execute the confiure command to configure the apache in one folder (Ex: apache2)
cd httpd-2.2.11 and run ./configure --prefix=$Home/apache2Step3: We need to execute the below commands to build I mean compile the binaries
make install
Step4: take the backup of httpd.conf file
cp httpd.conf httpd.conf_original
Step5: Edit the httpd.conf configuration file
vi httpd.conf
ServerRoot "$Home/apache2"
(ServerRoot is the path to the server's configuration, error and log files.It is possible to change this path, provided all the necessary files are copiedto the new location accordingly)
Listen IPAddress:Port (Ex: Listen 4.193.53.24:7012)
LoadModule weblogic_module modules/mod_wl_22.so
User wlusername
#main content of wl application details to update in httpd.conf file
Open tag of IfModule
#keep the info in open tag of IfModule ---mod_weblogic.c
Step10: Stop the Apache
make
cd apache2/conf
No comments:
Post a Comment