Contents

System/OS
2003.04.23 10:27

[linux] 아파치설치/설정

Views 14492 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
1. 설치
   # 먼저 시스템 시간을 정확히 맞추어 두어야 한다
   $ tar  xvzf  apache_1.3.9.tar.Z      
   $ mv  apache_1.3.9  /usr/local/apache
   $ cd  /usr/local/apache
   # 나중에 java, php등의 추가 기능이 동작 하기 위해서는 모듈 컴파일 되어야한다
   $ ./configure  --enable-rule=SHARED_CORE  --enable-module=so  --prefix=/usr/local/apache
   # 혹은 $ ./configure  --enable-rule=SHARED_CORE  --enable-module=all  --prefix=/usr/local/apache
   $ make; make install

2. 환경 설정
   $ vi  /usr/local/apache/conf/httpd.conf
   # 포트 여러개 주어도 연결되게 만든다
     Port  8080 -> 80
     listen  80
     listen  8080
   # 서버 네임을 지정한다(DNS에 등록 되어 있는 경우)
     ServerName  toconet.co.kr 
   # 디렉토리에서 기본 문서를 찾는 순서
     DirectoryIndex index.html index.htm 

3. 시작과 중지
    $ cd  /usr/local/apache/bin/
    $ apachectl  start
    $ apachectl  stop
    $ killall  httpd
    $ killall  -1  httpd

4. 부팅시에 자동 시작되게 만든다
    $ vi  /etc/rc.d/rc.local
    # end line add
    /usr/local/apache/bin/apachectl start & 


?

List of Articles
No. Category Subject Author Date Views
106 System/OS [doc] TCP/IP 강의 자료 (html) file hooni 2013.04.23 11171
105 System/OS [linux] 간단한 find 명령어 설명(업데이트 해야 함) hooni 2013.04.23 9111
104 System/OS NAT와 DHCP에 대한 간단한 설명 hooni 2013.04.23 18328
103 System/OS [router] 설정과 기본 명령어들 모음 hooni 2013.04.23 15670
102 System/OS [windows] 종료, 재시작, 로그아웃 아이콘 만들기 hooni 2013.04.23 18102
101 System/OS [windows] 인터넷 익스플로러(IE) 도구모음 표시줄에 아이콘 추가 file hooni 2013.04.23 18219
100 System/OS [doc] 네트워크 장비와 라우터 설정 방법 발표 자료 file hooni 2013.04.23 14493
99 System/OS [doc] 피쳐셀렉션(feature selection using..) 발표 자료 file hooni 2013.04.23 12546
98 System/OS [sql] 조회구문(select)에서 중복 데이터를 한 번만 출력 (distinct) 1 hooni 2013.04.23 33924
97 System/OS [sql] 중복데이터 삭제 쿼리 hooni 2013.04.23 14734
96 System/OS [linux] 콘솔 기본언어 설정 방법 hooni 2013.04.23 12826
95 System/OS [unix] AIX쉘 초기 파일 (.cshrc) hooni 2013.04.23 10291
Board Pagination Prev 1 ... 4 5 6 7 8 9 10 11 12 13 ... 17 Next
/ 17