Seong-Jung's Blog

반응형

- root 계정으로 접속

- apache 설치
[root@localhost ~]# yum install httpd

- apache 설치되었는지 확인
[root@localhost ~]# yum list installed | grep httpd
httpd.i686                  2.2.15-15.el6.centos.1
httpd-tools.i686          2.2.15-15.el6.centos.1


- apache 데몬 시작
[root@localhost ~]# /usr/sbin/apachectl start

- apache 설정파일 수정
[root@localhost ~]# vi /etc/httpd/conf/httpd.conf

#UserDir disable
UserDir public_html

위와 같이 변경

- apache 데몬 재시작
[root@localhost ~]# /usr/sbin/apachectl restart

httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName 이와 같은 오류가 발생시에는 apache 설정파일에

ServerName localhost

와 같이 ServerName을 등록해준다.

- apache port 확인
[root@localhost ~]# netstat -lntp
tcp        0      0 :::80                       :::*                        LISTEN      11772/httpd
이런식으로 80포트로 등록되어있는 것 확인

- apache 구동 확인

 

반응형