Install the Apache Web Server on CentOS 7

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