{"id":685,"date":"2018-09-26T07:40:22","date_gmt":"2018-09-26T12:40:22","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=685"},"modified":"2020-08-26T02:49:48","modified_gmt":"2020-08-26T07:49:48","slug":"how-to-install-chamilo-on-centos-7","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/","title":{"rendered":"How to Install Chamilo on CentOS 7"},"content":{"rendered":"<div id=\"linux-710068697\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>Chamilo is a free and open-source, PHP based learning management platform and content management system (CMS). Used by millions of students, organizations, governments, schools, and companies around the world, Chamilo is one of the most popular platforms of this type. In this tutorial, we will present you the steps for installing Chamilo on a CentOS 7 VPS.<!--more--><\/p>\n<p>Chamilo comes with a lot of features such as:<br \/>\n\u2013 Courses management<br \/>\n\u2013 User management, authentication, and enrollment<br \/>\n\u2013 20 pedagogical tools (document management, assignments, announcements, tests, forum, wiki, surveys, etc..)<br \/>\n\u2013 Social learning network<br \/>\n\u2013 Standards implementations (SCORM 1.2, AICC, IMS\/QTI, HotPotatoes, iCal)<br \/>\n\u2013 Training sessions management<br \/>\n\u2013 Availability timeframe for tests\/exams<br \/>\n\u2013 CSV\/Excel data import\/export<br \/>\nand many more&#8230;<\/p>\n<h3><strong>Prerequisites<\/strong><\/h3>\n<p>\u2013 SSH access with root privileges<br \/>\n\u2013 CentOS 7 VPS with at least 1GB of RAM<br \/>\n\u2013 Apache version 2.2 or newer<br \/>\n\u2013 MySQL\/MariaDB database server version 5 or newer<br \/>\n\u2013 PHP version 5.4 or newer with the following PHP modules:\u00a0 php-mysqlnd php-zlib php-pcre php-xml php-json php-mcrypt php-iconv php-gd php-intl php-session<\/p>\n<p>In this tutorial we will install all necessary prerequisites, including Apache, PHP version 7 and MariaDB.<\/p>\n<h3><strong>Step 1. Login via SSH and update the system<\/strong><\/h3>\n<p>Login to your CentOS 7 VPS via SSH as user root<\/p>\n<pre>ssh root@IP_Address -p Port_Number<\/pre>\n<p>and run the following command to update all installed packages<\/p>\n<pre>yum -y update<\/pre>\n<h3><strong>Step 2. Install Apache<\/strong><\/h3>\n<p>Apache web server is available in the official CentOS 7 repository and it can be easily installed with the yum package manager<\/p>\n<pre>yum -y install httpd<\/pre>\n<p>Once the installation is completed, start the web server and enable it to automatically start upon server reboot.<\/p>\n<pre>systemctl start httpd\r\nsystemctl enable httpd<\/pre>\n<h3><strong>Install PHP<\/strong><\/h3>\n<p>CentOS 7 is shipped with PHP 5.4 by default. This PHP version has reached the end of life and it is no longer maintained. We will show you how to install PHP 7 instead, from the Webtatic EL yum repository. Add the repository with the following command<\/p>\n<pre>yum -y install epel-release\r\nrpm -Uvh https:\/\/mirror.webtatic.com\/yum\/el7\/webtatic-release.rpm<\/pre>\n<p>Once you add the repository you can proceed with the PHP installation including the extensions required by Chamilo<\/p>\n<pre>yum -y install php70w php70w-common php70w-mysqlnd php70w-zlib php70w-pcre php70w-xml php70w-json php70w-mcrypt php70w-iconv php70w-gd php70w-intl php70w-session php70w-cli<\/pre>\n<p>verify that PHP 7 is properly installed<\/p>\n<pre>php -v\r\nPHP 7.0.31 (cli) (built: Jul 20 2018 08:55:22) ( NTS )\r\nCopyright (c) 1997-2017 The PHP Group\r\nZend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies<\/pre>\n<h3><strong>Step 3. Install MariaDB<\/strong><\/h3>\n<p>Chamilo requires an empty database, so we will have to install a database server. Install MariaDB database server by executing the following command<\/p>\n<pre>yum -y install mariadb<\/pre>\n<p>Start the server and enable it to start upon reboot<\/p>\n<pre>systemctl start mariadb\r\nsystemctl enable mariadb<\/pre>\n<p>Once the installation of the database server is finished, execute the mysql_secure_installation post-installation script, to set a password for the MySQL root user and implement some additional security recommendations.<\/p>\n<p>Now, login to the MariaDB server and create a new database and user for the Chamilo installation<\/p>\n<pre>mysql -u root -p\r\n\r\nMariaDB [(none)]&gt; CREATE DATABASE chamilo;\r\nMariaDB [(none)]&gt; CREATE USER 'chamilo'@'localhost' IDENTIFIED BY 'PASSWORD';\r\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON chamilo.* TO 'user'@'localhost';\r\nMariaDB [(none)]&gt; FLUSH PRIVILEGES\r\nMariaDB [(none)]&gt; exit<\/pre>\n<p>Replace PASSWORD with an actual strong password.<\/p>\n<h3><strong>Step 4. Download and install Chamilo<\/strong><\/h3>\n<p>Download the latest stable version of Chamilo from their official website, built for PHP version 7.<\/p>\n<pre>wget https:\/\/github.com\/chamilo\/chamilo-lms\/releases\/download\/v1.11.8\/chamilo-1.11.8-php7.zip<\/pre>\n<p>unpack the downloaded archive to the document root directory of your server<\/p>\n<pre>unzip chamilo-1.11.8-php7.zip -d \/var\/www\/html\/<\/pre>\n<p>Rename the directory where all Chamilo files are placed<\/p>\n<pre>cd \/var\/www\/html\r\nmv chamilo-1.11.8 chamilo<\/pre>\n<p>change the ownership of the Chamilo files<\/p>\n<pre>chown -R apache:apache chamilo<\/pre>\n<h3><strong>Step 5. Create Apache virtual host<\/strong><\/h3>\n<p>If you want to access Chamilo with your domain name, you will have to create Apache virtual host for the domain<\/p>\n<pre>vi \/etc\/httpd\/conf.d\/invoiceninja.conf\r\n\r\nServerAdmin admin@your-domain.com\r\nDocumentRoot \/var\/www\/html\/chamilo\r\nServerName domain.com\r\nServerAlias www.domain.com\r\n\r\nOptions +FollowSymlinks\r\nAllowOverride All\r\n\r\nErrorLog \/var\/log\/httpd\/domain.com-error_log\r\nCustomLog \/var\/log\/httpd\/domain.com-access_log common<\/pre>\n<p>Save the file and restart the web server for the changes to take effect<\/p>\n<pre>systemctl restart httpd<\/pre>\n<p>If you closely followed the steps in this tutorial, you will be able to navigate your web browser to http:\/\/domain.com and follow the installation wizard to complete the Chamilo installation.<\/p>\n<p>For more details on how to use and configure Chamilo, please check their <a href=\"https:\/\/docs.chamilo.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">official documentation.<\/a><\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-687\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/09\/installing-chamilo-on-centos-7.jpg\" alt=\"installing chamilo on centos 7\" width=\"150\" height=\"32\" \/> Of course, if you are one of our Linux <a href=\"https:\/\/linuxhostsupport.com\">server management client<\/a>, you don\u2019t have to Install Chamilo on your CentOS 7 VPS, simply ask our admins, sit back and relax. Our admins will Install Chamilo on CentOS 7 for you immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you liked this post about How to Install Chamilo on CentOS 7, please share it with your friends on the social networks using the buttons below or simply leave a comment in the comments section. Thanks.<\/p><div id=\"linux-1817502821\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Chamilo is a free and open-source, PHP based learning management platform and content management system (CMS). Used by millions of students, organizations, governments, schools, and companies around the world, Chamilo is one of the most popular platforms of this type. In this tutorial, we will present you the steps for installing Chamilo on a CentOS [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":686,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[17,119],"class_list":["post-685","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-centos","tag-chamilo"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Chamilo on CentOS 7 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Chamilo is a free and open-source, PHP based learning management platform and content management system (CMS). Used by millions of students,\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Chamilo on CentOS 7 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Chamilo is a free and open-source, PHP based learning management platform and content management system (CMS). Used by millions of students,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-26T12:40:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-08-26T07:49:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Chamilo-on-CentOS-7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Chamilo on CentOS 7\",\"datePublished\":\"2018-09-26T12:40:22+00:00\",\"dateModified\":\"2020-08-26T07:49:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/\"},\"wordCount\":619,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Chamilo-on-CentOS-7.jpg\",\"keywords\":[\"centos\",\"chamilo\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/\",\"name\":\"How to Install Chamilo on CentOS 7 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Chamilo-on-CentOS-7.jpg\",\"datePublished\":\"2018-09-26T12:40:22+00:00\",\"dateModified\":\"2020-08-26T07:49:48+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Chamilo is a free and open-source, PHP based learning management platform and content management system (CMS). Used by millions of students,\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Chamilo-on-CentOS-7.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Chamilo-on-CentOS-7.jpg\",\"width\":750,\"height\":410,\"caption\":\"How to Install Chamilo on CentOS 7\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Chamilo on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Chamilo on CentOS 7 | LinuxHostSupport","description":"Chamilo is a free and open-source, PHP based learning management platform and content management system (CMS). Used by millions of students,","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Chamilo on CentOS 7 | LinuxHostSupport","og_description":"Chamilo is a free and open-source, PHP based learning management platform and content management system (CMS). Used by millions of students,","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-09-26T12:40:22+00:00","article_modified_time":"2020-08-26T07:49:48+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Chamilo-on-CentOS-7.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Chamilo on CentOS 7","datePublished":"2018-09-26T12:40:22+00:00","dateModified":"2020-08-26T07:49:48+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/"},"wordCount":619,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Chamilo-on-CentOS-7.jpg","keywords":["centos","chamilo"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/","name":"How to Install Chamilo on CentOS 7 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Chamilo-on-CentOS-7.jpg","datePublished":"2018-09-26T12:40:22+00:00","dateModified":"2020-08-26T07:49:48+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Chamilo is a free and open-source, PHP based learning management platform and content management system (CMS). Used by millions of students,","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Chamilo-on-CentOS-7.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Chamilo-on-CentOS-7.jpg","width":750,"height":410,"caption":"How to Install Chamilo on CentOS 7"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-chamilo-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Chamilo on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/685","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=685"}],"version-history":[{"count":2,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/685\/revisions"}],"predecessor-version":[{"id":1270,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/685\/revisions\/1270"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/686"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=685"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=685"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=685"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}