Note: You are currently viewing documentation for Moodle 3.6. Up-to-date documentation for the latest stable version of Moodle is likely available here: RedHat Linux installation.

RedHat Linux installation: Difference between revisions

From MoodleDocs
(44 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Note|This document is about installing Moodle 3.6 in an RedHat Enterprise Linux (RHEL) 7 with PHP 7}}
{{Note|This document is about installing Moodle 3.6 in an RedHat Enterprise Linux (RHEL) 7}}


== Server Installation ==
== Server Installation ==
* Web Server
* Web Server
** DON'T install PHP here, since RHEL7 comes with PHP5 and we need PHP7 in Moodle 3.6, we will install it later.
** DON'T install PHP here, since RHEL7 comes with PHP5 and Moodle 3.6 needs PHP7.0, we will install it later.
** Also the default version of Apache web server 'httpd' from RHEL7 won't work with the PHP7 from extra repo. We will install 'httpd24' to replace it, but there is no harm to install 'httpd' here first.
** Also the default version of Apache web server 'httpd' from RHEL7 won't work with the PHP7 from extra repo. We will install 'httpd24' to replace it, but there is no harm to install 'httpd' here first.
** Or use the PHP7 packages from "remi-safe" repository, it works with the default "httpd" package.
** Or use the PHP7 packages from "remi-safe" repository, it works with the default "httpd" package.
Line 12: Line 12:
Note: Set up the firewall if necessary. You probably only need to enable HTTP/HTTPS (and perhaps FTP and SSH) access to your server machine, unless you know the difference.
Note: Set up the firewall if necessary. You probably only need to enable HTTP/HTTPS (and perhaps FTP and SSH) access to your server machine, unless you know the difference.


== System Registration ==
=== Network Interface ===
 
During installation, under "System" -> "Network & Host Name", remember to enable the NIC. It's not enabled by default.
 
=== Configure hostname and domain name ===
 
Type system-config-network to open the GUI editor.  Click on the DNS tab. In the "DNS Search Path" fill in your domain name for example myuniversity.edu. Now ensure the "Hostname" contains the computer name you will use and click activate to make changes
 
=== System Registration ===
* To receive package updates, create a user account at redhat.com, and then login and register as developer at https://developers.redhat.com/
* To receive package updates, create a user account at redhat.com, and then login and register as developer at https://developers.redhat.com/
* Subscribe the system by:
* Subscribe the system by:
Line 18: Line 26:
subscription-manager register --auto-attach
subscription-manager register --auto-attach
</pre>
</pre>
Enter the username, password as requested.
Enter the username and password as requested.
* Update the system and then reboot
* Update the system and then reboot
<pre>
<pre>
Line 26: Line 34:
See [https://developers.redhat.com/rhel8/install-rhel8-vbox/]
See [https://developers.redhat.com/rhel8/install-rhel8-vbox/]


== Configure hostname and domain name==
=== Adding extra repo ===
To install the httpd24 and PHP7 we need, add extra repo:
<pre>
subscription-manager repos --enable rhel-server-rhscl-7-rpms
</pre>


Type system-config-network to open the GUI editor.  Click on the DNS tab. In the "DNS Search Path" fill in your domain name for example myuniversity.edu. Now ensure the "Hostname" contains the computer name you will use and click activate to make changes
or the "remi-safe" repo, or any other repo you want.


== SELinux ==
== SELinux ==
Line 42: Line 54:


== Firewall ==
== Firewall ==
The internal firewall (RHEL 7 uses 'firewalld' instead of 'iptables' by default) is on by default. It will block the access to the web server. You may stop it first to test connection:
The internal firewall (RHEL since version 7 uses 'firewalld' instead of 'iptables' by default) is on by default. It will block the access to the web server. You may stop it first to test connection:


<pre>
<pre>
Line 60: Line 72:
</pre>
</pre>


Check the allow status:
Restart the firewall and then check the allow status:
<pre>
<pre>
service firewalld restart
firewall-cmd --zone=public --list-services
firewall-cmd --zone=public --list-services
</pre>
</pre>
Line 67: Line 80:
To use iptables instead of firewalld, see [https://access.redhat.com/solutions/1264743]
To use iptables instead of firewalld, see [https://access.redhat.com/solutions/1264743]


== Adding extra repo ==
== MariaDB / MySQL ==
To install the httpd24 and PHP7 we need, add extra repo:
<pre>
subscription-manager repos --enable rhel-server-rhscl-7-rpms
</pre>


or the "remi-safe" repo, or any other repo you want.
* Make sure at least 'mariadb' and 'mariadb-server' packages are installed.
 
** (use "mysql" and "mysql-server" for MySQL)
== Apache ==
* Open a web browser and make sure you can connect to the installed web server and default port (80) of the server. If not OK, it may be blocked by the firewall (see below). Correct the problem.
* The default version (httpd) doesn't work with the PHP7 needed, so we install httpd24 (from extra repo) to replace it:
<pre>
<pre>
yum install httpd24-httpd
yum install mariadb mariadb-server
</pre>
</pre>
or everything<pre>
*Then get the daemon running, it is not running by default. And set it to auto-start. See also [https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/selinux_users_and_administrators_guide/chap-managing_confined_services-mariadb]
yum install httpd24-*
** (use "mysqld" for MySQL)
</pre>
* Stop the existing version, prevent it from starting after reboot:
<pre>
<pre>
service httpd stop; chkconfig httpd off
service mariadb start; chkconfig mariadb on
</pre>
</pre>
* Start the new version, and make it auto-start after reboot:
*Edit /etc/my.cnf (May be different for MySQL)
<pre>
service httpd24-httpd start; chkconfig httpd24-httpd on
</pre>
* Edit the Apache configuration file <pre>/opt/rh/httpd24/root/etc/httpd/conf/httpd.conf</pre> (For the default version, it's <pre>/etc/httpd/conf/httpd.conf</pre>)
* Right at the end of the file add the following lines: (once again 'mymoodle' as from Step 3)
** <Directory "/usr/moodle/mymoodle">
** DirectoryIndex index.php
** AcceptPathInfo on
** AllowOverride None
** Options None
** Order allow,deny
** Allow from all
** </Directory>
** Alias /mymoodle "/usr/moodle/mymoodle"
* Don't insert a space in "allow,deny" (common mistake!)
* You might also want to run through the rest of the config file and make some other (obvious) changes - administrator email and suchlike. Not vital though.
* Run the Services application (same as for Mysql) - tick and start "httpd", then save changes and exit.


== PHP ==
<pre>vi /etc/my.cnf</pre>
* By using the extra repo, install the version of PHP you need (7.0 in this case). See [https://access.redhat.com/solutions/2662201]
<pre>
yum install rh-php70 rh-php70-php rh-php70-php-xml rh-php70-php-xmlrpc rh-php70-php-mysqlnd rh-php70-php-zip rh-php70-php-gd rh-php70-php-intl rh-php70-php-mbstring rh-php70-php-soap rh-php70-php-opcache
</pre>
For remi-safe repo, use:
<pre>
yum install php70 php70-php php70-php-xml php70-php-xmlrpc php70-php-mysqlnd php70-php-zip php70-php-gd php70-php-intl php70-php-mbstring php70-php-soap php70-php-opcache
</pre>


*Check the installed PHP version:
Scroll down to the [mysqld] section and under Basic Settings add the following line under the last statement.
**As the PHP7 was installed to a non-default location, update the PATH variable by editing /etc/bashrc and then run the source command (See [https://medium.com/tensult/install-moodle-in-rhel7-with-php7-and-http24-25695e213bb4]:
<pre>
# vi /etc/bashrc
  export PATH=$PATH:/opt/rh/rh-php70/root/bin:/opt/rh/rh-php70/root/sbin
# source /etc/bashrc
# php -v
</pre>


RedHat EL - or 'the upstream vendor' if you are using a clone - will not introduce newer PHP packages unless there is an exception (php53 in EL5.6+). Moodle has quite a some PHP dependencies which cannot be fullfilled solely by installing all RHEL-provided packages.
<pre>innodb_file_format = Barracuda</pre><br />
<pre>innodb_file_per_table = 1</pre><br />
<pre>innodb_large_prefix</pre>


You have therefore to make a choice:
* If you haven't yet, as root, change the MySQL root password, also secure the installation
* Use RH and pay attention your Moodle version supports it + PHP modules from and maintain them on your own
** mysql_secure_installation
* Install the whole (latest) PHP from source on your own (and maintain it)
* Next, set up the MySQL database (see http://moodle.org/doc/?file=install.html#Database for more details)
* Install PHP packages from a third party repo (but you won't get support from Redhat if you run into problems):
* Launch MySQL as root
** [rpms.famillecollet.com] Maintains recent MySQL and PHP packages for supported EL version (a EPEL contributor)
** mysql -u root -p
** RPMFusion and others also have newer PHP packages
*** (at the password prompt, enter the password from above)
* At the '>' MySQL prompt, enter the following commands (MySQL commands are ended with a ';')
** CREATE DATABASE mymoodle CHARSET 'utf8mb4';
*** ('mymoodle' is the name of the database you would like to use, it will be entered to the Moodle 'config.php' later)
** GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,CREATE TEMPORARY TABLES,DROP,INDEX,ALTER ON mymoodle.* TO moodleuser@localhost IDENTIFIED BY 'moodlepass';
*** (as above, 'mymoodle', 'moodleuser' and 'moodlepass' will be entered to the Moodle 'config.php' later)
** flush privileges;
** quit
* (! Consider MySQL security - not covered here. If you run a firewall, you don't have too much to worry about.)


== Moodle ==
== Setup Moodle ==
(I will install under /usr/moodle, data in /usr/moodle_data)
(I will install under /usr/moodle, data in /usr/moodle_data)


Line 173: Line 155:
** vi config.php (or whatever your favourite editor is!)
** vi config.php (or whatever your favourite editor is!)
* Your config.php settings should be something like...
* Your config.php settings should be something like...
** dbtype = "mariadb" (use "mysqli" for MySQL)
** dbtype = 'mariadb' (use 'mysqli' for MySQL)
** dbhost = "localhost"
** dbhost = 'localhost'
** dbname = "mymoodle"
** dbname = 'mymoodle'
** dbuser = "moodleuser"
** dbuser = 'moodleuser'
** dbpass = "moodlepass" (<-- better make this something of your own)
** dbpass = 'moodlepass' (<-- better make this something of your own)
** prefix = ""
** prefix = 'mdl_'
*** (keep the default 'mdl_' prefix if you plan on sharing the database with other applications)
*** (Use different prefix if there is more than one instance of Moodle on the same server, and you plan to share the database)
** wwwroot = "http://myhost.mydomain/mymoodle"
** wwwroot = 'http://myhost.mydomain'
*** (If you only want to try moodle out and will not be accessing it from other machines you can use "http://localhost/mymoodle")
*** (If you only want to try moodle out and will not be accessing it from other machines you can use 'http://localhost/mymoodle')
** dirroot = '/usr/moodle/mymoodle'
** dataroot = '/usr/moodle_data/mymoodle'
** dataroot = '/usr/moodle_data/mymoodle'
* Save your changes and exit from the editor
* Save your changes and exit from the editor


== MariaDB / MySQL ==
== Apache ==
* Install it if it's not installed already. The default version (httpd) doesn't work with the PHP7 from extra repo, so we install httpd24 (from extra repo) to replace it:
<pre>
yum install httpd24-httpd
</pre>
or everything<pre>
yum install httpd24*
</pre>
* Stop the existing version, prevent it from starting after reboot:
<pre>
service httpd stop; chkconfig httpd off
</pre>
* Start the new version, and make it auto-start after reboot:
<pre>
service httpd24-httpd start; chkconfig httpd24-httpd on
</pre>
* Open a web browser and make sure you can connect to the installed web server and default port (80) of the server. If not OK, it may be blocked by the firewall (see above). Correct the problem because continuing.
* Edit the Apache configuration file <pre>/opt/rh/httpd24/root/etc/httpd/conf/httpd.conf</pre> (For the default version, it's <pre>/etc/httpd/conf/httpd.conf</pre>)
* Right at the end of the file add the following lines:
** <Directory "/usr/moodle/mymoodle"> (the directory used during Moodle installation)
** DirectoryIndex index.php
** AcceptPathInfo on
** AllowOverride None
** Options None
** Order allow,deny
** Allow from all
** </Directory>
** Alias /mymoodle "/usr/moodle/mymoodle"
* Don't insert a space in "allow,deny" (common mistake!)
* You might also want to run through the rest of the config file and make some other (obvious) changes - administrator email and suchlike. Not vital though.
* Run the Services application (same as for Mysql) - tick and start "httpd", then save changes and exit.
 
=== Setting Document Root ===
Edit <pre>/etc/httpd/conf/httpd.conf</pre>
 
Change From: DocumentRoot /var/www/html
 
Change To: DocumentRoot /var/www/html/mymoodle
 
If you want the web site to be served as "http://www.whatever.com/mymoodle" instead of "http://www.whatever.com", don't change it, and modify the 'wwwroot' parameter of Moodle 'config.php' file accordingly.
 
== PHP ==
* By using the extra repo, install the version of PHP you need (7.0 in this case). 'php-fpm' should be used instead of 'mod_php', see [https://access.redhat.com/solutions/2662201]
<pre>
yum install rh-php70 rh-php70-php rh-php70-php-xml rh-php70-php-xmlrpc rh-php70-php-mysqlnd rh-php70-php-zip rh-php70-php-gd rh-php70-php-intl rh-php70-php-mbstring rh-php70-php-soap rh-php70-php-opcache
</pre>
For remi-safe repo, use:
<pre>
yum install php70 php70-php php70-php-xml php70-php-xmlrpc php70-php-mysqlnd php70-php-zip php70-php-gd php70-php-intl php70-php-mbstring php70-php-soap php70-php-opcache
</pre>
 
*Check the installed PHP version:
**As the PHP7 was installed to a non-default location, update the PATH variable by editing /etc/bashrc and then run the source command (See [https://medium.com/tensult/install-moodle-in-rhel7-with-php7-and-http24-25695e213bb4]):
<pre>
# vi /etc/bashrc
  export PATH=$PATH:/opt/rh/rh-php70/root/bin:/opt/rh/rh-php70/root/sbin
# source /etc/bashrc
# php -v
</pre>
**Or create a link to the php executable:
<pre>
# ln -s /opt/rh/rh-php70/root/bin/php /bin/php
# php -v
</pre>


* Make sure at least 'mariadb' and 'mariadb-server' packages are installed.
* Restart the web server so that PHP can start working:
** (use "mysql" and "mysql-server" for MySQL)
<pre>
<pre>
yum install mariadb mariadb-server
service httpd24 restart
</pre>
</pre>
*Then get the daemon running, it is not running by default. And set it to auto-start. See also [https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/selinux_users_and_administrators_guide/chap-managing_confined_services-mariadb]
or
** (use "mysqld" for MySQL)
<pre>
<pre>
service mariadb start; chkconfig mariadb on
service httpd restart
</pre>
</pre>
*Edit /etc/my.cnf (May be different for MySQL)


<pre>vi /etc/my.cnf</pre>
*Create a "phpinfo.php" file within the "/var/www/html" directory (or anywhere the Apache "DocumentRoot" points to) with the following content:
<pre>
<?php
phpinfo();
?>
</pre>
And then open web browser and browse to "http://webserver/phpinfo.php" to make sure PHP is working with the web server. Then remove the file for security reason.


Scroll down to the [mysqld] section and under Basic Settings add the following line under the last statement.
RedHat EL - or 'the upstream vendor' if you are using a clone - will not introduce newer PHP packages unless there is an exception (php53 in EL5.6+). Moodle has quite a some PHP dependencies which cannot be fullfilled solely by installing all RHEL-provided packages.


<pre>innodb_file_format = Barracuda</pre><br />
You have therefore to make a choice:
<pre>innodb_file_per_table = 1</pre><br />
* Use RH and pay attention your Moodle version supports it + PHP modules from and maintain them on your own
<pre>innodb_large_prefix</pre>
* Install the whole (latest) PHP from source on your own (and maintain it)
* Install PHP packages from a third party repo (but you won't get support from Redhat if you run into problems):
** [rpms.famillecollet.com] Maintains recent MySQL and PHP packages for supported EL version (a EPEL contributor)
** RPMFusion and others also have newer PHP packages


* If you haven't yet, as root, change the MySQL root password
== Install Moodle ==
** mysqladmin -u root password mysqlpass (<-- should change this to something of your own)
Now everything's ready. Use web browser to open "http://webserver/mymoodle/install.php" to start the installation.
** Or run 'mysql_secure_installation' to set password for root and secure the system
* Next, set up the MySQL database (see http://moodle.org/doc/?file=install.html#Database for more details)
* Launch MySQL as root
** mysql -u root -p
*** (at the password prompt, enter the password from above)
* At the '>' MySQL prompt, enter the following commands (MySQL commands are ended with a ';')
** CREATE DATABASE mymoodle CHARSET 'utf8mb4';
*** (the name 'mymoodle' is the same name as the database from Step 4)
** GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,CREATE TEMPORARY TABLES,DROP,INDEX,ALTER ON mymoodle.* TO moodleuser@localhost IDENTIFIED BY 'moodlepass';
*** (as above, 'mymoodle', 'moodleuser' and 'moodlepass' are from Step 4)
** flush privileges;
** quit
* (! Consider MySQL security - not covered here. If you run a firewall, you don't have too much to worry about.)


== Set up the cron job ==
== Set up cron job ==


As root user edit the /etc/crontab file using vi (or another editor) OR you can add a line to the root user's "personal" crontab (don't do both!).
As root user edit the /etc/crontab file using vi (or another editor) OR you can add a line to the root user's "personal" crontab (don't do both!).
Line 237: Line 274:


===Web version===
===Web version===
{{Note| Web version is kept here for reference only. Use the CLI version if possible.}}
{{Note|Use the CLI version if possible.}}
* If you wish to place an entry in your root user's crontab use:
* If you wish to place an entry in your root user's crontab use:
** crontab -e
** crontab -e
Line 254: Line 291:
== Try your new installation ==
== Try your new installation ==


http://myhost.mydomain/admin
or
http://myhost.mydomain/mymoodle/admin
http://myhost.mydomain/mymoodle/admin


or, if you are running the browser on the same machine
or, if you are running the browser on the same machine


http://localhost/admin
or
http://localhost/mymoodle/admin
http://localhost/mymoodle/admin


Line 264: Line 305:
[[pl:Instalacja_w_RedHat]]
[[pl:Instalacja_w_RedHat]]


== Setting Apache Document Root ==
== Installing SSL certificate ==
If you want the web site to be served as http://www.whatever.com/ instead of http://www.whatever.com/mymoodle, edit <pre>/etc/httpd/conf/httpd.conf</pre>
 
Change From: DocumentRoot /var/www/html
 
Change To: DocumentRoot /var/www/html/mymoodle


Remember to modify the Moodle 'config.php' file and cron job accordingly.
After installing the SSL certificate, change the 'http' to 'https' in the 'wwwroot' parameter of Moodle 'config.php' file.


==See also==
==See also==
*[[Unix or Linux Installation]]
*[[Unix or Linux Installation]]
*[[Installing Moodle]]
*[[Installing Moodle]]

Revision as of 10:04, 16 August 2019

Note: This document is about installing Moodle 3.6 in an RedHat Enterprise Linux (RHEL) 7


Server Installation

  • Web Server
    • DON'T install PHP here, since RHEL7 comes with PHP5 and Moodle 3.6 needs PHP7.0, we will install it later.
    • Also the default version of Apache web server 'httpd' from RHEL7 won't work with the PHP7 from extra repo. We will install 'httpd24' to replace it, but there is no harm to install 'httpd' here first.
    • Or use the PHP7 packages from "remi-safe" repository, it works with the default "httpd" package.
  • Database
    • Install MariaDB (MySQL is replaced by MariaDB since RHEL7.3).
  • Also BEWARE OF the 'Server with a GUI' option, it may not work as expected.

Note: Set up the firewall if necessary. You probably only need to enable HTTP/HTTPS (and perhaps FTP and SSH) access to your server machine, unless you know the difference.

Network Interface

During installation, under "System" -> "Network & Host Name", remember to enable the NIC. It's not enabled by default.

Configure hostname and domain name

Type system-config-network to open the GUI editor. Click on the DNS tab. In the "DNS Search Path" fill in your domain name for example myuniversity.edu. Now ensure the "Hostname" contains the computer name you will use and click activate to make changes

System Registration

  • To receive package updates, create a user account at redhat.com, and then login and register as developer at https://developers.redhat.com/
  • Subscribe the system by:
subscription-manager register --auto-attach

Enter the username and password as requested.

  • Update the system and then reboot
yum update
reboot

See [1]

Adding extra repo

To install the httpd24 and PHP7 we need, add extra repo:

subscription-manager repos --enable rhel-server-rhscl-7-rpms

or the "remi-safe" repo, or any other repo you want.

SELinux

Default RedHat Enterprise Linux comes with SELinux set to 'enforcing'. But this may cause user problem accessing web content placed at directory other than the default directory (/var/www/html) or other access problem. If you are not used to SELinux and setting permissions, it's (maybe less secure but) often easier to lower the SELinux level to 'permissive' or even 'disabled'.

# vi /etc/sysconfig/selinux

SELINUX=disabled

See the CentOS [2]

Firewall

The internal firewall (RHEL since version 7 uses 'firewalld' instead of 'iptables' by default) is on by default. It will block the access to the web server. You may stop it first to test connection:

service firewalld stop

and then either disable it:

chkconfig firewalld off

or enable permanent HTTP access to it, you may want to enable HTTPS as well:

firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https

Restart the firewall and then check the allow status:

service firewalld restart
firewall-cmd --zone=public --list-services

To use iptables instead of firewalld, see [3]

MariaDB / MySQL

  • Make sure at least 'mariadb' and 'mariadb-server' packages are installed.
    • (use "mysql" and "mysql-server" for MySQL)
yum install mariadb mariadb-server
  • Then get the daemon running, it is not running by default. And set it to auto-start. See also [4]
    • (use "mysqld" for MySQL)
service mariadb start; chkconfig mariadb on
  • Edit /etc/my.cnf (May be different for MySQL)
vi /etc/my.cnf

Scroll down to the [mysqld] section and under Basic Settings add the following line under the last statement.

innodb_file_format = Barracuda


innodb_file_per_table = 1


innodb_large_prefix
  • If you haven't yet, as root, change the MySQL root password, also secure the installation
    • mysql_secure_installation
  • Next, set up the MySQL database (see http://moodle.org/doc/?file=install.html#Database for more details)
  • Launch MySQL as root
    • mysql -u root -p
      • (at the password prompt, enter the password from above)
  • At the '>' MySQL prompt, enter the following commands (MySQL commands are ended with a ';')
    • CREATE DATABASE mymoodle CHARSET 'utf8mb4';
      • ('mymoodle' is the name of the database you would like to use, it will be entered to the Moodle 'config.php' later)
    • GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,CREATE TEMPORARY TABLES,DROP,INDEX,ALTER ON mymoodle.* TO moodleuser@localhost IDENTIFIED BY 'moodlepass';
      • (as above, 'mymoodle', 'moodleuser' and 'moodlepass' will be entered to the Moodle 'config.php' later)
    • flush privileges;
    • quit
  • (! Consider MySQL security - not covered here. If you run a firewall, you don't have too much to worry about.)

Setup Moodle

(I will install under /usr/moodle, data in /usr/moodle_data)

Download

  • Download your favourite version of Moodle from moodle.org (.zip archive is easiest)
  • as Root create folder under /usr and copy zip
    • su
    • mkdir /usr/moodle
    • mkdir /usr/moodle_data
    • cp moodle_111.zip /usr/moodle
  • If you prefer you can install the GIT version directly for all the latest features. Instead of downloading and copying the zip file. See Git_for_Administrators for details.
  • Or if you prefer you can install the CVS version directly for all the latest features. Instead of downloading and copying the zip file.
    • cd /usr/moodle
    • cvs -d:pserver:anonymous@uk.cvs.moodle.org:/cvsroot/moodle login
    • cvs -z3 -d:pserver:anonymous@uk.cvs.moodle.org:/cvsroot/moodle co moodle

Unpack and set file permission etc

  • Still as root we unpack moodle and rename to something appropiate (I have multiple moodle installs, hence this setup). I will call this install mymoodle.
    • cd /usr/moodle
    • unzip moodle_xxx.zip
    • mv moodle mymoodle
      • (optional step - I have more than one install under /usr/moodle)
    • mkdir /usr/moodle_data/mymoodle
      • (same name as the moodle install above)
    • chown -R apache:apache /usr/moodle
      • (! Giving Apache full rights to your Moodle programs is not secure. Check out the forums for recomendations on how to secure a production environment.)
    • chown -R apache:apache /usr/moodle_data

Setup config.php

  • Still as root copy and edit the config file, you should know the host/domain name for your server
    • cd /usr/moodle/mymoodle
    • cp config-dist.php config.php
    • vi config.php (or whatever your favourite editor is!)
  • Your config.php settings should be something like...
    • dbtype = 'mariadb' (use 'mysqli' for MySQL)
    • dbhost = 'localhost'
    • dbname = 'mymoodle'
    • dbuser = 'moodleuser'
    • dbpass = 'moodlepass' (<-- better make this something of your own)
    • prefix = 'mdl_'
      • (Use different prefix if there is more than one instance of Moodle on the same server, and you plan to share the database)
    • wwwroot = 'http://myhost.mydomain'
    • dataroot = '/usr/moodle_data/mymoodle'
  • Save your changes and exit from the editor

Apache

  • Install it if it's not installed already. The default version (httpd) doesn't work with the PHP7 from extra repo, so we install httpd24 (from extra repo) to replace it:
yum install httpd24-httpd

or everything

yum install httpd24*
  • Stop the existing version, prevent it from starting after reboot:
service httpd stop; chkconfig httpd off
  • Start the new version, and make it auto-start after reboot:
service httpd24-httpd start; chkconfig httpd24-httpd on
  • Open a web browser and make sure you can connect to the installed web server and default port (80) of the server. If not OK, it may be blocked by the firewall (see above). Correct the problem because continuing.
  • Edit the Apache configuration file
    /opt/rh/httpd24/root/etc/httpd/conf/httpd.conf
    (For the default version, it's
    /etc/httpd/conf/httpd.conf
    )
  • Right at the end of the file add the following lines:
    • <Directory "/usr/moodle/mymoodle"> (the directory used during Moodle installation)
    • DirectoryIndex index.php
    • AcceptPathInfo on
    • AllowOverride None
    • Options None
    • Order allow,deny
    • Allow from all
    • </Directory>
    • Alias /mymoodle "/usr/moodle/mymoodle"
  • Don't insert a space in "allow,deny" (common mistake!)
  • You might also want to run through the rest of the config file and make some other (obvious) changes - administrator email and suchlike. Not vital though.
  • Run the Services application (same as for Mysql) - tick and start "httpd", then save changes and exit.

Setting Document Root

Edit

/etc/httpd/conf/httpd.conf

Change From: DocumentRoot /var/www/html

Change To: DocumentRoot /var/www/html/mymoodle

If you want the web site to be served as "http://www.whatever.com/mymoodle" instead of "http://www.whatever.com", don't change it, and modify the 'wwwroot' parameter of Moodle 'config.php' file accordingly.

PHP

  • By using the extra repo, install the version of PHP you need (7.0 in this case). 'php-fpm' should be used instead of 'mod_php', see [5]
yum install rh-php70 rh-php70-php rh-php70-php-xml rh-php70-php-xmlrpc rh-php70-php-mysqlnd rh-php70-php-zip rh-php70-php-gd rh-php70-php-intl rh-php70-php-mbstring rh-php70-php-soap rh-php70-php-opcache

For remi-safe repo, use:

yum install php70 php70-php php70-php-xml php70-php-xmlrpc php70-php-mysqlnd php70-php-zip php70-php-gd php70-php-intl php70-php-mbstring php70-php-soap php70-php-opcache
  • Check the installed PHP version:
    • As the PHP7 was installed to a non-default location, update the PATH variable by editing /etc/bashrc and then run the source command (See [6]):
# vi /etc/bashrc
  export PATH=$PATH:/opt/rh/rh-php70/root/bin:/opt/rh/rh-php70/root/sbin
# source /etc/bashrc
# php -v
    • Or create a link to the php executable:
# ln -s /opt/rh/rh-php70/root/bin/php /bin/php
# php -v
  • Restart the web server so that PHP can start working:
service httpd24 restart

or

service httpd restart
  • Create a "phpinfo.php" file within the "/var/www/html" directory (or anywhere the Apache "DocumentRoot" points to) with the following content:
<?php
phpinfo();
?>

And then open web browser and browse to "http://webserver/phpinfo.php" to make sure PHP is working with the web server. Then remove the file for security reason.

RedHat EL - or 'the upstream vendor' if you are using a clone - will not introduce newer PHP packages unless there is an exception (php53 in EL5.6+). Moodle has quite a some PHP dependencies which cannot be fullfilled solely by installing all RHEL-provided packages.

You have therefore to make a choice:

  • Use RH and pay attention your Moodle version supports it + PHP modules from and maintain them on your own
  • Install the whole (latest) PHP from source on your own (and maintain it)
  • Install PHP packages from a third party repo (but you won't get support from Redhat if you run into problems):
    • [rpms.famillecollet.com] Maintains recent MySQL and PHP packages for supported EL version (a EPEL contributor)
    • RPMFusion and others also have newer PHP packages

Install Moodle

Now everything's ready. Use web browser to open "http://webserver/mymoodle/install.php" to start the installation.

Set up cron job

As root user edit the /etc/crontab file using vi (or another editor) OR you can add a line to the root user's "personal" crontab (don't do both!).

CLI version

Note: According to Moodle's documentation, users should use the CLI version if possible, as the web version may be removed in future.[7]


  • If you wish to place an entry in your root user's crontab use:
    • crontab -e
    • Add the following line:
 */5 * * * * /usr/bin/php /path/to/mymoodle/admin/cli/cron.php

to run the command every 5 minutes.

Web version

Note: Use the CLI version if possible.


  • If you wish to place an entry in your root user's crontab use:

---

  • If you wish to add an entry in /etc/crontab:
  • Open the /etc/crontab file in an editor (vi).
  • Add the following line:

---

  • In either case, don't forget to save the file and exit (in vi that is <Esc>, then ':wq')

Try your new installation

http://myhost.mydomain/admin or http://myhost.mydomain/mymoodle/admin

or, if you are running the browser on the same machine

http://localhost/admin or http://localhost/mymoodle/admin

Installing SSL certificate

After installing the SSL certificate, change the 'http' to 'https' in the 'wwwroot' parameter of Moodle 'config.php' file.

See also