Wednesday, July 29, 2015

Apache HTTPD

  1. 2015.07.23
    1. introduction
      1. he Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows NT. The goal of this project is to provide a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards.
    2. installation
      1. prerequisite
        1. libtool
        2. autoconf
        3. APR
          1. http://mungeol-heo.blogspot.kr/2015/07/apache-apr_29.html
        4. pcre
        5. gcc
        6. ntp
        7. perl
      2. wget http://mirror.apache-kr.org//httpd/httpd-2.4.16.tar.gz
      3. wget http://www.apache.org/dist/httpd/httpd-2.4.16.tar.gz.md5
      4. md5sum -c httpd-2.4.16.tar.gz.md5
      5. gzip -d httpd-2.4.16.tar.gz
      6. tar xvf httpd-2.4.16.tar
      7. cd httpd-2.4.16
      8. ./configure --with-included-apr
      9. make
      10. make install
      11. /usr/local/apache2/bin/apachectl -k start
      12. http://hostname
      13. /usr/local/apache2/bin/apachectl -k stop
      14. /usr/local/apache2/bin/apachectl -f /usr/local/apache2/conf/httpd.conf
    3. reference
      1. http://httpd.apache.org/

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.