{"id":17664,"date":"2015-10-06T15:46:13","date_gmt":"2015-10-06T20:46:13","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=17664"},"modified":"2022-06-03T03:44:08","modified_gmt":"2022-06-03T08:44:08","slug":"install-quokka-on-a-centos-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/","title":{"rendered":"Install Quokka on Centos"},"content":{"rendered":"
<\/div>

\"install-quokka-on-a-centos-vps\"In this blog post we will show you how to install Quokka on a Centos VPS<\/a> with Nginx and uWSGI. Quokka is open source flexible content management system based on the Flask web framework . You can use Quokka to build a web portal, publish a blog or use it as a document management system . With the existing Quokka modules you can create an e-commerce application or fundraising website. This guide should work on other Linux VPS<\/a> systems as well but was tested and written for a Centos 7 VPS<\/a>.<\/p>\n

<\/p>\n

Login to your VPS via SSH<\/h4>\n
ssh root@vps<\/pre>\n

Install the EPEL repository<\/h4>\n

To install the EPEL repository on your CentOS VPS, just run:<\/p>\n

[root]$ rpm -Uvh http:\/\/dl.fedoraproject.org\/pub\/epel\/7\/x86_64\/e\/epel-release-7-5.noarch.rpm<\/pre>\n

Update the system and install necessary packages<\/h4>\n
[root]$ yum -y update\n[root]$ yum -y install git python-pip python-virtualenv pcre-devel python-imaging python-devel libjpeg-turbo-devel make gcc<\/pre>\n

Create a new system user<\/h4>\n

Create a new user for Quokka:<\/p>\n

[root]$ adduser --comment 'Quokka User' --home-dir \/home\/quokka quokka<\/pre>\n
[root]$ chmod 755 \/home\/quokka<\/pre>\n

Install MongoDB<\/h4>\n

We will install the latest MongoDB 2.6 packages from the official MongoDB repository.<\/p>\n

Create a \/etc\/yum.repos.d\/mongodb-org-2.6.repo<\/code> file and insert the following lines:<\/p>\n

[root]$ nano \/etc\/yum.repos.d\/mongodb-org-2.6.repo<\/pre>\n
[mongodb-org-2.6]\nname=MongoDB 2.6 Repository\nbaseurl=http:\/\/downloads-distro.mongodb.org\/repo\/redhat\/os\/x86_64\/\ngpgcheck=0\nenabled=1<\/pre>\n

Once you have saved the file, install MongoDB with the following command:<\/p>\n

[root]$ yum -y install mongodb-org<\/pre>\n

Finaly start and enable MongoDB at boot:<\/p>\n

[root]$ chkconfig mongod on\n[root]$ systemctl start mongod<\/pre>\n

Create a python virtual environment and clone the Quokka source code<\/h4>\n

The following commands are run as quokka user. To switch to quokka user run:<\/p>\n

[root]$ su - quokka<\/pre>\n

Create a new virtualenv using the following command<\/p>\n

[quokka]$ virtualenv quokka-env<\/pre>\n

Clone the Quokka source code to the \/home\/quokka\/quokka-env\/quokka<\/code> directory.<\/p>\n

[quokka]$ cd quokka-env\n[quokka]$ git clone https:\/\/github.com\/quokkaproject\/quokka<\/pre>\n

Switch to the new virtualenv<\/p>\n

[quokka]$ source ~\/quokka-env\/bin\/activate<\/pre>\n

Install all dependencies with:<\/p>\n

(quokka-env)[quokka]$ cd quokka\n(quokka-env)[quokka]$ pip install -r requirements\/requirements.txt<\/pre>\n

If you want to populate the installation with sample data run :<\/p>\n

(quokka-env)[quokka]$ \/home\/quokka\/quokka-env\/bin\/python manage.py populate<\/pre>\n

Install and configure Nginx and uWSGI<\/h4>\n

Nginx is not available by default in CentOS 7 so we will use the official Nginx repository:<\/p>\n

[root]$ rpm -Uvh http:\/\/nginx.org\/packages\/centos\/7\/noarch\/RPMS\/nginx-release-centos-7-0.el7.ngx.noarch.rpm<\/pre>\n

To install Nginx run:<\/p>\n

[root]$ yum -y install nginx<\/pre>\n

Next, create a new Nginx server block:<\/p>\n

[root]$ nano \/etc\/nginx\/conf.d\/YOUR_QUOKKA_DOMAIN.conf<\/pre>\n
server {\n        server_name YOUR_QUOKKA_DOMAIN;\n\tclient_body_in_file_only clean;\n\tclient_body_buffer_size 64K;\n\tclient_max_body_size 40M;\n\tsendfile on;\n        send_timeout 300s;\n        location ~ ^\/(static|mediafiles)\/ {\n            root    \/home\/quokka\/quokka-env\/quokka\/quokka;\n            location ~* ^.+.(py|pyc|sh|bat|ini|pot|git)$ {deny all; }\n            expires 7d;\n        }\n        location \/ {\n            uwsgi_pass      unix:\/home\/quokka\/quokka-env\/quokka\/etc\/logs\/quokka.socket;\n            include         \/etc\/nginx\/uwsgi_params;\n            uwsgi_param     UWSGI_SCHEME $scheme;\n            uwsgi_param     SERVER_SOFTWARE    nginx\/$nginx_version;\n        }\n}\n<\/pre>\n

Install uWSGI using pip<\/p>\n

pip install --upgrade uwsgi<\/pre>\n

Create uwsgi configuration file for Quokka:<\/p>\n

mkdir \/etc\/uwsgi.d\/<\/pre>\n
[root]$ nano \/etc\/uwsgi.d\/quokka.ini<\/pre>\n
[uwsgi]\nchmod-socket = 666\nvirtualenv = \/home\/quokka\/quokka-env\nmount  = \/=wsgi:application\nchdir  = \/home\/quokka\/quokka-env\/quokka\nsocket = \/home\/quokka\/quokka-env\/quokka\/etc\/logs\/%n.socket\nstats  = \/home\/quokka\/quokka-env\/quokka\/etc\/logs\/%n.stats.socket\nlogto  = \/home\/quokka\/quokka-env\/quokka\/etc\/logs\/%n.log\nworkers = 4\nuid = quokka\ngid = quokka\nmax-requests = 2000\nlimit-as = 512\nreload-on-as = 256\nreload-on-rss = 192<\/pre>\n

Open your editor of choice and create a new systemd service for Quokka:<\/p>\n

[root]$ nano \/etc\/systemd\/system\/uwsgi.service<\/pre>\n

and add the following code lines:<\/p>\n

[Unit]\nDescription=uWSGI Emperor Service\nAfter=syslog.target\n\n[Service]\nExecStart=\/usr\/bin\/uwsgi --master --die-on-term --emperor \/etc\/uwsgi.d\nExecReload=\/bin\/kill -HUP $MAINPID\nKillSignal=SIGINT\nRestart=always\nType=notify\nStandardError=syslog\nNotifyAccess=all\n\n[Install]\nWantedBy=multi-user.target\n<\/pre>\n

Start and enable uWSGI at boot:<\/p>\n

[root]$ systemctl enable uwsgi\n[root]$ systemctl start uwsgi<\/pre>\n

Start and enable Nginx at boot:<\/p>\n

[root]$ systemctl enable nginx\n[root]$ systemctl start nginx<\/pre>\n

That’s it. You have successfully installed your Quokka. To access it, open http:\/\/YOUR_QUOKKA_DOMAIN\/<\/code> in your browser. For more information about Quokka, please refer to the official Quokka website.<\/p>\n


\n

Of course you don\u2019t have to do any of this if you use one of our Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to setup this for you. They are available 24×7 and will take care of your request immediately.<\/p>\n

PS<\/span><\/strong>. If you liked this post 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":"

In this blog post we will show you how to install Quokka on a Centos VPS with Nginx and uWSGI. … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":17667,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,13],"tags":[468,908],"yoast_head":"\nInstall Quokka on Centos - RoseHosting<\/title>\n<meta name=\"description\" content=\"Install Quokka on Centos - 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\/install-quokka-on-a-centos-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Quokka on Centos - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Install Quokka on Centos - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-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=\"2015-10-06T20:46:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:44:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/09\/install-quokka-on-a-centos-vps.png\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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\/install-quokka-on-a-centos-vps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install Quokka on Centos\",\"datePublished\":\"2015-10-06T20:46:13+00:00\",\"dateModified\":\"2022-06-03T08:44:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/\"},\"wordCount\":412,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/09\/install-quokka-on-a-centos-vps.png\",\"keywords\":[\"Mongo\",\"Quokka\"],\"articleSection\":[\"CentOS\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/\",\"name\":\"Install Quokka on Centos - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/09\/install-quokka-on-a-centos-vps.png\",\"datePublished\":\"2015-10-06T20:46:13+00:00\",\"dateModified\":\"2022-06-03T08:44:08+00:00\",\"description\":\"Install Quokka on Centos - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/09\/install-quokka-on-a-centos-vps.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/09\/install-quokka-on-a-centos-vps.png\",\"width\":300,\"height\":300},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Quokka on Centos\"}]},{\"@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":"Install Quokka on Centos - RoseHosting","description":"Install Quokka on Centos - 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\/install-quokka-on-a-centos-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install Quokka on Centos - RoseHosting","og_description":"Install Quokka on Centos - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-10-06T20:46:13+00:00","article_modified_time":"2022-06-03T08:44:08+00:00","og_image":[{"width":300,"height":300,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/09\/install-quokka-on-a-centos-vps.png","type":"image\/png"}],"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\/install-quokka-on-a-centos-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install Quokka on Centos","datePublished":"2015-10-06T20:46:13+00:00","dateModified":"2022-06-03T08:44:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/"},"wordCount":412,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/09\/install-quokka-on-a-centos-vps.png","keywords":["Mongo","Quokka"],"articleSection":["CentOS","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/","name":"Install Quokka on Centos - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/09\/install-quokka-on-a-centos-vps.png","datePublished":"2015-10-06T20:46:13+00:00","dateModified":"2022-06-03T08:44:08+00:00","description":"Install Quokka on Centos - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/09\/install-quokka-on-a-centos-vps.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/09\/install-quokka-on-a-centos-vps.png","width":300,"height":300},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-quokka-on-a-centos-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Quokka on Centos"}]},{"@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\/17664"}],"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=17664"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17664\/revisions"}],"predecessor-version":[{"id":34986,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17664\/revisions\/34986"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/17667"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=17664"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=17664"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=17664"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}