'아파치'에 해당되는 글 3건

  1. 2008.08.26 리눅스에서 아파치 설치하는법

Apache Httpd (2.2.3) 설치
1. gcc compiler 설치
    1.1 gcc compiler 설치 - System Administrator에 부탁해서 CD설치하길 권장함
    1.2 gcc PATH에 등록

2. apache httpd 소스 다운로드(http://www.apache.org)&Compile(httpd-2.2.3 다운로든 받은 directory로 이동후 실시)

    2.1 ./configure --prefix=/usr/local/apache2 <enter>
    2.2 make <enter>
    2.3 su -c 'make install' <enter> - root 권한 필요함
    설치 한다음 httpd.conf에서 몇가지 정보 수정해야함 ServerName 같은거는 필수임
    bin/apachectl start <enter> 하면 실행됨

   <!-- 아래는 필요없는 경우가 많음 - OS에 따른 다름 -->
    2.4 sh buildconf - 수행하기전 autoconf, libtool 등 유틸이 설치되었는지 확인
        2.4.1 autoconf 설치
            2.4.1.1 autoconf download (http://ftp.gnu.org/gnu/autoconf/)
            2.4.1.2 ./configure <enter>
            2.4.1.3 make <enter>
            2.4.1.4 make install <enter> - root 권한 필요함
        2.4.2 libtool 설치
            2.4.2.1 libtool download (ftp://ftp.gnu.org/gnu/libtool/)
            2.4.2.2 ./configure <enter>
            2.4.2.3 make <enter>
            2.4.2.4 make install <enter> - root 권한 필요함
    2.5 ./configure --with-mod_jk <enter>  <!-- mod_jk 연동하는 법 블로그에 있으니 그거 보고 하셈-->
    2.6 make <enter>
    2.7 make install <enter>



  나중에 apache-tomcat을 연동할 수 있음. IT 지식방에 있는 고태웅대리의 아파치-톰캣 연동글 참조

  apache-jboss에서도 사용가능할 것으로 생각함(mod-jk로 검색하면 글 있음 참고하셈)

Posted by
,