{"id":1190,"date":"2020-07-06T11:42:18","date_gmt":"2020-07-06T16:42:18","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1190"},"modified":"2020-07-06T11:42:18","modified_gmt":"2020-07-06T16:42:18","slug":"how-to-install-kanboard-on-debian-9","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/","title":{"rendered":"How to Install Kanboard on Debian 9"},"content":{"rendered":"<div id=\"linux-2551028743\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this tutorial, we will show you how to install Kanboard on a Debian 9 Server.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-1194\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/06\/set-up-kanboard-collaboration-platform-on-debian9-server.jpg\" alt=\"\" width=\"120\" height=\"120\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/06\/set-up-kanboard-collaboration-platform-on-debian9-server.jpg 120w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/06\/set-up-kanboard-collaboration-platform-on-debian9-server-60x60.jpg 60w\" sizes=\"(max-width: 120px) 100vw, 120px\" \/>Kanboard is a Project Management Software utilizing the Kanban methodology. Kanboard helps teams visualize their workflow by showing projects and tasks in an easy-to-understand format. This helps teams collaborate more efficiently and complete their projects on time and with as little conflict as possible. We can also use Kanboard to manage multiple projects simultaneously. We can easily move the project or task status by simply dragging and dropping the task into its respective column, each of which represents a stage in the project&#8217;s completion. Kanboard supports plugins as well as full integration with external services.<\/p>\n<p><!--more--><\/p>\n<h2>Prerequisites<\/h2>\n<ul>\n<li>A computer or server running Debian 9<\/li>\n<li>SSH access with a root-privileged account, or access to the root user itself<\/li>\n<\/ul>\n<h2>Step 1 &#8211; Install Package Updates<\/h2>\n<p>Log in to your Debian 9 VPS<\/p>\n<pre>ssh root@IP_Address -p Port_number<\/pre>\n<p>You can check whether you have the proper Debian version installed on your server with the following command:<\/p>\n<pre># lsb_release -a<\/pre>\n<p>You should get this output:<\/p>\n<pre>Distributor ID: Debian\r\nDescription: Debian GNU\/Linux 9.9 (Stretch)\r\nRelease: 9.9\r\nCodename: stretch\r\n<\/pre>\n<p>Then, run the following command to make sure that all installed packages on the server are updated to the latest available version. This maximizes compatibility and gives you all of the latest features.<\/p>\n<pre># apt update &amp;&amp; apt upgrade<\/pre>\n<h2>Step 2 &#8211; Install the Apache Web Server<\/h2>\n<p>Kanboard supports Apache, Nginx, Microsoft IIS, and Caddy Server web servers. If you choose Apache, make sure you have the <code>mod_version<\/code> module installed. Make sure that you do <strong>not<\/strong> have the\u00a0<code>mod_security<\/code> module installed, because Kanboard is not compatible with <code>mod_security<\/code>. In this tutorial, we will install and use Apache as a web server.<\/p>\n<p>Let&#8217;s install Apache by issuing this command:<\/p>\n<pre># apt install apache2 -y<\/pre>\n<p>We would also want to enable it to run on server boot:<\/p>\n<pre># systemctl enable apache2\r\n# systemctl start apache2<\/pre>\n<h3>2.1. Create an Apache VirtualHost<\/h3>\n<p>We can now create our virtual host files. The virtual host configuration files usually end with the\u00a0<code>.conf<\/code> extension.<br \/>\nRun the following command to create the virtual host configuration file for our web domain, <code>yourdomain.com<\/code>:<\/p>\n<p>Make sure you replace all instances of\u00a0<code>yourdomain.com<\/code> with your registered domain name in order for the configuration file to work.<\/p>\n<pre># nano \/etc\/apache2\/sites-available\/yourdomain.com.conf<\/pre>\n<p>And add the following content to the file:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\nServerAdmin admin@yourdomain.com\r\nServerName yourdomain.com\r\nServerAlias www.yourdomain.com\r\nDocumentRoot \/var\/www\/html\/kanboard\r\n\r\nErrorLog ${APACHE_LOG_DIR}\/yourdomain.com_error.log\r\nCustomLog ${APACHE_LOG_DIR}\/yourdomain.com_access.log combined\r\n\r\n&lt;Directory \/var\/www\/html\/kanboard\/&gt;\r\n    AllowOverride FileInfo Options=All,MultiViews AuthConfig\r\n&lt;\/Directory&gt;\r\n\r\n&lt;\/VirtualHost&gt;\r\n<\/pre>\n<p>Once added and saved, we can enable the virtual host by running this command:<\/p>\n<pre># a2ensite yourdomain.com<\/pre>\n<pre># systemctl restart apache2<\/pre>\n<h2>Step 3 &#8211; Install a Database Server<\/h2>\n<p>Kanboard supports the following types of databases<\/p>\n<ul>\n<li>SQLite<\/li>\n<li>MySQL<\/li>\n<li>PostgreSQL<\/li>\n<\/ul>\n<p>In this tutorial, we will use MySQL\/MariaDB as the database storage engine.<\/p>\n<pre># apt install mariadb-server<\/pre>\n<p>To start the MariaDB service and enable it to start on boot, execute the following commands:<\/p>\n<pre># systemctl start mariadb\r\n# systemctl enable mariadb\r\n<\/pre>\n<p>Now, you can skip the following step if you prefer not to have a MySQL root password.<\/p>\n<pre># mysql_secure_installation<\/pre>\n<p>When prompted, answer the questions below by following the guide.<\/p>\n<pre>Enter current password for root (enter for none): Just press the [Enter] key, there is no password set by default\r\nSet root password? [Y\/n]: Y\r\nNew password: Enter password\r\nRe-enter new password: Repeat password\r\nRemove anonymous users? [Y\/n]: Y\r\nDisallow root login remotely? [Y\/n]: Y\r\nRemove test database and access to it? [Y\/n]: Y\r\nReload privilege tables now? [Y\/n]: Y\r\n<\/pre>\n<p>If you followed the above step, then you will have a password set for your MySQL root user, so you can run this command to access the MySQL shell:<\/p>\n<pre># mysql -u root -p<\/pre>\n<h3>3.1 Create a Database<\/h3>\n<p>Let\u2019s proceed with creating a database for Kanboard. Run these commands one by one to log into the MySQL shell, create a database, create a user and grant access to the new database, and save the changes:<\/p>\n<pre># mysql -u root -p<\/pre>\n<pre>MariaDB [(none)]&gt; CREATE DATABASE kanboard;\r\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON kanboard.* TO 'kanboard'@'localhost' IDENTIFIED BY 'M0d1fyth15';\r\nMariaDB [(none)]&gt; FLUSH PRIVILEGES;\r\nMariaDB [(none)]&gt; \\q\r\n<\/pre>\n<p>Make sure you replace the phrase <code>M0d1fyth15<\/code> with a unique and strong password.<\/p>\n<p>After that is done, run the following command to import the database schema to the newly created Kanboard database.<\/p>\n<pre># mysql -u root -p kanboard &lt; \/var\/www\/html\/kanboard\/app\/Schema\/Sql\/mysql.sql<\/pre>\n<h2>Step 4 &#8211; Install PHP and all Necessary PHP Modules<\/h2>\n<p>Since version 1.2, Kanboard requires at least PHP 5.6, and a later or the latest version of PHP is recommended. We will use PHP 7.0 in this tutorial. This command will install PHP and all of the required packages for it to function with Kanboard:<\/p>\n<pre># apt install php php-mbstring php-imap php-mysql libapache2-mod-php7.0 php-gd php-json php-xml php-opcache php-fpm<\/pre>\n<p>Now that PHP 7.2 is installed, let\u2019s check and verify it.<\/p>\n<pre># php -v<\/pre>\n<p>Here&#8217;s the output we expect to see:<\/p>\n<pre>PHP 7.0.33-0+deb9u3 (cli) (built: Mar  8 2019 10:01:24) ( NTS )\r\nCopyright (c) 1997-2017 The PHP Group\r\nZend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies\r\n    with Zend OPcache v7.0.33-0+deb9u3, Copyright (c) 1999-2017, by Zend Technologies\r\n<\/pre>\n<h2>Step 5 &#8211; Install Kanboard<\/h2>\n<p>In this step, we will download and install Kanboard from GitHub. First, let&#8217;s make sure that we have the git package installed:<\/p>\n<pre># apt install git -y<\/pre>\n<p>From there, let&#8217;s switch into the Apache web server directory and clone the Kanboard GitHub project into it:<\/p>\n<pre># cd \/var\/www\/html\/\r\n# git clone https:\/\/github.com\/kanboard\/kanboard.git<\/pre>\n<p>After that, create a configuration file by copying the example that was included.<\/p>\n<pre># cp kanboard\/config.default.php kanboard\/config.php<\/pre>\n<p>Let&#8217;s also make sure that all of the files in the directory are owned by the <code>www-data<\/code> user, which is the user that belongs to Apache:<\/p>\n<pre># chown -R www-data: \/var\/www\/html\/<\/pre>\n<p>Now, it is time to modify the database configuration file to match with the database credentials.<\/p>\n<pre># nano \/var\/www\/html\/kanboard\/config.php<\/pre>\n<p>Modify the values as follows (change the values as needed if you used values different from the ones in the tutorial):<\/p>\n<pre>\/\/ Database driver: sqlite, mysql or postgres (sqlite by default)\r\ndefine('DB_DRIVER', 'mysql');\r\n\r\n\/\/ Mysql\/Postgres username\r\ndefine('DB_USERNAME', 'kanboard');\r\n\r\n\/\/ Mysql\/Postgres password\r\ndefine('DB_PASSWORD', 'M0d1fyth15');\r\n\r\n\/\/ Mysql\/Postgres hostname\r\ndefine('DB_HOSTNAME', 'localhost');\r\n\r\n\/\/ Mysql\/Postgres database name\r\ndefine('DB_NAME', 'kanboard');\r\n<\/pre>\n<p>At this point, Kanboard has been successfully installed &#8211; you can navigate to your <code>http:\/\/yourdomain.com<\/code> to start using it. You can use the following credentials to access the Kanboard backend.<\/p>\n<pre>Username: admin\r\nPassword: admin<\/pre>\n<p>You will want to update the default password as soon as possible.<\/p>\n<p>Additionally, if you want your Kanboard installation to use pretty permalinks, you can enable it by enabling the feature in your <code>config.php<\/code> file<\/p>\n<pre>define('ENABLE_URL_REWRITE', true);<\/pre>\n<p>Make sure that your Apache mod rewrite is also enabled. You can do so by running this command:<\/p>\n<pre># a2enmod rewrite\r\n# systemctl restart apache2<\/pre>\n<p>That&#8217;s all there is to it &#8211; you should be able to access your Kanboard application at <code>http:\/\/yourdomain.com<\/code> now.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1195\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/06\/best-collaboration-platform-debian-server-support-from-experts.jpg\" alt=\"\" width=\"120\" height=\"120\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/06\/best-collaboration-platform-debian-server-support-from-experts.jpg 120w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/06\/best-collaboration-platform-debian-server-support-from-experts-60x60.jpg 60w\" sizes=\"(max-width: 120px) 100vw, 120px\" \/>Of course, you don\u2019t have to install Kanboard on Debian 9 if you use one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">Fully Managed VPS Support<\/a> services, in which case you can simply ask our expert Linux admins to install Kanboard on your Debian VPS for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS<\/strong>.<\/span> If you liked this post on <strong>how to install Kanboard on Debian 9<\/strong>, please share it with your friends on the social networks using the buttons below or simply leave a reply in the comments sections. Thanks.<\/p><div id=\"linux-1491098781\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will show you how to install Kanboard on a Debian 9 Server. Kanboard is a Project Management Software utilizing the Kanban methodology. Kanboard helps teams visualize their workflow by showing projects and tasks in an easy-to-understand format. This helps teams collaborate more efficiently and complete their projects on time and with [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1193,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[28,156],"class_list":["post-1190","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-debian","tag-kanboard"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Kanboard on Debian 9 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will show you how to install Kanboard on a Debian 9 Server. Kanboard is a Project Management Software utilizing the Kanban\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Kanboard on Debian 9 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will show you how to install Kanboard on a Debian 9 Server. Kanboard is a Project Management Software utilizing the Kanban\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-06T16:42:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/06\/how-to-install-kanboard-on-debian9.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Kanboard on Debian 9\",\"datePublished\":\"2020-07-06T16:42:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/\"},\"wordCount\":916,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/how-to-install-kanboard-on-debian9.jpg\",\"keywords\":[\"debian\",\"kanboard\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/\",\"name\":\"How to Install Kanboard on Debian 9 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/how-to-install-kanboard-on-debian9.jpg\",\"datePublished\":\"2020-07-06T16:42:18+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this tutorial, we will show you how to install Kanboard on a Debian 9 Server. Kanboard is a Project Management Software utilizing the Kanban\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/how-to-install-kanboard-on-debian9.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/how-to-install-kanboard-on-debian9.jpg\",\"width\":750,\"height\":410},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-kanboard-on-debian-9\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Kanboard on Debian 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Kanboard on Debian 9 | LinuxHostSupport","description":"In this tutorial, we will show you how to install Kanboard on a Debian 9 Server. Kanboard is a Project Management Software utilizing the Kanban","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:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Kanboard on Debian 9 | LinuxHostSupport","og_description":"In this tutorial, we will show you how to install Kanboard on a Debian 9 Server. Kanboard is a Project Management Software utilizing the Kanban","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2020-07-06T16:42:18+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/06\/how-to-install-kanboard-on-debian9.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Kanboard on Debian 9","datePublished":"2020-07-06T16:42:18+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/"},"wordCount":916,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/06\/how-to-install-kanboard-on-debian9.jpg","keywords":["debian","kanboard"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/","name":"How to Install Kanboard on Debian 9 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/06\/how-to-install-kanboard-on-debian9.jpg","datePublished":"2020-07-06T16:42:18+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this tutorial, we will show you how to install Kanboard on a Debian 9 Server. Kanboard is a Project Management Software utilizing the Kanban","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/06\/how-to-install-kanboard-on-debian9.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/06\/how-to-install-kanboard-on-debian9.jpg","width":750,"height":410},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-kanboard-on-debian-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Kanboard on Debian 9"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1190","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1190"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1190\/revisions"}],"predecessor-version":[{"id":1198,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1190\/revisions\/1198"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1193"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1190"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1190"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1190"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}