본문 바로가기
운영체제/리눅스

CentOS iptables 80번 포트 해제

by o테리o 2011. 3. 7.

1. CentOS 다운로드

  - http://centos.org

2. CentOS 설치 (설치내용 생략)

3. yum 을 통한 apm 설치 
(CentOS는 기본적으로 apm이 탑재되어있음. 기존 apm을 삭제시키지 않고 yum install 명령으로 설치할 경우 update를 자동으로 함)


 yum install httpd php mysql mysql-server php-mysql system-config-httpd

4. 설치후 아래 명령을 입력하면 아파치 웹서버가 실행됨
service httpd start

5. 외부에서 접근할 수 있도록 80포트 해제
iptables -I INPUT -p tcp --dport 80 -j ACCEPT
/etc/rc.d/init.d/iptables save
/etc/rc.d/init.d/iptables restart