<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chamilo Archives - LinuxTuto</title>
	<atom:link href="https://www.linuxtuto.com/tag/chamilo/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.linuxtuto.com/tag/chamilo/</link>
	<description>Linux Sysadmin and DevOps blog</description>
	<lastBuildDate>Tue, 07 Feb 2023 16:45:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>

<image>
	<url>https://www.linuxtuto.com/wp-content/uploads/2022/01/cropped-LT_faveicon-32x32.png</url>
	<title>Chamilo Archives - LinuxTuto</title>
	<link>https://www.linuxtuto.com/tag/chamilo/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">201456972</site>	<item>
		<title>How to Install Chamilo LMS on Ubuntu 22.04</title>
		<link>https://www.linuxtuto.com/how-to-install-chamilo-lms-on-ubuntu-22-04/</link>
					<comments>https://www.linuxtuto.com/how-to-install-chamilo-lms-on-ubuntu-22-04/#respond</comments>
		
		<dc:creator><![CDATA[LinuxTuto]]></dc:creator>
		<pubDate>Tue, 07 Feb 2023 16:00:20 +0000</pubDate>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Chamilo]]></category>
		<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[PHP]]></category>
		<guid isPermaLink="false">https://www.linuxtuto.com/?p=1105</guid>

					<description><![CDATA[<p>Chamilo is an open-source learning management system (LMS) used for delivering online courses and training programs. It provides features such as course content management, student...</p>
<p>The post <a href="https://www.linuxtuto.com/how-to-install-chamilo-lms-on-ubuntu-22-04/">How to Install Chamilo LMS on Ubuntu 22.04</a> appeared first on <a href="https://www.linuxtuto.com">LinuxTuto</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Chamilo is an open-source learning management system (LMS) used for delivering online courses and training programs. It provides features such as course content management, student registration and progress tracking, online assessments, and collaboration tools. Chamilo is a free, web-based platform that can be customized to fit the needs of schools, businesses, and organizations.</p>
<p>In this tutorial, we will show you step-by-step how to install Chamilo on Ubuntu 22.04 OS.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Step 1: Update Operating System</span></h2>
<p>Update your <strong>Ubuntu</strong> <strong>22.04</strong> operating system to the latest version with the following command:</p>
<pre><code># apt update &amp;&amp; sudo apt upgrade -y</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 2: Install Apache webserver</span></h2>
<p>You can install it via <code>apt</code> package manager by executing the following command.</p>
<pre><code># apt install apache2</code></pre>
<p>Verify the status of the <code>Apache</code> service using <code>systemctl status</code> command:</p>
<pre><code># systemctl status apache2</code></pre>
<p>Output:</p>
<pre><code><span style="color: #00ff00;">●</span> apache2.service - The Apache HTTP Server
     Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
     Active: <span style="color: #00ff00;">active (running)</span>
       Docs: https://httpd.apache.org/docs/2.4/
   Main PID: 3489 (apache2)
      Tasks: 55 (limit: 2200)
     Memory: 4.8M
        CPU: 134ms
     CGroup: /system.slice/apache2.service
             ├─3489 /usr/sbin/apache2 -k start
             ├─3491 /usr/sbin/apache2 -k start
             └─3492 /usr/sbin/apache2 -k start
</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 3: </span><span class="has-inline-color has-vivid-purple-color">Install PHP and PHP extensions for Chamilo</span></h2>
<p>Chamilo requirement PHP7.4. So you will need to add the <code>DEB.SURY.ORG</code> repository to <code>APT</code>.</p>
<pre><code># apt install software-properties-common</code></pre>
<pre><code># add-apt-repository ppa:ondrej/php -y</code></pre>
<p>To install PHP and additional PHP modules to support Chamilo, run the following command:</p>
<pre><code># apt-get install php7.4 libapache2-mod-php7.4 php7.4-{cli,common,curl,zip,gd,mysql,xml,mbstring,json,intl,ldap,apcu}</code></pre>
<p>Verify if PHP is installed.</p>
<pre><code>php7.4 -v</code></pre>
<pre><code>Output:
PHP 7.4.33 (cli) (built: Jan 13 2023 10:42:56) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
    with Zend OPcache v7.4.33, Copyright (c), by Zend Technologies
</code></pre>
<p>After installing all the packages, edit the php.ini file:</p>
<pre><code># nano /etc/php/7.4/apache2/php.ini</code></pre>
<p>Change the following settings per your requirements:</p>
<pre><code>memory_limit = 512M
max_execution_time = 360
post_max_size = 128M
upload_max_filesize = 128M
date.timezone = America/Chicago</code></pre>
<p>To implement the changes, restart Apache webserver:</p>
<pre><code># systemctl restart apache2</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 4: Install MariaDB and create a database</span></h2>
<p>To install MariaDB run the following command:</p>
<pre><code># apt install mariadb-server mariadb-client</code></pre>
<p>Verify the status of the <code>MariaDB</code> service using <code>systemctl status</code> command:</p>
<pre><code># systemctl status mariadb</code></pre>
<p>Output:</p>
<pre><code><span style="color: #00ff00;">●</span> mariadb.service - MariaDB 10.6.11 database server
     Loaded: loaded (/lib/systemd/system/mariadb.service; enabled; vendor preset: enabled)
     Active: <span style="color: #00ff00;">active (running)</span>
       Docs: man:mariadbd(8)
             https://mariadb.com/kb/en/library/systemd/
    Process: 22423 ExecStartPre=/usr/bin/install -m 755 -o mysql -g root -d /var/run/mysqld (code=exited, status=0/SUCCESS)
    Process: 22424 ExecStartPre=/bin/sh -c systemctl unset-environment _WSREP_START_POSITION (code=exited, status=0/SUCCESS)
    Process: 22427 ExecStartPre=/bin/sh -c [ ! -e /usr/bin/galera_recovery ] &amp;&amp; VAR= ||   VAR=`cd /usr/bin/..; /usr/bin/galera_recovery`; [ $? -eq 0 ]   &amp;&amp; &gt;
    Process: 22492 ExecStartPost=/bin/sh -c systemctl unset-environment _WSREP_START_POSITION (code=exited, status=0/SUCCESS)
    Process: 22495 ExecStartPost=/etc/mysql/debian-start (code=exited, status=0/SUCCESS)
   Main PID: 22463 (mariadbd)
     Status: "Taking your SQL requests now..."
      Tasks: 11 (limit: 2200)
     Memory: 61.0M
        CPU: 425ms
     CGroup: /system.slice/mariadb.service
             └─22463 /usr/sbin/mariadbd

</code></pre>
<p>By default, MariaDB is not hardened. You can secure MariaDB using the <code class=" prettyprinted"><span class="pln">mysql_secure_installation</span></code> script.</p>
<pre><code># mysql_secure_installation</code></pre>
<p>Configure it like this:</p>
<pre><code>- Set root password? [Y/n] <strong>Y</strong>
- Remove anonymous users? [Y/n] <strong>Y</strong>
- Disallow root login remotely? [Y/n] <strong>Y</strong>
- Remove test database and access to it? [Y/n] <strong>Y</strong>
- Reload privilege tables now? [Y/n] <strong>Y</strong></code></pre>
<p>Now run the command below to log in to the MariaDB shell.</p>
<pre><code># mysql -u root -p</code></pre>
<p>Once you are logged in to your database server you need to create a database for the Chamilo installation:</p>
<pre><code>MariaDB [(none)]&gt; CREATE DATABASE chamilo;
MariaDB [(none)]&gt; CREATE USER 'chamilo'@'localhost' IDENTIFIED BY 'Str0ngPasrf1';
MariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON chamilo. * TO 'chamilo'@'localhost';
MariaDB [(none)]&gt; FLUSH PRIVILEGES;
MariaDB [(none)]&gt; exit;</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 5: Download Chamilo</span></h2>
<p>Download the latest version of Chamilo. Find the newest version of this software on the <a href="https://chamilo.org/en/download/">official download</a> page.</p>
<p>As of writing this tutorial, the latest stable version is 1.11.18.</p>
<pre><code># wget https://github.com/chamilo/chamilo-lms/releases/download/v1.11.18/chamilo-1.11.18.zip</code></pre>
<p>Extract the downloaded package:</p>
<pre><code># apt install unzip
# unzip chamilo-1.11.18.zip</code></pre>
<p>Copy the extracted files to the Apache web root directory:</p>
<pre><code># mv chamilo-1.11.18 /var/www/html/chamilo</code></pre>
<p>Set the ownership and permissions of the Chamilo directory:</p>
<pre><code># chown -R www-data:www-data /var/www/html/chamilo
# chmod -R 755 /var/www/html/chamilo</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 6: Configure Apache for Chamilo</span></h2>
<p>Run the commands below to create a new VirtualHost file called <kbd>chamilo</kbd> in the <strong>/etc/apache2/sites-available/</strong> directory.</p>
<pre><code># nano /etc/apache2/sites-available/chamilo.conf</code></pre>
<p>Paste the content as shown below:</p>
<pre><code> &lt;VirtualHost *:80&gt;
    ServerAdmin admin@your-domain.com
    DocumentRoot /var/www/html/chamilo/
    
    ServerName your-domain.com
    ServerAlias www.your-domain.com

    &lt;Directory /var/www/html/chamilo/&gt; 
        AllowOverride All
        Require all granted
    &lt;/Directory&gt; 

    ErrorLog /var/log/apache2/your-domain.com-error_log
    CustomLog /var/log/apache2/your-domain.com-access_log common

 &lt;/VirtualHost&gt;</code></pre>
<p>Remember to replace <strong><code>your-domain.com</code></strong> with the domain name of your server.</p>
<p>Save and exit the configuration file.</p>
<p>Then enable the <code>"rewrite"</code> module in Apache:</p>
<pre><code># a2enmod rewrite</code></pre>
<p>To enable this site run the command:</p>
<pre><code># a2ensite chamilo.conf</code></pre>
<p>To implement the changes, restart Apache webserver:</p>
<pre><code># systemctl restart apache2</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 7: Access Chamilo Web Interface</span></h2>
<p>To access the Chamilo installation wizard, go to your browser and visit <code>http://your-domain.com</code>.</p>
<p><img fetchpriority="high" decoding="async" class="size-large wp-image-1122 aligncenter" src="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_wizard-900x507.jpg" alt="Chamilo Installation Wizard" width="900" height="507" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_wizard-900x507.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_wizard-300x169.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_wizard-768x433.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_wizard-1536x865.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_wizard-1222x688.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_wizard-897x505.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_wizard-684x385.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_wizard.jpg 1916w" sizes="(max-width: 900px) 100vw, 900px" /></p>
<p>Select the language you&#8217;d like to use when installing:</p>
<p><img decoding="async" class="size-large wp-image-1123 aligncenter" src="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_instalation_language-900x400.jpg" alt="Chamilo Installation Language" width="900" height="400" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_instalation_language-900x400.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_instalation_language-300x133.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_instalation_language-768x342.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_instalation_language-1536x683.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_instalation_language-1222x544.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_instalation_language-897x399.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_instalation_language-684x304.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_instalation_language.jpg 1913w" sizes="(max-width: 900px) 100vw, 900px" /></p>
<p>Then, you will see the system requirements screen:</p>
<p><img decoding="async" class="size-large wp-image-1124 aligncenter" src="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_requirements-900x434.jpg" alt="Chamilo Requirements" width="900" height="434" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_requirements-900x434.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_requirements-300x145.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_requirements-768x371.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_requirements-1536x742.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_requirements-1222x590.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_requirements-897x433.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_requirements-684x330.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_requirements.jpg 1887w" sizes="(max-width: 900px) 100vw, 900px" /></p>
<p>At the bottom, you will see the <strong>New Installation</strong> button that you have to click:</p>
<p><img loading="lazy" decoding="async" class="size-large wp-image-1125 aligncenter" src="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-900x428.jpg" alt="" width="900" height="428" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-900x428.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-300x143.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-768x365.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-1536x731.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-1222x581.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-897x427.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-684x325.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation.jpg 1890w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>Then, accept the application license:</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1128" src="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_license-900x435.jpg" alt="Chamilo License" width="900" height="435" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_license-900x435.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_license-300x145.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_license-768x371.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_license-1536x742.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_license-1222x590.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_license-897x433.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_license-684x330.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_license.jpg 1888w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>Set your company name, your name, and email, as well as the language to use. This data will help the program to evolve.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1129" src="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_company-900x512.jpg" alt="Company Set" width="900" height="512" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_company-900x512.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_company-300x171.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_company-768x437.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_company-1536x874.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_company-1222x695.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_company-897x510.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_company-684x389.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_company.jpg 1883w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>Provide your database information and click on the <strong>Next</strong>.</p>
<p><img loading="lazy" decoding="async" class="wp-image-1130 size-large aligncenter" src="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_mysql_database-900x513.jpg" alt="MySQL Database Settings" width="900" height="513" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_mysql_database-900x513.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_mysql_database-300x171.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_mysql_database-768x438.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_mysql_database-1536x876.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_mysql_database-1222x697.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_mysql_database-897x511.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_mysql_database-684x390.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_mysql_database.jpg 1887w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>Provide your site information and click on the <strong>Next</strong>.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1131" src="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_config-900x425.jpg" alt="Chamilo Config " width="900" height="425" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_config-900x425.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_config-300x142.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_config-768x363.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_config-1536x726.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_config-1222x577.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_config-897x424.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_config-684x323.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_config.jpg 1888w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>You will see a summary of the installation:</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1132" src="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-1-900x513.jpg" alt="Chamilo New Installation" width="900" height="513" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-1-900x513.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-1-300x171.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-1-768x438.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-1-1536x876.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-1-1222x697.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-1-897x512.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-1-684x390.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_new_installation-1.jpg 1892w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>Then, the installation will start and if everything went well, you will see the following screen:</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1133" src="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_proces-900x409.jpg" alt="Chamilo Installation Proces" width="900" height="409" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_proces-900x409.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_proces-300x136.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_proces-768x349.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_proces-1536x698.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_proces-1222x555.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_proces-897x408.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_proces-684x311.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_installation_proces.jpg 1912w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>To protect your <code>config</code> directory run the following command:</p>
<pre><code># chmod -R 555 /var/www/html/chamilo/app/config</code></pre>
<p>To delete the installation folder, run the command below on the server:</p>
<pre><code># rm -r /var/www/html/chamilo/main/install</code></pre>
<p>After deleting the folder go to <code>http://your-domain.com/</code> and you will get the login page.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1134" src="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_login_page-900x300.jpg" alt="Login Page" width="900" height="300" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_login_page-900x300.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_login_page-300x100.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_login_page-768x256.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_login_page-1536x511.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_login_page-1222x407.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_login_page-897x299.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_login_page-684x228.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_login_page.jpg 1910w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>Provide your admin username and password and click on <strong>Login</strong>. You will be redirected to the dashboard:</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1135" src="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_dashboard-900x435.jpg" alt="Chamilo Dashboard" width="900" height="435" srcset="https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_dashboard-900x435.jpg 900w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_dashboard-300x145.jpg 300w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_dashboard-768x371.jpg 768w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_dashboard-1536x742.jpg 1536w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_dashboard-1222x590.jpg 1222w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_dashboard-897x433.jpg 897w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_dashboard-684x330.jpg 684w, https://www.linuxtuto.com/wp-content/uploads/2023/02/chamilo_dashboard.jpg 1888w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p>
<p>&nbsp;</p>
<h2><span class="has-inline-color has-vivid-purple-color">Comments and Conclusion</span></h2>
<p>Congratulations! You have successfully installed <code>Chamilo LMS</code>. Thanks for using this tutorial for installing the <code>Chamilo LMS</code> on Ubuntu 22.04 OS.</p>
<p>For additional help or useful information, we recommend you to check <a href="https://11.chamilo.org/documentation/index.html">the official Chamilo LMS documentation</a>.</p>
<p>The post <a href="https://www.linuxtuto.com/how-to-install-chamilo-lms-on-ubuntu-22-04/">How to Install Chamilo LMS on Ubuntu 22.04</a> appeared first on <a href="https://www.linuxtuto.com">LinuxTuto</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.linuxtuto.com/how-to-install-chamilo-lms-on-ubuntu-22-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1105</post-id>	</item>
	</channel>
</rss>
