Compiling Apache, mysql and PHP

Compiling Apache for fully dynamic web server 1. Download Apache sourcecode from http://apache.org 2. Extract it and enter into the extracted directory 3. ./configure –prefix=/usr/local/apache2 –enable-mods-shared=all make ; make install 4. Dowload PHP from php.net. Then extract it and enter the extracted directory 5. ./configure –with-apxs2=/usr/local/apache2/bin/apxs –with-mysql –prefix=/usr/local/apache2/php –with-config-file-path=/usr/local/apache2/php –enable-force-cgi-redirect –with-zlib –with-gettext –with-gdbm –enable-mbstring=all make…