CentOS 7.9 최소설치 버전에서 Apache 웹서버 구성방법 CentOS 의 업데이트를 최신으로 갱신합니다. # yum -y update Apache 웹서버를 설치합니다. # yum install httpd # systemctl start httpd // httpd 서비스 시작 # systemctl enable httpd // 운영체제 기동시 자동 시작 # systemctl status httpd // 실행상태 확인 CentOS의 방화벽을 열어줌. # firewall-cmd --zone=public --permanent --add-service=http # firewall-cmd --zone=public --permanent --add-service=https # firewall-cmd --reload // CentOS 는 기본적으로 Apache 트래픽을 차단함. 허용하도록 설정해야 함. 웹프라우저에서 웹서비스 작동 확인 웹브라우저에서 http://192.168.35.64 테스트 페이지 확인