How to install Moodle on Ubuntu 14.04

Version 1.0
Author: Srijan Kishore <s [dot] kishore [at] ispconfig [dot] org>
Follow howtoforge on Twitter
Last edited 24/Sep/2014

This document describes how to install and configure Moodle on Ubuntu 14.04.  Moodle (acronym for Modular Object-Oriented Dynamic Learning Environment) (stylised in lower-case as moodle) is a free software e-learning platform, also known as a Learning Management System, or Virtual Learning Environment (VLE). As of June 2013 it had a user base of 83,008 registered and verified sites, serving 70,696,570 users in 7.5+ million courses with 1.2+ million teachers. Equipped with a horde of smart features such as virtual quizzes, assignment submission, wiki, grading, IM services, and online discussion boards, Moodle enables a seamless online learning experience for end-users. Also, by virtue of being a modular software, it is capable of enhanced functionality through customized plugins.

1 Preliminary Note

This tutorial is based on Ubuntu 14.04 server, so you should set up a basic Ubuntu 14.04 server installation before you continue with this tutorial. The system should have a static IP address. I use 192.168.0.100 as my IP address in this tutorial and server1.example.com as the hostname. 

2 Install Apache/MySQL/PHP

We require Apache, MySQL and PHP before Moodle installation. I will be using root credentials, if you are doing installation with any other user just prefix sudo before all commands:

apt-get -y install apache2 mysql-client mysql-server php5

You will be asked to provide a password for the MySQL root user - this password is valid for the user [email protected] as well as [email protected], so we don't have to specify a MySQL root password manually later on:
New password for the MySQL "root" user: <-- yourrootsqlpassword
Repeat password for the MySQL "root" user: <-- yourrootsqlpassword

Moodle require some more packages we will install them as follows:

apt-get -y install graphviz aspell php5-pspell php5-curl php5-gd php5-intl php5-mysql php5-xmlrpc php5-ldap git-core

I will be using git utility for downloading Moodle so I have installed git-core.

3 Download Moodle

Now we will download Moodle as follows:

cd /opt
git clone git://git.moodle.org/moodle.git
cd moodle
git branch -a
git branch --track MOODLE_27_STABLE origin/MOODLE_27_STABLE
git checkout MOODLE_27_STABLE

Next we need to copy the Moodle content to the /var/www/html as:

cp -R /opt/moodle /var/www/html/
mkdir /var/moodledata
chown -R www-data /var/moodledata
chown -R www-data /var/www/html/moodle
chmod -R 777 /var/moodledata
chmod -R 0755 /var/www/html/moodle

We need to change the default storage engine to innodb:

nano /etc/mysql/my.cnf

Give values at the end of the file as:

[...]
#Basic settings for moodle
default-storage-engine = innodb

4 Database initialization

We need a database for Moodle, I will create  the database for the Moodle as follows:

mysql -u root -p

Here we are adding database=moodledb user=moodleuser and password=moodlepassword:

CREATE DATABASE moodledb DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,CREATE TEMPORARY TABLES,DROP,INDEX,ALTER ON moodledb.* TO [email protected] IDENTIFIED BY 'moodlepassword';

Further moving ahead:

FLUSH PRIVILEGES;
exit

Restart services

service apache2 restart
service mysql restart

 

3 Web installation of Moodle

Now we will proceed with the Moodle web-installation. Open a browser of your choice and open the link http:192.168.0.100/moodle/install.php



Select your language and press Next:

Change the value of Data directory to /var/moodledata and press Next:

Press Next:

Give the values at the time of creation of the database, in my case it was as follows:

Database host    :    localhost
Database name    :    moodledb
Database user    :    moodleuser
Database password    :    moodlepassword
table prefix    :    mdl_    (or any valaue of your choice)
Database port    :    3306
Unix socket    :    It will remain blank.

After giving the values press Next:



Press Continue:



Press Continue:



Press Continue:



Now create an admin user for Moodle, you can use any value as per your choice. In my case I am using:
Username    :    admin
New password    :    [email protected]
First name    :    Srijan
Surname    :    Kishore
EMail    :    [email protected]

All other field I will be using its default value, ofcourse you can change it later.

Press Update profile:

Give any name as per your choice, I am using a test name as:

Full site name    :    Test-moodle
Short name for site    :    test
Self registration    :    Disable

After giving the values  press Save changes:


Now go to Site Administration-->Server-->System Paths and define the paths as follows:

Path to du    :    /usr/bin/du
Path to aspell    :    /usr/bin/aspell
Path to dot    :    /usr/bin/dot

Press Save Changes.

Now we are done with the installation part of Moodle, We can access the Moodle page at  http://192.168.0100/moodle/login/index.php as follows:



Your credentials will be Username=admin and Password=[email protected].
Next page will be the default welcome page.



Now we can add courses and use Moodle as per our requirement. Congratulations! You now we have a fully functional Moodle instance on our Ubuntu 14.04 :)

Share this page:

Suggested articles

9 Comment(s)

Add comment

Comments

By: Manuel Perreira

Great tutorial. It helped me a lot for my Ubuntu server. The only problem was some php error i think it was json that wasn't installed. Thanks for your effort. 
  My other server though didn't want to listen to this tutorial commands. Maybe it was because i was using Centos instead of Ubuntu. Anyway, i found this excellent tutorial that solved all the installation problems: https://www.rosehosting.com/blog/install-moodle-on-a-linux-vps/

 

 

 

By: Norman Baines

Thank you for such a clear explanation - it worked perfectly. Just a note for complete newbies like myself - it will work on a local (non server) installation of Ubuntu/mySQL - just use "localhost" instead of 192.168.0.100.

By: Craig

Hi,

I am installing moodle onto an openstack VM but it soesnt have the GUI interface. How do I access the web install for moodle?I have 2 IP addresses for it, 1 is the local IP and 1 is an associated IP so i can reach it from offsite?

By: jedu

great tutorial, I am get this error message in the attempt to install moodle "Data directory (/var/moodledata) cannot be created by the installer."

what should i do?

thankx

By: Sam

One word,AWESOMEGood Job! Above tutorial help me to setup the moodle on the server.  

By: loewe

Something went wrong.

Everything worked fine until the page after:

"Your server meets..."

There the following message is displayed:

Installation System

Error writing to database

More information about this error

It is usually not possible to recover from errors triggered during installation, you may need to create a new database or use a different database prefix if you want to retry the installation.

Debug info: DELETE command denied to user 'moodleadmin'@'localhost' for table 'mdl_role_context_levels'DELETE FROM mdl_role_context_levels WHERE roleid = ?[array ( 0 => 1,)]Error code: dmlwriteexception Stack trace: line 446 of /lib/dml/moodle_database.php: dml_write_exception thrown line 1489 of /lib/dml/mysqli_native_moodle_database.php: call to moodle_database->query_end() line 1831 of /lib/dml/moodle_database.php: call to mysqli_native_moodle_database->delete_records_select() line 3734 of /lib/accesslib.php: call to moodle_database->delete_records() line 278 of /lib/db/install.php: call to set_role_contextlevels() line 1527 of /lib/upgradelib.php: call to xmldb_main_install() line 269 of /admin/index.php: call to install_core()

What did I wrong?

By: Dgcruzing

I followed every step.But when i begin to install moodle, i get 404 Not found, can you plz help me fix the problem. Thanks.

By: Raul

Gracias, saludos.

By: Jan Blaha

Hi, how to set a configure Moodle via HTTPS?