Projekt

Allgemein

Profil

Aktionen

Setup apache » Historie » Revision 1

Revision 1/2 | Weiter »
Jeremias Keihsler, 12.01.2017 11:23


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 · 1 Revisionen