{"id":27695,"date":"2018-08-02T07:00:00","date_gmt":"2018-08-02T12:00:00","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=27695"},"modified":"2022-06-03T03:34:46","modified_gmt":"2022-06-03T08:34:46","slug":"how-to-install-chamilo-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/","title":{"rendered":"How to Install Chamilo on Ubuntu 16.04"},"content":{"rendered":"
<\/div>

\"How<\/p>\n

In this installation guide we will show you how to install Chamilo on a clean Ubuntu 16.04 VPS with Apache, PHP amd MySQL. Chamilo is a free and open-source learning management platform and content management system (CMS) written in PHP. Chamilo is currently used by more than 7 million students, and number of governments, universities, schools and companies, and it is one of the most popular learning management systems.<\/p>\n

<\/p>\n

Chamilo has tons of useful features including:
\n– Courses management
\n– User management, authentication and enrollment
\n– 20 pedagogical tools (document management, tests, forum, wiki, surveys, etc..)
\n– Social learning network
\n– Standards implementations (SCORM 1.2, AICC, IMS\/QTI, HotPotatoes, iCal)
\n– Training sessions management
\n– Availability timeframe for tests\/exams
\n– CSV\/Excel data import\/export
\nand many more..<\/p>\n

For detailed list of all features available in the latest Chamilo version you can check their official site<\/a>.<\/p>\n

Prerequisites<\/strong><\/h3>\n

– SSH access with root privileges
\n– Ubuntu 16.04 VPS
\n– Apache web server version 2.2 or newer
\n– MySQL\/MariaDB database server version 5 or newer
\n– PHP version 5.4 or newer<\/p>\n

Login via SSH and update the system<\/strong><\/h3>\n

Login to your Ubuntu 16.04 VPS via SSH as user root<\/p>\n

ssh root@IP_Address -p<\/pre>\n

and as usual, run the following command to upgrade all installed packages on your VPS<\/p>\n

apt update && apt upgrade<\/pre>\n

Install MySQL server<\/strong><\/h3>\n

We will start preparing our Ubuntu 16.04 for Chamilo, with installing MySQL database server. Chamilo stores its informaion in a database, so we will have to create a MySQL user and database. Run the following command to install MySQL server<\/p>\n

apt -y install mysql-server<\/pre>\n

At the begging of the installation a window will appear and you will be prompted to enter a password for the MySQL root user. You should always use strong passwords for your accounts, especially when it comes to users that have full privileges such as the root user<\/p>\n

Once the MySQL server is installed run the following command to enable it to start upon server reboot<\/p>\n

systemctl enable mysql<\/pre>\n

Create MySQL user and database<\/strong><\/h3>\n

Next, login to the MySQL server as user root, using the password we entered in the previous step<\/p>\n

mysql -u root -p<\/pre>\n

and create a new MySQL user and database for the Chamilo installation<\/p>\n

mysql> CREATE DATABASE chamilo;\r\nmysql> GRANT ALL PRIVILEGES on chamilo.* to 'chamilouser'@'localhost' identified by 'PASSWORD';\r\nmysql> FLUSH PRIVILEGES;\r\nmysql> exit<\/pre>\n

Don’t forget to replace ‘PASSWORD’ with an actual strong password.<\/p>\n

Install Apache web server<\/strong><\/h3>\n

Chamilo can run on different web server, but in this guide we decided to use Apache. Its installation is pretty simple and it can be installed using the apt package manager<\/p>\n

apt -y install apache2<\/pre>\n

After the installation is completed you can check if the web serevr is successully installed, by navigating to http:\/\/Your_IP in your favorite web browser. If everything is OK you will get the default Apache web page.<\/p>\n

Same as we did with MySQL, enable the Apache web server to start automatically upon server reboot<\/p>\n

systemctl enable apache2<\/pre>\n

Install PHP 7<\/strong><\/h3>\n

Chamilo is PHP based application, so we have to install PHP on the server, including some PHP extensions required by Chamilo.<\/p>\n

apt -y install php php-mcrypt php-common php-intl php-gd libapache2-mod-php7.0<\/pre>\n

restart the web server and proceed with the next step<\/p>\n

systemctl restart apache2<\/pre>\n

Create Apache Virtual Host<\/strong><\/h3>\n

In order to be able to access Chamilo with a domain name, we will have to create Apache virtual host directive for that domain. For example we will use chamilo.com . Create a new file with the following content<\/p>\n

nano \/etc\/apache2\/sites-available\/chamilo.conf\r\n\r\n\r\n    ServerAdmin admin@chamilo.com\r\n    DocumentRoot \/var\/www\/html\/chamilo\r\n    ServerName opsto.tk\r\n    ErrorLog \/var\/log\/apache2\/chamilo.com-error_log\r\n    CustomLog \/var\/log\/apache2\/chamilo.com-access_log common\r\n<\/pre>\n

Replace all occurences of ‘chamilo.com’ with your actual domain name.<\/p>\n

Enable the virtual host directive using the following command:<\/p>\n

a2ensite chamilo<\/pre>\n

and restart the web server for the changes to take effect.<\/p>\n

systemctl restart apache2<\/pre>\n

Download and install Chamilo<\/strong><\/h3>\n

Go to Chamilo’s official website and download the latest stable release of the application. At the moment of writing this installation guide it is version 1.11.6. Please note that you to download the version built for PHP 7<\/p>\n

wget https:\/\/github.com\/chamilo\/chamilo-lms\/releases\/download\/v1.11.6\/chamilo-1.11.6-php7.zip<\/pre>\n

Once it is downloaded, unpack the zip archive to the document root directory on your server.<\/p>\n

unzip chamilo-1.11.6-php7.zip -d \/var\/www\/html\/<\/pre>\n

The content of the applicaion will be placed in a new ‘chamilo-1.11.6’ directory under the document root. We will rename it to something simpler<\/p>\n

cd \/var\/www\/html\r\nmv chamilo-1.11.6 chamilo<\/pre>\n

change the ownership of the Chamilo files<\/p>\n

chown -R www-data:www-data chamilo<\/pre>\n

Finally, navigate your web browser to http:\/\/chamilo.com and follow the installation wizard to complete the Chamilo installation.<\/p>\n

\"Install<\/p>\n


\n

\"InstallingOf course, if you are one of our Ubuntu Hosting customers, you don\u2019t have to Install Chamilo on your Ubuntu 16.04 VPS, simply ask our admins, sit back and relax. Our admins will Install Chamilo on Ubuntu 16.04 for you immediately.<\/p>\n

PS.<\/strong><\/span> If you liked this post about How to Install Chamilo on Ubuntu 16.04 VPS, 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>\n","protected":false},"excerpt":{"rendered":"

In this installation guide we will show you how to install Chamilo on a clean Ubuntu 16.04 VPS with Apache, … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":27716,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1710,13,1698],"tags":[1737,59],"yoast_head":"\nHow to Install Chamilo on Ubuntu 16.04 - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Install Chamilo on Ubuntu 16.04 - RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/\" \/>\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 Ubuntu 16.04 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to Install Chamilo on Ubuntu 16.04 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-02T12:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:34:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Chamilo-on-Ubuntu-16.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\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:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Install Chamilo on Ubuntu 16.04\",\"datePublished\":\"2018-08-02T12:00:00+00:00\",\"dateModified\":\"2022-06-03T08:34:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/\"},\"wordCount\":746,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Chamilo-on-Ubuntu-16.04.jpg\",\"keywords\":[\"chamilo\",\"ubuntu\"],\"articleSection\":[\"CMS, CRM, ERP\",\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/\",\"name\":\"How to Install Chamilo on Ubuntu 16.04 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Chamilo-on-Ubuntu-16.04.jpg\",\"datePublished\":\"2018-08-02T12:00:00+00:00\",\"dateModified\":\"2022-06-03T08:34:46+00:00\",\"description\":\"How to Install Chamilo on Ubuntu 16.04 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Chamilo-on-Ubuntu-16.04.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Chamilo-on-Ubuntu-16.04.jpg\",\"width\":742,\"height\":372,\"caption\":\"How to Install Chamilo on Ubuntu 16.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Chamilo on Ubuntu 16.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Chamilo on Ubuntu 16.04 - RoseHosting","description":"How to Install Chamilo on Ubuntu 16.04 - RoseHosting","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:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Chamilo on Ubuntu 16.04 - RoseHosting","og_description":"How to Install Chamilo on Ubuntu 16.04 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-08-02T12:00:00+00:00","article_modified_time":"2022-06-03T08:34:46+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Chamilo-on-Ubuntu-16.04.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Install Chamilo on Ubuntu 16.04","datePublished":"2018-08-02T12:00:00+00:00","dateModified":"2022-06-03T08:34:46+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/"},"wordCount":746,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Chamilo-on-Ubuntu-16.04.jpg","keywords":["chamilo","ubuntu"],"articleSection":["CMS, CRM, ERP","Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/","name":"How to Install Chamilo on Ubuntu 16.04 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Chamilo-on-Ubuntu-16.04.jpg","datePublished":"2018-08-02T12:00:00+00:00","dateModified":"2022-06-03T08:34:46+00:00","description":"How to Install Chamilo on Ubuntu 16.04 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Chamilo-on-Ubuntu-16.04.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/07\/How-to-Install-Chamilo-on-Ubuntu-16.04.jpg","width":742,"height":372,"caption":"How to Install Chamilo on Ubuntu 16.04"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-chamilo-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Chamilo on Ubuntu 16.04"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27695"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=27695"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27695\/revisions"}],"predecessor-version":[{"id":41781,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27695\/revisions\/41781"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/27716"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=27695"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=27695"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=27695"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}