• Openssl Kurulumu
  • wget -c https://www.openssl.org/source/openssl-0.9.8e.tar.gz
  • gunzip openssl-0.9.8e.tar.gz; tar xvf openssl-0.9.8e.tar
  • cd openssl-0.9.8e
  • ./config --prefix=/usr/local --openssldir=/usr/local/openssl
  • make; make test; make install
  • ------------------------------------------------------------
  • Apache Kurulumu
  • Mevcut httpd siliyoruz Yum remove httpd
  • wget -c https://archive.apache.org/dist/http...d-2.2.4.tar.gz
  • tar zxvf httpd-2.2.4.tar.gz
  • cd httpd-2.2.4
  • ./configure --prefix=/usr/local/apache2 --enable-modules=all --enable-mods-shared=all --enable-so --enable-rewrite --with-included-apr --enable-auth-digest=shared --enable-proxy --enable-proxy-ajp --enable-ssl --with-ssl=/usr/local/openssl
  • make
  • make install
  • /usr/local/apache2/bin/apachectl start
  • --------------------------------------
  • /usr/local/apache2/bin/apachectl stop