Aktionen
Install Procedure for apache¶
Requirements¶
To install apache you will need the following:- a installed and supported operating system (e.g. CentOS 7.x)
- root-access
- a fast internet connection
Preliminary Note¶
This procedure is based on a documentation supplied by https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-centos-7
Install¶
yum install httpd
Service¶
systemctl start httpd.service
systemctl enable httpd.service
Firewall¶
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
Von Jeremias Keihsler vor fast 8 Jahren aktualisiert · 2 Revisionen