1. 기존 RPM버전 삭제
설치된 아파치 패키지를 검색합니다

# rpm -qa | grep apache  
apache-1.3.23-11
apache-devel-1.3.23-11

# rpm -e apache


2. apache 옵션

# ./configure --prefix=/usr/local/apache --enable-shared=max --enable-rule=SHARED_CORE --enable-module=so
# make 
# make install


3. Apache 자동실행 설정
/usr/local/apache/bin/apachectl 자동실행 스크립트를 /etc/init.d 디렉토리에 복사한다. 

# cp /usr/local/apache/bin/apachectl /etc/init.d/apache

Apache 의 자동 실행 스크립트 파일은 chkconfig 명령어를 이용하여 등록할 수 없다. 
chkconfig 명령어를 사용하기 위해서 다음과 같은 내용을 스크립트 파일의 주석부분에 추가한다. 

# vi /etc/init.d/apache
--------------------------------------------------------------------------------------------------
#!/bin/sh
#
<--여기서 부터 추가
# Comments to support chkconfig on RedHat Linux
# chkconfig: 2345 90 90
# description: A very fast and reliable WebServer engine.
#
# SET ORACLE Environment values

ORACLE_HOME=/oracle/product/9ir2
ORACLE_SID=ORA92
NLS_LANG=AMERICAN_AMERICA.UTF8
export ORACLE_HOME ORACLE_SID NLS_LANG

# echo "Oracle Home: $ORACLE_HOME"
# echo "Oracle SID:  $ORACLE_SID"
# echo Starting Apache
<--여기 까지
#
#
#
# Copyright 1999-2004 The Apache Software Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
# Apache control script designed to allow an easy command line interface
# to controlling Apache.  Written by Marc Slemko, 1997/08/23
<하략>

--------------------------------------------------------------------------------------------------

# chkconfig --add apache
# chkconfig --level 2345 apache on  <-- 여기서는 httpd파일에 선언되었으므로 직접 입력하지 않아도 된다.
# chkconfig --list
# shutdown -r now