This article covers a version of Ubuntu that is no longer supported. If you are currently operate a server running Ubuntu 12.04, we highly recommend upgrading or migrating to a supported version of Ubuntu:
Reason: Ubuntu 12.04 reached end of life (EOL) on April 28, 2017 and no longer receives security patches or updates. This guide is no longer maintained.
See Instead:
This guide might still be useful as a reference, but may not work on other Ubuntu releases. If available, we strongly recommend using a guide written for the version of Ubuntu you are using. You can use the search functionality at the top of the page to find a more recent version.
Joomla is a free and open source content management that uses a PHP and a backend database, such as MySQL. It offers a wide variety of features that make it an incredibly flexible content management system right out of the box. It was created in 2005 and is currently the 2nd most popular content management site online. It now has over 10,000 addons to customize its functionality.
The steps in this tutorial require the user to have root privileges on their virtual private server. You can see how to set that up in steps 3 and 4 of the Initial Server Setup
Before working with Joomla, you need to have LAMP installed on your virtual server. If you don't have the Linux, Apache, MySQL, PHP stack on your VPS, you can find the tutorial for setting it up here: How to Install LAMP on Ubuntu 12.04.
Once you have the user and required software, you can start installing Joomla!
To start, create a directory where you will keep your Joomla files temporarily:
mkdir temp
Switch into the directory:
cd temp
Then you can go ahead and download the most recent version of Joomla straight from their website. Currently, the latest version is 2.5.7.
wget http://joomlacode.org/gf/download/frsrelease/17410/76021/Joomla_2.5.7-Stable-Full_Package.tar.gz
This command will download the zipped Joomla package straight to your user's home directory on the virtual server. You can untar it with the following command, moving it straight into the default apache directory, /var/www :
sudo tar zxvf Joomla_2.5.7-Stable-Full_Package.tar.gz -C /var/www
Once the Joomla files are in the web directory, we alter a couple of permissions to give access to the Joomla installer.
First create a Joomla configuration file and make it temporarily world-writeable:
sudo touch /var/www/configuration.php sudo chmod 777 /var/www/configuration.php
After the installation is complete, we will change the permissions back down to 755, which will make it only writeable by the owner.
Now we need to switch gears for a moment and create a new MySQL directory for Joomla.
Go ahead and log into the MySQL Shell:
mysql -u root -p
Login using your MySQL root password. We then need to create the Joomla database, a user in that database, and give that user a new password. Keep in mind that all MySQL commands must end with semi-colon.
First, let's make the database (I'm calling mine Joomla for simplicity's sake—for a real server, however, this name is not very secure). Feel free to give it whatever name you choose:
CREATE DATABASE joomla; Query OK, 1 row affected (0.00 sec)
Then we need to create the new user. You can replace the database, name, and password, with whatever you prefer:
CREATE USER juser@localhost; Query OK, 0 rows affected (0.00 sec)
Set the password for your new user:
SET PASSWORD FOR juser@localhost= PASSWORD("password"); Query OK, 0 rows affected (0.00 sec)
Finish up by granting all privileges to the new user. Without this command, the Joomla installer will be able to harness the new mysql user to create the required tables:
GRANT ALL PRIVILEGES ON joomla.* TO juser@localhost IDENTIFIED BY 'password'; Query OK, 0 rows affected (0.00 sec)
Then refresh MySQL:
FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec)
Exit out of the MySQL shell:
exit
Restart apache:
sudo service apache2 restart
Once you have placed the Joomla files in the correct location on your VPS, assigned the proper permissions, and set up the MySQL database and username, you can complete the remaining steps in your browser.
Access the Joomla installer going to your domain name or IP address. (eg. Example.com)
Once you have finished going through the installer, delete the installation folder per Joomla’s instructions and change the permissions on the config file:
sudo rm -rf /var/www/installation/ sudo chmod 755 /var/www/configuration.php
Visit your domain or IP address to see your new Joomla page.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
i have big problem when install Joomla 3.1.1 my site is down after install native language pack.
@michalex911 what do you mean by ‘down’? Do you get any errors?
Thanks a lot for this, but I’m having a few problems accessing the Joomla Installer on my web browser. whenever I go into my ip address or ‘Localhost’ i get the same thing
"It works!
This is the default web page for this server.
The web server software is running but no content has been added, yet."
Did i miss something? or Is this normal?
@damola49 try running “rm /var/www/index.html” - does that fix it?
Can you please tell me the right permissions of the files and directories and the right owner:group ?
Thanks in advance
@kastony: The defaults should work fine. Are you experiencing any issues?
I think I second kastony’s question - I’ve done this before, but forgot the details - if you create the directories on the command line as root, then load the joomla files with ftp (even as the root user) - the site will load and install okay; but then installs of plugins etc. fail with “failed to create directory”…and you can see it’s a permissions thing.What is the user (when trying to upload a plugin for example)? That user has to be added to the group that owns the directory where the joomla files are, correct? But do you have the actual commands?
inching to a solution - i think the first thing to figure out is what user is running when you use the front end of joomla and using:
<?php echo shell_exec(‘whoami’); ?>
in a file and run that in the browser you see the answer is:
www-data
and there are instructions here about how to add www-data to the group that has permissions on the server directories…
getting warmer? if anyone has the exact commands though much appreciated.
i used sudo chown -R www-data:www-data /var/www/websitedirectory and…all is fixed…i can load plugins from the front end… but, what else might be broken? what is best practice. it would be nice if someone could help edit the step by step install of lamp/joomla to include a best practice solution to this issue?
@k2marketing.steve: That is the best solution: granting write permissions to www-data only when it has to have them (which in this case is writing to /var/www/websitedirectory/plugins)