본문 바로가기
웹/Apache

Apache#1 - Cent 5.5 아파치 설치

by gntpapa 2011. 11. 30.
1. 아파치 설치 (http://httpd.apache.org/)
 
## 기존에 설치되어 있는 아파치 사용 안함 ## 
cd /usr/sbin 
chmod 000 httpd 
apachectl –version 
########## 실행 불가 ############ 
 
tar xvfz httpd~~ 
cd httpd~~ 
./configure –prefix=/usr/local/apache 
make 
make install
 
####### PATH 설정 ############ 
Vi /etc/profile  
APACHE_HOME=/usr/local/apache 
PATH=$PATH:$APACHE_HOME/bin 
export PATH
 
#### 3줄 입력 후 VI 저장 후 종료 #####
source /etc/profile 
cd /usr/local/apache/bin 
./apachectl start
 
 
############################## 
cp /usr/local/apache/bin/apachectl /etc/init.d/httpd2 
service httpd2 restart 
 
vi /etc/init.d/httpd2
# chkconfig: - 85 15
# description: Apache is a World Wide Web server.  It is used to serve \
#              HTML files and CGI.
# processname: httpd2
 
chkconfig httpd2 --level 2345 on
chkconfig --list httpd2
 
############################## 
 
http://아이피/ 입력후 It work 확인
 
 

' > Apache' 카테고리의 다른 글

Apache#6 - 디렉토리 인덱싱 차단  (0) 2014.08.24
Apache#5 - syntax 체크 방법  (0) 2014.08.11
Apache#4 - 특정 IP 차단 및 허용  (0) 2012.10.13
Apache#3 - favicon 에러 처리법  (0) 2012.09.18
Apache#2 - 일반 계정 실행하기  (0) 2012.07.27