{"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 id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft wp-image-18464\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-vps-150x150.png\" alt=\"install-wekan-on-an-ubuntu-14-04-vps\" width=\"139\" height=\"139\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-vps-150x150.png 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/01\/install-wekan-on-an-ubuntu-14-04-vps.png 240w\" sizes=\"(max-width: 139px) 100vw, 139px\" \/>In this blog post we will show you how to <strong>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 <a href=\"https:\/\/www.rosehosting.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a> systems as well, but was tested and written for <a href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu 14.04 VPS<\/a>.<\/p>\n<p><!--more--><\/p>\n<h4>Log in to your VPS via SSH<\/h4>\n<pre>ssh user@vps_IP<\/pre>\n<h4>Update the system and install necessary packages<\/h4>\n<pre>[user]$ sudo apt-get update &amp;&amp; sudo apt-get -y upgrade\r\n[user]$ sudo apt-get install software-properties-common libssl-dev curl build-essential nano<\/pre>\n<h4>Install Node.js<\/h4>\n<p>We will install the nodejs version 0.10.40 using the nvm (Node Version Manager) script<\/p>\n<pre>[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<h4>Install MongoDB<\/h4>\n<p>To install the latest MongoDB package from the official MongoDB repository run the following commands:<\/p>\n<pre>[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<h4>Download and install Wekan<\/h4>\n<p>Create a root directory for your Wekan instance and download the latest release from github using the following commands:<\/p>\n<pre>[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<p>In case you never heard of Forever, it is a tool which ensures that a given script runs forever.<\/p>\n<pre>[user]$ npm install forever -g<\/pre>\n<h4>Create an Upstart script<\/h4>\n<pre>[user]$ sudo nano \/etc\/init\/wekan.conf<\/pre>\n<pre>#!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<p>Do not forget to change username with your actual username.<\/p>\n<p>You can now start your Wekan service with :<\/p>\n<pre>[user]$ sudo service wekan start<\/pre>\n<h4>Install and Configure Nginx<\/h4>\n<p>The latest version of Nginx 1.8 is not available via the default Ubuntu repositories, so we will add the &#8220;nginx\/stable&#8221; PPA, update the system and install the nginx package.<\/p>\n<pre>[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<p>Create a new Nginx server block with the following content<\/p>\n<pre>[user]$ sudo nano \/etc\/nginx\/sites-available\/wekan<\/pre>\n<pre>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<p>Activate the server block by creating a symbolic link :<\/p>\n<pre>[user]$ sudo ln -s \/etc\/nginx\/sites-available\/wekan \/etc\/nginx\/sites-enabled\/wekan<\/pre>\n<p>Test the Nginx configuration and restart the server<\/p>\n<pre>[user]$ sudo nginx -t\r\n[user]$ sudo service nginx restart<\/pre>\n<p>That&#8217;s it. You can now open your browser, type the address of your Wekan instance and register your first user.<\/p>\n<p>For more information about how manage your Wekan application, please refer to the <a href=\"https:\/\/wekan.github.io\/\" target=\"_blank\" rel=\"noopener noreferrer\">Wekan<\/a> website.<\/p>\n<hr \/>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a title=\"linux vps hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">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&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">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":"<p>In this blog post we will show you how to install Wekan on an Ubuntu 14.04 VPS with the latest &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to install Wekan on Ubuntu 14.04\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-wekan-on-an-ubuntu-14-04-vps\/#more-18462\" aria-label=\"Read more about How to install Wekan on Ubuntu 14.04\">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],"class_list":["post-18462","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-ubuntu","tag-install-wekan","tag-install-wekan-on-ubuntu","tag-kanban","tag-mongo","tag-node-js","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.7 (Yoast SEO v27.7) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How 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\" \/>\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\":351,\"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.com\",\"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\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"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\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?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 Premium 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","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":351,"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.com","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":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"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\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?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","targetHints":{"allow":["GET"]}}],"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}]}}