Install LAMP Centos 7 Minimal
Install Apache, PHP And MySQL On CentOS 7 (LAMP) This tutorial exists for these OS versions CentOS 6.5 CentOS 6.2 CentOS 6.1 CentOS 6.4 CentOS 6.3 On this page 1 Preliminary Note 2 Installing MySQL / MariaDB 3 Installing Apache2 4 Installing PHP5 5 Testing PHP5 / Getting Details About Your PHP5 Installation 6 Getting MySQL Support In PHP5 7 phpMyAdmin installation 8 Links This tutorial shows how you can install an Apache2 webserver on a CentOS 7.0 server with PHP5 support (mod_php) and MySQL support. LAMP is short for L inux, A pache, M ySQL, P HP. 1 Preliminary Note In this tutorial, I use the hostname server1.example.com with the IP address 192.168.0.100 . These settings might differ for you, so you have to replace them where appropriate. I will add the EPEL repo here to install latest phpMyAdmin as follows: rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY* yum -y install epel-release 2 Installing MySQL / MariaDB Ma...