우분투에 아파치(apache) 웹서버 설치하기

By | 7월 9, 2011

* 디테일한 메뉴얼이 아니고 "성공했다" 정도의 수준으로만 기록한 문서임.

* 아파치 다운로드

http://httpd.apache.org/download.cgi


* 설치

./configure
./make
./make install

* httpd.conf 수정 (디폴트로 설치했을 경우 ServerName을 요구하는 에러가 발생하므로)

gedit /usr/local/apache2/conf/httpd.conf

- "ServerName localhost" 삽입

* 실행

/usr/local/apache2/bin/apachectl start

* 실행되고 있는지 확인

ps -ef | grep httpd

* 부팅 때 항상 실행되도록 설정

(1) apachectl 스크립트 파일을 init.d 폴더에 httpd2 라는 이름(임의의 이름)의 파일로 복사(생성)한다.
    cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd2

(2) chkconfig 명령을 사용해서 부팅시 로드되는 프로세스에 등록한다.
     (chkconfig 가 없을 경우 apt-get을 사용하여 설치하자)
     chkconfig httpd2 on

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments