{"id":19573,"date":"2016-07-20T07:56:31","date_gmt":"2016-07-20T12:56:31","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=19573"},"modified":"2022-12-09T09:17:03","modified_gmt":"2022-12-09T15:17:03","slug":"how-to-install-october-cms-on-a-centos-7-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/","title":{"rendered":"How to install October CMS on CentOS 7"},"content":{"rendered":"
<\/div>

\"How<\/p>\n

RoseHosting is proud to be an\u00a0Official OctoberCMS Partner<\/a>\u00a0\u2013<\/strong><\/em>\u00a0\"\"<\/p>\n

We’ll show you, how to install October CMS on CentOS 7. October CMS is a free content management software based on the Laravel PHP Framework, with the best back-end user interface ever seen in a CMS.
\nIn this tutorial, we will show you the steps needed to install October CMS on a
CentOS 7 VPS<\/a><\/strong>.<\/p>\n

At the time of writing this tutorial, the latest stable version of October CMS is October CMS build 347 and it requires:<\/p>\n

<\/p>\n

Requirements:<\/strong><\/p>\n

PHP 5.5.9 or higher, compiled with cURL, PDO, OpenSSL, Mbstring ZipArchive and GD PHP Library enabled.
\nApache Web Server 2.0 or higher compiled with mod_rewrite module;
\nMySQL, MariaDB, PostgreSQL or SQLite.<\/p>\n

This install guide assumes that Apache and MySQL (or MariaDB) are already installed and configured on your virtual server<\/a>.<\/p>\n

CentOS 7 comes with PHP 5.4.16 version installed via yum, not PHP 5.5 or higher. In order to install PHP 5.5.9 or higher, add the EPEL and Webtatic EL yum repositories information to yum:<\/p>\n

wget https:\/\/mirror.webtatic.com\/yum\/el7\/epel-release.rpm\r\nrpm -Uvh epel-release.rpm\r\nwget https:\/\/mirror.webtatic.com\/yum\/el7\/webtatic-release.rpm\r\nrpm -Uvh webtatic-release.rpm<\/pre>\n

Remove php 5.4 version and install php 5.6<\/p>\n

yum remove php-common\r\nyum install php56w php56w-opcache php56w-cli php56w-common php56w-gd php56w-mbstring php56w-mysql php56w-pdo unzip<\/pre>\n

Restart Apache for the changes to take effect:<\/p>\n

systemctl restart  httpd.service<\/pre>\n

Download the latest version of October CMS available at ‘http:\/\/octobercms.com\/download’ to a directory on the server and extract it using the following commands:<\/p>\n

cd \/opt\/\r\nwget http:\/\/octobercms.com\/download -O octobercms.zip\r\nunzip octobercms.zip -d \/var\/www\/html\/octobercms\/<\/pre>\n

Create a new MySQL database for October CMS on your server:<\/p>\n

mysql -u root -p\r\nEnter password:\r\nWelcome to the MariaDB monitor.  Commands end with ; or \\g.\r\nYour MariaDB connection id is 2\r\nServer version: 5.5.47-MariaDB MariaDB Server\r\nCopyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.\r\nType 'help;' or '\\h' for help. Type '\\c' to clear the current input statement.\r\nMariaDB [(none)]> create database octobercmsdb;\r\nQuery OK, 1 row affected (0.00 sec)\r\nMariaDB [(none)]> GRANT ALL PRIVILEGES ON octobercmsdb.* TO 'octobercms'@'localhost' IDENTIFIED BY 'Y0uR-Passw0rD';\r\nQuery OK, 0 rows affected (0.00 sec)\r\nMariaDB [(none)]> flush privileges;\r\nQuery OK, 0 rows affected (0.00 sec)\r\nMariaDB [(none)]> quit\r\nBye\r\n<\/pre>\n

Create a new virtual host directive in Apache. For example, edit your Apache configuration file (\u2018\/etc\/httpd\/conf\/httpd.conf\u2019 by default) and un-comment the following line:<\/p>\n

#NameVirtualHost *:80<\/pre>\n

Then, add the following lines at the end:<\/p>\n

<VirtualHost *:80>\r\nServerAdmin admin@yourdomain.com\r\nDocumentRoot \/var\/www\/html\/octobercms\/install-master\/\r\nServerName yourdomain.com\r\nServerAlias www.yourdomain.com\r\n<Directory \/var\/www\/html\/octobercms\/install-master\/>\r\n    DirectoryIndex index.php\r\n    Options FollowSymLinks\r\n    AllowOverride All\r\n    Require all granted\r\n<\/Directory>\r\n    ErrorLog logs\/yourdomain.com-error_log\r\n    CustomLog logs\/yourdomain.com-access_log common\r\n<\/VirtualHost>\r\n<\/pre>\n

Run the following command to set proper permissions:<\/p>\n

chown apache:apache -R \/var\/www\/html\/octobercms\/<\/pre>\n

Restart the Apache service for the changes to take effect:<\/p>\n

systemctl restart httpd.service<\/pre>\n

Open http:\/\/yourdomain.com in your favorite browser and follow the easy instructions.
\n\"october<\/p>\n

If all requirements are met, click ‘Agree & Continue’ and on the next page, enter MySQL database information:<\/p>\n

Database Type: MySQL
\nMySQL Host: localhost
\nMySQL Port: 3306
\nDatabase Name: octobercmsdb
\nMySQL Login: octobercms
\nMySQL Password: Y0uR-Passw0rD<\/p>\n

Click ‘Administrator’ and enter admin login credentials, then click ‘Continue. If you want to install October without any plugins or themes, click ‘Start from scratch’. Our recommendation is to click ‘Start from a theme’, select a theme and click ‘Install’. You can easily customize it later via admin back-end.
\nFor security reasons you should delete the installation files, the install.php script and the install_files directory.<\/p>\n

rm -rf \/var\/www\/html\/octobercms\/install-master\/install_files\/\r\nrm -rf \/var\/www\/html\/octobercms\/install-master\/install.php<\/pre>\n

Add the following cron entry to your server in order for scheduled tasks to operate correctly:<\/p>\n

* * * * * php \/var\/www\/html\/octobercms\/install-master\/artisan schedule:run >> \/dev\/null 2>&1<\/pre>\n

Editing the crontab is commonly performed with the command ‘crontab -e’.<\/p>\n

Log into the administration area at http:\/\/yourdomain.com\/backend and customize your website according to your needs.<\/p>\n

\"october
\nThat is it. The October CMS installation is now complete.<\/p>\n

Of course you don\u2019t have to\u00a0install October CMS on CentOS 7 if you use one of our CentOS VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install October CMS<\/strong>\u00a0on CentOS 7 for you. They are available 24×7 and will take care of your request immediately.<\/p>\n

PS.<\/strong><\/span> If you liked this post, on how to install October CMS on CentOS 7,\u00a0 please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"

RoseHosting is proud to be an\u00a0Official OctoberCMS Partner\u00a0\u2013\u00a0 We’ll show you, how to install October CMS on CentOS 7. October … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":25047,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,1710,13],"tags":[34,1308],"yoast_head":"\nHow to install October CMS on CentOS 7 - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install October CMS on CentOS 7 - 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-october-cms-on-a-centos-7-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install October CMS on CentOS 7 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to install October CMS on CentOS 7 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/\" \/>\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=\"2016-07-20T12:56:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-09T15:17:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/How-to-install-October-CMS-a-CentOS-7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\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-october-cms-on-a-centos-7-vps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install October CMS on CentOS 7\",\"datePublished\":\"2016-07-20T12:56:31+00:00\",\"dateModified\":\"2022-12-09T15:17:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/\"},\"wordCount\":536,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/How-to-install-October-CMS-a-CentOS-7.jpg\",\"keywords\":[\"centos\",\"October CMS\"],\"articleSection\":[\"CentOS\",\"CMS, CRM, ERP\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/\",\"name\":\"How to install October CMS on CentOS 7 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/How-to-install-October-CMS-a-CentOS-7.jpg\",\"datePublished\":\"2016-07-20T12:56:31+00:00\",\"dateModified\":\"2022-12-09T15:17:03+00:00\",\"description\":\"How to install October CMS on CentOS 7 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/How-to-install-October-CMS-a-CentOS-7.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/How-to-install-October-CMS-a-CentOS-7.jpg\",\"width\":1200,\"height\":600,\"caption\":\"How to install October CMS a CentOS 7\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install October CMS on CentOS 7\"}]},{\"@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 October CMS on CentOS 7 - RoseHosting","description":"How to install October CMS on CentOS 7 - 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-october-cms-on-a-centos-7-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install October CMS on CentOS 7 - RoseHosting","og_description":"How to install October CMS on CentOS 7 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2016-07-20T12:56:31+00:00","article_modified_time":"2022-12-09T15:17:03+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/How-to-install-October-CMS-a-CentOS-7.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-october-cms-on-a-centos-7-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install October CMS on CentOS 7","datePublished":"2016-07-20T12:56:31+00:00","dateModified":"2022-12-09T15:17:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/"},"wordCount":536,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/How-to-install-October-CMS-a-CentOS-7.jpg","keywords":["centos","October CMS"],"articleSection":["CentOS","CMS, CRM, ERP","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/","name":"How to install October CMS on CentOS 7 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/How-to-install-October-CMS-a-CentOS-7.jpg","datePublished":"2016-07-20T12:56:31+00:00","dateModified":"2022-12-09T15:17:03+00:00","description":"How to install October CMS on CentOS 7 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/How-to-install-October-CMS-a-CentOS-7.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/How-to-install-October-CMS-a-CentOS-7.jpg","width":1200,"height":600,"caption":"How to install October CMS a CentOS 7"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-october-cms-on-a-centos-7-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install October CMS on CentOS 7"}]},{"@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\/19573"}],"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=19573"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/19573\/revisions"}],"predecessor-version":[{"id":44016,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/19573\/revisions\/44016"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/25047"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=19573"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=19573"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=19573"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}