Como instalar Servidor Apache no RHEL 8
Posted in: Linux

Como instalar Servidor Apache no RHEL 8

yum update

Passo 2 – Instalar Servidor Apache

yum install httpd

Passo 3 – Gerir Serviço Apache

systemctl enable httpd
systemctl start httpd
systemctl status httpd

Passo 4 – Aceitar serviço Apache na Firewall

firewall-cmd --permanent --zone=public --add-service=http 
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload

Passo 5 – Reiniciar Apache

systemctl restart httpd

Passo 6 – Criar Virtual Host

Back to Top