LAMP on Ubuntu 14.04
Updated by Alex Fornuto Written by Linode

A LAMP (Linux, Apache, MySQL, PHP) stack is a common web stack used for hosting web content. This guide shows you how to install a LAMP stack on an Ubuntu 14.04 (LTS) server.
NoteThis guide is written for a non-root user. Commands that require elevated privileges are prefixed withsudo. If you’re not familiar with thesudocommand, you can check our Users and Groups guide.
Before You Begin
Ensure that you have followed the Getting Started and Securing Your Server guides, and the Linode’s hostname is set.
Update your system:
sudo apt-get update && sudo apt-get upgrade
Apache
Install and Configure
Install Apache 2.4:
sudo apt-get install apache2Edit the main Apache configuration file,
apache2.conf, to adjust the KeepAlive setting:- /etc/apache2/apache2.conf
-
1KeepAlive Off
The default multi-processing module (MPM) for Apache is the event module, but by default PHP uses the prefork module. Open the
mpm_prefork.conffile located in/etc/apache2/mods-availableand edit the configuration. Below is the suggested values for a 2GB Linode:- /etc/apache2/mods-available/mpm_prefork.conf
-
1 2 3 4 5 6 7<IfModule mpm_prefork_module> StartServers 4 MinSpareServers 20 MaxSpareServers 40 MaxRequestWorkers 200 MaxConnectionsPerChild 4500 </IfModule>
Disable the event module and enable prefork:
sudo a2dismod mpm_event sudo a2enmod mpm_preforkRestart Apache:
sudo service apache2 restart
Configure Virtual Hosts
There are several different ways to set up virtual hosts; however, below is the recommended method. By default, Apache listens on all IP addresses available to it.
Within the
/etc/apache2/sites-available/directory, create a configuration file for your website,example.com.conf, replacingexample.comwith your own domain information:- /etc/apache2/sites-available/example.com.conf
-
1 2 3 4 5 6 7 8 9 10 11<VirtualHost *:80> ServerAdmin webmaster@example.com ServerName example.com ServerAlias www.example.com DocumentRoot /var/www/html/example.com/public_html/ ErrorLog /var/www/html/example.com/logs/error.log CustomLog /var/www/html/example.com/logs/access.log combined <Directory /path/to/public/website/> Require all granted </Directory> </VirtualHost>
Note
TheErrorLogandCustomLogentries are suggested for more fine-grained logging but are not required. If they are defined (as shown above), thelogsdirectories must be created before you restart Apache.Create the above-referenced directories:
sudo mkdir -p /var/www/html/example.com/public_html sudo mkdir /var/www/html/example.com/logsLink your virtual host file from the
sites-availabledirectory to thesites-enableddirectory:sudo a2ensite example.com.confNote
If you later need to disable your website, run:
a2dissite example.com.conf
Reload Apache:
sudo service apache2 reloadAssuming that you have configured the DNS for your domain to point to your Linode’s IP address, virtual hosting for your domain should now work.
If there are additional websites you wish to add to your Linode repeat the above steps to add them.
MySQL
Install and Configure
Install the
mysql-serverpackage:sudo apt-get install mysql-serverChoose a secure password when prompted.
Run
mysql_secure_installation, a program that helps secure MySQL. You will be presented with the opportunity to change the MySQL root password, remove anonymous user accounts, disable root logins outside of localhost, and remove test databases:mysql_secure_installation
Create a MySQL Database
Log into MySQL:
mysql -u root -pEnter MySQL’s root password, and you’ll be presented with a MySQL prompt.
Create a database and a user with permissions for it. In this example the database is called
webdata, the userwebuserand passwordpassword:create database webdata; grant all on webdata.* to 'webuser' identified by 'password';Exit MySQL:
quit
PHP
Install PHP, and the PHP Extension and Application Repository:
sudo apt-get install php5 php-pearIf you need MySQL support also install
php5-mysqlsudo apt-get install php5-mysqlOnce PHP5 is installed, tune the configuration file located in
/etc/php5/apache2/php.inito enable more descriptive errors, logging, and better performance. The following modifications provide a good starting point:- /etc/php5/apache2/php.ini
-
1 2 3error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR error_log = /var/log/php/error.log max_input_time = 30
Note
Ensure the lines above are uncommented. Commented lines begin with a semicolon (;).Create the log directory for PHP and give the Apache user ownership:
sudo mkdir /var/log/php sudo chown www-data /var/log/phpReload Apache:
sudo service apache2 reload
Congratulations! You have now set up and configured a LAMP stack.
More Information
You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials.
- Ubuntu Server Edition Homepage
- Apache HTTP Server Documentation
- MySQL Documentation
- PHP Documentation
Join our Community
Find answers, ask questions, and help others.
This guide is published under a CC BY-ND 4.0 license.