I am public blog

Hello word I am Public Blog

CentOS 7에 아파치 웹 서버 설치하기

# yum update
$ sudo yum update httpd

# install apache web server
$ sudo yum install httpd -y

# set firewall
$ sudo firewall-cmd --permanent --add-service=http
$ sudo firewall-cmd --permanent --add-service=https

# reload for apply
$ sudo firewall-cmd --reload

# start apache server
$ sudo systemctl start httpd.service

# register start demon
$ sudo systemctl enable httpd.service

 

Leave a comment

이메일 주소는 공개되지 않습니다. 필수 항목은 *(으)로 표시합니다