You are on page 1of 1

su -

yum install -y gcc gcc-c++


yum install -y expat-devel
yum install -y pcre-devel
yum install -y libxml2-devel

su oracle

cd /home/oracle
mkdir -p integSoft

now copy and paste all software binaries here

chown -R root:root /home/oracle/integSoft

APR installation
--------------------
tar zvxf apr-1.7.0.tar.gz
cd apr-1.7.0
./configure --prefix=/usr/local/apr/
make
make install

Apr-util installation
----------------------
tar zvxf apr-util-1.6.1.tar.gz
cd apr-util-1.6.1
./configure --prefix=/usr/local/apr-util/ --with-apr=/usr/local/apr/
make
make install

PCRE installation
--------------------
tar zvxf pcre-8.41.tar.gz
cd pcre-8.41
./configure --prefix=/usr/local/pcre/
make
make install

Apache installation
--------------------
tar zvxf httpd-2.4.43.tar.gz
cd httpd-2.4.43
./configure --prefix=/usr/local/apache2.4 --sbindir=/usr/local/apache2.4/sbin --
with-apr=/usr/local/apr/ --with-apr-util=/usr/local/apr-util
--with-pcre=/usr/local/pcre/
make
make install

You might also like