{"id":18462,"date":"2016-01-26T14:34:11","date_gmt":"2016-01-26T20:34:11","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=18462"},"modified":"2022-06-03T03:43:51","modified_gmt":"2022-06-03T08:43:51","slug":"install-wekan-on-an-ubuntu-14-04-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/","title":{"rendered":"How to install Wekan on Ubuntu 14.04"},"content":{"rendered":"
<\/div>

\"install-wekan-on-an-ubuntu-14-04-vps\"In this blog post we will show you how to install Wekan on an Ubuntu 14.04 VPS<\/strong> with the latest version of Nginx as a reverse proxy. Wekan is an open-source Trello-like kanban board application which runs on Node.js and MongoDB. This guide should work on other Linux VPS<\/a> systems as well, but was tested and written for Ubuntu 14.04 VPS<\/a>.<\/p>\n

<\/p>\n

Log in to your VPS via SSH<\/h4>\n
ssh user@vps_IP<\/pre>\n

Update the system and install necessary packages<\/h4>\n
[user]$ sudo apt-get update && sudo apt-get -y upgrade\r\n[user]$ sudo apt-get install software-properties-common libssl-dev curl build-essential nano<\/pre>\n

Install Node.js<\/h4>\n

We will install the nodejs version 0.10.40 using the nvm (Node Version Manager) script<\/p>\n

[user]$ curl -o- https:\/\/raw.githubusercontent.com\/creationix\/nvm\/v0.30.1\/install.sh | bash\r\n[user]$ source ~\/.nvm\/nvm.sh\r\n[user]$ nvm install v0.10.40\r\n[user]$ nvm use v0.10.40\r\n[user]$ nvm alias default v0.10.40<\/pre>\n

Install MongoDB<\/h4>\n

To install the latest MongoDB package from the official MongoDB repository run the following commands:<\/p>\n

[user]$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10\r\n[user]$ echo 'deb http:\/\/downloads-distro.mongodb.org\/repo\/ubuntu-upstart dist 10gen' | sudo tee \/etc\/apt\/sources.list.d\/mongodb.list\r\n[user]$ sudo apt-get update\r\n[user]$ sudo apt-get install -y mongodb-org<\/pre>\n

Download and install Wekan<\/h4>\n

Create a root directory for your Wekan instance and download the latest release from github using the following commands:<\/p>\n

[user]$ mkdir -p ~\/wekan\r\n[user]$ curl -LOk https:\/\/github.com\/wekan\/wekan\/releases\/download\/v0.10.1\/wekan-0.10.1.tar.gz\r\n[user]$ tar xzvf wekan-0.10.1.tar.gz -C ~\/wekan\r\n[user]$ cd ~\/wekan\/bundle\/programs\/server\r\n[user]$ npm install \r\n<\/pre>\n

In case you never heard of Forever, it is a tool which ensures that a given script runs forever.<\/p>\n

[user]$ npm install forever -g<\/pre>\n

Create an Upstart script<\/h4>\n
[user]$ sudo nano \/etc\/init\/wekan.conf<\/pre>\n
#!upstart\r\n\r\ndescription \"Wekan Upstart Script\"\r\n \r\nstart on startup\r\nstop on shutdown\r\n \r\nexpect fork\r\n\r\nenv NAME=\"Wekan\"\r\nenv NODE_PATH=\"\/home\/username\/.nvm\/v0.10.40\/bin\"\r\nenv APPLICATION_PATH=\"\/home\/username\/wekan\/bundle\/main.js\"\r\nenv PIDFILE=\/var\/run\/wekan.pid\r\nenv LOGFILE=\/var\/log\/wekan.log\r\nenv MONGO_URL=\"mongodb:\/\/127.0.0.1:27017\/wekan\"\r\nenv ROOT_URL=\"http:\/\/127.0.0.1\"\r\nenv MAIL_URL='smtp:\/\/user:pass@mailserver.example.com:25\/'\r\nenv PORT=\"8080\"\r\n\r\nscript\r\n    PATH=$NODE_PATH:$PATH\r\n\r\n    exec forever \\\r\n        --pidFile $PIDFILE \\\r\n        -a \\\r\n        -l $LOGFILE \\\r\n        --minUptime 5000 \\\r\n        --spinSleepTime 2000 \\\r\n        start $APPLICATION_PATH\r\n\r\nend script\r\n \r\npre-stop script\r\n    PATH=$NODE_PATH:$PATH\r\n\r\n    exec forever stop $APPLICATION_PATH\r\nend script\r\n<\/pre>\n

Do not forget to change username with your actual username.<\/p>\n

You can now start your Wekan service with :<\/p>\n

[user]$ sudo service wekan start<\/pre>\n

Install and Configure Nginx<\/h4>\n

The latest version of Nginx 1.8 is not available via the default Ubuntu repositories, so we will add the “nginx\/stable” PPA, update the system and install the nginx package.<\/p>\n

[user]$ sudo add-apt-repository ppa:nginx\/stable\r\n[user]$ sudo apt-get update\r\n[user]$ sudo apt-get install nginx<\/pre>\n

Create a new Nginx server block with the following content<\/p>\n

[user]$ sudo nano \/etc\/nginx\/sites-available\/wekan<\/pre>\n
server {\r\n    server_name my_wekan_domain;\r\n    listen 80;\r\n\r\n    access_log \/var\/log\/nginx\/wekan-access.log;\r\n    error_log \/var\/log\/nginx\/wekan-error.log;\r\n\r\n    location \/ {\r\n        proxy_set_header   X-Real-IP $remote_addr;\r\n        proxy_set_header   Host      $host;\r\n        proxy_http_version 1.1;\r\n        proxy_set_header   Upgrade $http_upgrade;\r\n        proxy_set_header   Connection 'upgrade';\r\n        proxy_cache_bypass $http_upgrade;\r\n        proxy_pass         http:\/\/127.0.0.1:8080;\r\n    }\r\n \r\n}\r\n<\/pre>\n

Activate the server block by creating a symbolic link :<\/p>\n

[user]$ sudo ln -s \/etc\/nginx\/sites-available\/wekan \/etc\/nginx\/sites-enabled\/wekan<\/pre>\n

Test the Nginx configuration and restart the server<\/p>\n

[user]$ sudo nginx -t\r\n[user]$ sudo service nginx restart<\/pre>\n

That’s it. You can now open your browser, type the address of your Wekan instance and register your first user.<\/p>\n

For more information about how manage your Wekan application, please refer to the Wekan<\/a> 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 Wekan on an Ubuntu 14.04 VPS with the latest … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":18464,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,1698],"tags":[1076,1075,1067,468,357],"yoast_head":"\nHow to install Wekan on Ubuntu 14.04 - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install Wekan on Ubuntu 14.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\/install-wekan-on-an-ubuntu-14-04-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 Wekan on Ubuntu 14.04 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to install Wekan on Ubuntu 14.04 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-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-01-26T20:34:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:43:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-vps.png\" \/>\n\t<meta property=\"og:image:width\" content=\"240\" \/>\n\t<meta property=\"og:image:height\" content=\"240\" \/>\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=\"3 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-wekan-on-an-ubuntu-14-04-vps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install Wekan on Ubuntu 14.04\",\"datePublished\":\"2016-01-26T20:34:11+00:00\",\"dateModified\":\"2022-06-03T08:43:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/\"},\"wordCount\":350,\"commentCount\":20,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-vps.png\",\"keywords\":[\"Install Wekan\",\"Install Wekan on Ubuntu\",\"kanban\",\"Mongo\",\"node.js\"],\"articleSection\":[\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/\",\"name\":\"How to install Wekan on Ubuntu 14.04 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-vps.png\",\"datePublished\":\"2016-01-26T20:34:11+00:00\",\"dateModified\":\"2022-06-03T08:43:51+00:00\",\"description\":\"How to install Wekan on Ubuntu 14.04 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-vps.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-vps.png\",\"width\":240,\"height\":240},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Wekan on Ubuntu 14.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 Wekan on Ubuntu 14.04 - RoseHosting","description":"How to install Wekan on Ubuntu 14.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\/install-wekan-on-an-ubuntu-14-04-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install Wekan on Ubuntu 14.04 - RoseHosting","og_description":"How to install Wekan on Ubuntu 14.04 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2016-01-26T20:34:11+00:00","article_modified_time":"2022-06-03T08:43:51+00:00","og_image":[{"width":240,"height":240,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install Wekan on Ubuntu 14.04","datePublished":"2016-01-26T20:34:11+00:00","dateModified":"2022-06-03T08:43:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/"},"wordCount":350,"commentCount":20,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-vps.png","keywords":["Install Wekan","Install Wekan on Ubuntu","kanban","Mongo","node.js"],"articleSection":["Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/","name":"How to install Wekan on Ubuntu 14.04 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-vps.png","datePublished":"2016-01-26T20:34:11+00:00","dateModified":"2022-06-03T08:43:51+00:00","description":"How to install Wekan on Ubuntu 14.04 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-vps.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-vps.png","width":240,"height":240},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Wekan on Ubuntu 14.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\/18462"}],"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=18462"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18462\/revisions"}],"predecessor-version":[{"id":33995,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18462\/revisions\/33995"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/18464"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=18462"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=18462"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=18462"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}