<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>kanboard Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/kanboard/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Fri, 22 Jan 2021 15:52:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.13</generator>
	<item>
		<title>Install Kanboard on Ubuntu 20.04</title>
		<link>https://www.osradar.com/install-kanboard-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/install-kanboard-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 25 Jan 2021 03:51:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[kanboard]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=27796</guid>

					<description><![CDATA[<p>In many organizations and working groups, a key word is required: organization. This is the key to start any project. Whether it is the development of a new application or the achievement of a goal. For this, different methodologies have been used and open source technology also has its contribution. Therefore, in this post, you [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-kanboard-ubuntu-20-04/">Install Kanboard on Ubuntu 20.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>In many organizations and working groups, a key word is required: organization. This is the key to start any project. Whether it is the development of a new application or the achievement of a goal. For this, different methodologies have been used and open source technology also has its contribution. Therefore, in this post, you will learn how to install Kanboard on Ubuntu 20.04.</p>



<p>In a few words, <a href="https://kanboard.org/">Kanboard</a> is a free and open-source Kanban project management software.</p>



<p>This is a web-based application with which you can plan together with a team, the project to develop. Some of the things you can do with this application are the following:</p>



<ul><li>Visualize your work.</li><li>Limit your work in progress to focus on your goal.</li><li>Drag and drop tasks to manage your project.</li><li>Self-hosted.</li><li>Super simple installation.</li></ul>



<p>The application is quite flexible and allows the use of plugins. With these, you will be able to extend Kanboard’s wide functionality.</p>



<p>So, let us begin.</p>



<h2 id="install-kanboard-on-ubuntu-20.04"><a href="#install-kanboard-on-ubuntu-20.04" name="install-kanboard-on-ubuntu-20.04"></a>Install Kanboard on Ubuntu 20.04</h2>



<h3 id="1.--install-lamp-on-ubuntu-20.04"><a href="#1.--install-lamp-on-ubuntu-20.04" name="1.--install-lamp-on-ubuntu-20.04"></a>1.- Install LAMP on Ubuntu 20.04</h3>



<p>Kanboard, being a web application, requires a server to process the application along with a language and a database. Fortunately, Kanboard supports several database managers such as MariaDB, SQLite or PostgreSQL, and several servers. In this post, we will use Apache and MariaDB, so we have to install the LAMP stack.</p>



<p><a href="https://www.osradar.com/install-lamp-ubuntu-20-04/">How to install LAMP on Ubuntu 20.04?</a></p>



<p>Once it is installed, install other modules and additional packages needed to enhance the installation:</p>



<pre class="wp-block-preformatted">php libapache2-mod-php php-curl php-json php-gd php-mysql php-intl php-xmlrpc php-zip php-sqlite3 php-dompdf php-xml php-mbstring curl git unzip</pre>



<p>Then we can continue with the installation.</p>



<h3 id="2.--create-a-new-database-for-kanboard"><a href="#2.--create-a-new-database-for-kanboard" name="2.--create-a-new-database-for-kanboard"></a>2.- Create a new Database for Kanboard</h3>



<p>The next step is to create a new database and user for Kanboard to use. This step is recommended to avoid that the application works with the root user.</p>



<p>So, open the MariaDB shell</p>



<pre class="wp-block-preformatted">sudo mysql -u root -p</pre>



<p>And now proceed to create the database, the user, and assign the corresponding permissions.</p>



<pre class="wp-block-preformatted">CREATE DATABASE kanboard;
GRANT ALL PRIVILEGES ON kanboard.* TO 'kanboarduser'@'localhost' IDENTIFIED BY 'kanboardpss';
FLUSH PRIVILEGES;
exit; </pre>



<p>Feel free to change the values to whatever you prefer, especially the password, which needs to be quite strong.</p>



<h3 id="3.--download-kanboard"><a href="#3.--download-kanboard" name="3.--download-kanboard"></a>3.- Download Kanboard</h3>



<p>Now we can download Kanboard to our server. In this post, we will use the latest stable version and not the development one.</p>



<p>So, place it in the temporary folder.</p>



<pre class="wp-block-preformatted">cd /tmp</pre>



<p>And with the help of the wget command, download Kanboard.</p>



<pre class="wp-block-preformatted">wget -c https://github.com/kanboard/kanboard/archive/v1.2.18.zip</pre>



<p>After that, unzip the archive into the Apache directory with the <code>unzip</code> command.</p>



<pre class="wp-block-preformatted">sudo unzip v1.2.18.zip -d /var/www/html/</pre>



<p>The name of the generated folder is a bit confusing, so we’ll rename it to something simpler and easier to remember</p>



<pre class="wp-block-preformatted">sudo mv /var/www/html/kanboard-1.2.18/ /var/www/html/kanboard</pre>



<p>Next, make Apache the owner of the folder where Kanboard is located.</p>



<pre class="wp-block-preformatted">sudo chown -R www-data:www-data /var/www/html/kanboard/</pre>



<p>And assign the correct permissions to the folder:</p>



<pre class="wp-block-preformatted">sudo chmod -R 755 /var/www/html/kanboard/</pre>



<h3 id="configuring-kanboard"><a href="#configuring-kanboard" name="configuring-kanboard"></a>Configuring Kanboard</h3>



<p>Before using Kanboard, you need to set the database values in the configuration file.</p>



<p>So, use <a href="https://www.osradar.com/install-latest-version-nano-ubuntu/" target="_blank" rel="noopener">nano</a> for this.</p>



<pre class="wp-block-preformatted">sudo nano /var/www/html/kanboard/config.default.php</pre>



<p>And inside the file, modify the following values:</p>



<pre class="wp-block-preformatted">define('DB_DRIVER', 'mysql');
define('DB_USERNAME', 'kanboarduser');
define('DB_PASSWORD', 'kanboardpss');
define('DB_NAME', 'kanboard');</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="300" src="https://www.osradar.com/wp-content/uploads/2021/01/1-9-1024x300.png" alt="1.- Configuring Kanboard on Ubuntu 20.04" class="wp-image-27966" srcset="https://www.osradar.com/wp-content/uploads/2021/01/1-9-1024x300.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/1-9-300x88.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/1-9-768x225.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/1-9-696x204.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/1-9-1068x313.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/1-9.png 1157w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Configuring Kanboard on Ubuntu 20.04</figcaption></figure>



<p>Remember that you have to modify the values you defined in the database. Then save the changes and close the editor.</p>



<p>Now, create a new VirtualHost for Kanboard:</p>



<pre class="wp-block-preformatted">sudo nano /etc/apache2/sites-available/kanboard.conf</pre>



<p>With the following values:</p>



<pre class="wp-block-preformatted">&lt;VirtualHost: *:80>
      ServerAdmin admin@example.com
      DocumentRoot /var/www/html/kanboard/kanboard-1.2.18/
      ServerName kanboard.osradar.test
 
 <code>   &lt;Directory /var/www/kanboard/></code>
            <code>Options FollowSymlinks</code>
            <code>AllowOverride All</code>
            <code>Require all granted</code>
     <code>&lt;/Directory></code>

<code>ErrorLog ${APACHE_LOG_DIR}/error.log</code>
<code>CustomLog ${APACHE_LOG_DIR}/access.log combined</code>
&lt;/VirtualHost></pre>



<p>Don&#8217;t forget, replace the <code>ServerName</code> value with your domain.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1012" height="367" src="https://www.osradar.com/wp-content/uploads/2021/01/2-9.png" alt="2.- Creating a new Virtualhost for Kanboard" class="wp-image-27968" srcset="https://www.osradar.com/wp-content/uploads/2021/01/2-9.png 1012w, https://www.osradar.com/wp-content/uploads/2021/01/2-9-300x109.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/2-9-768x279.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/2-9-696x252.png 696w" sizes="(max-width: 1012px) 100vw, 1012px" /><figcaption>2.- Creating a new Virtualhost for Kanboard</figcaption></figure>



<p>Save the changes and close the editor.</p>



<p>Now, if Kanboard will be available on the web (most likely it will) then you have to create a security certificate and add it, this will enable secure connections over HTTPS.</p>



<p>So, install Certbot and the Apache plugin.</p>



<pre class="wp-block-preformatted"><code>sudo apt install certbot python3-certbot-apache</code></pre>



<p>Then, generate and add the certificate by running:</p>



<pre class="wp-block-preformatted">sudo certbot --apache --agree-tos --redirect --hsts --staple-ocsp --email you@example.org -d [domain]</pre>



<p>Replace the <code>email</code> and <code>domain</code> values with your own.</p>



<p>Then, enable the new VirtualHost, the rewrite module and apply the changes:</p>



<pre class="wp-block-preformatted">sudo a2ensite kanboard.conf
sudo a2enmod rewrite
sudo systemctl restart apache2</pre>



<p>Now access from a web browser to your domain.</p>



<h3 id="testing-kanboard-on-ubuntu-20.04"><a href="#testing-kanboard-on-ubuntu-20.04" name="testing-kanboard-on-ubuntu-20.04"></a>Testing Kanboard on Ubuntu 20.04</h3>



<p>Now we can start the Kanboard test. To do this, open a web browser from your client computer and go to <code>https://your-domain</code> and you will see the following screen:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2021/01/3-8-1024x502.png" alt="3.- Kanboard login screen" class="wp-image-27969" srcset="https://www.osradar.com/wp-content/uploads/2021/01/3-8-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/3-8-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/3-8-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/3-8-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/3-8-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/3-8.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Kanboard login screen</figcaption></figure>



<p>Now use the default credentials which are <strong>admin/admin</strong> and then, you will see the Kanboard main screen.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2021/01/4-4-1024x502.png" alt="4.- Kanboard running" class="wp-image-27970" srcset="https://www.osradar.com/wp-content/uploads/2021/01/4-4-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/4-4-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/4-4-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/4-4-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/4-4-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/4-4.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Kanboard running</figcaption></figure>



<p>You are now ready to go. Of course, it is recommended to change your password.</p>



<p>So, enjoy it.</p>



<h2 id="conclusion"><a href="#conclusion" name="conclusion"></a>Conclusion</h2>



<p>The organization is the success of a project. And there is an open-source application that helps us to work in an organized team. This is the case of Kanboard. In this post, you have noticed how its installation in a Ubuntu 20.04 server.</p>



<p><strong>So please, if you can, share this post with all your friends.</strong></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-kanboard-ubuntu-20-04/">Install Kanboard on Ubuntu 20.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-kanboard-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Kanboard on Ubuntu 18.04?</title>
		<link>https://www.osradar.com/install-kanban-ubuntu-18-04/</link>
					<comments>https://www.osradar.com/install-kanban-ubuntu-18-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 03 Sep 2019 22:43:31 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[kanboard]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=13300</guid>

					<description><![CDATA[<p>In many organizations and working groups, a key word is required: organization. This is the key to start any project. Whether it is the development of a new application or the achievement of a goal. For this, different methodologies have been used and open source technology also has its contribution. Therefore, in this post, you [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-kanban-ubuntu-18-04/">How to install Kanboard on Ubuntu 18.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In many organizations and working groups, a key word is required: organization. This is the key to start any project. Whether it is the development of a new application or the achievement of a goal. For this, different methodologies have been used and open source technology also has its contribution. Therefore, in this post, you will learn how to install Kanboard on Ubuntu 18.04.</p>
<p>In a few words, <a href="https://kanboard.org/" rel="noopener noreferrer">Kanboard</a> is a free and open-source Kanban project management software.</p>
<p>This is a web-based application with which you can plan together with a team, the project to develop. Some of the things you can do with this application are the following:</p>
<ul>
<li>Visualize your work.</li>
<li>Limit your work in progress to focus on your goal.</li>
<li>Drag and drop tasks to manage your project.</li>
<li>Self-hosted.</li>
<li>Super simple installation.</li>
</ul>
<p>The application is quite flexible and allows the use of plugins. With these, you will be able to extend Kanboard&#8217;s wide functionality.</p>
<p>So, let us begin.</p>
<h2>Install Kanboard on Ubuntu 18.04</h2>
<p>Kanboard is a web-based application. Therefore we must deploy a web server. In addition to this, in the installation, we will be asked to have a database management system like MariaDB. So the installation does not become complicated.</p>
<p>On the other hand, you have to have some knowledge about the Linux terminal. Although the guide will be step by step, it is convenient to have solid knowledge.</p>
<h3>1) Install LAMP on Ubuntu 18.04</h3>
<p>First of all, you have to have a web server with Apache running on our Ubuntu 18.04. For that, we made a pretty explicit post about it.</p>
<p>Please, read <a href="https://www.osradar.com/how-to-install-lamp-on-ubuntu-18-04-lts/" rel="noopener noreferrer">How to install LAMP on Ubuntu 18.04?</a></p>
<p>Be sure to install some required PHP modules: <code>php-curl php-json php-gd php-mysql php-intl and php-xmlrpc</code></p>
<p>After everything is in order with Apache, PHP and MariaDB you can move on.</p>
<h3>2) Create a new MariaDB user for Kanboard</h3>
<p>Once MariaDB is correctly installed, you need to create a new database for the application. However, it is also recommended to create a new different user for it.</p>
<pre>:~$ sudo mysql -u root -p
&gt; CREATE DATABASE kanboard;
&gt; GRANT ALL PRIVILEGES ON kanboard.* TO 'kanboarduser'@'localhost' IDENTIFIED BY 'kanboardpss';
&gt; FLUSH PRIVILEGES;
&gt; Exit;</pre>
<p><figure id="attachment_13303" aria-describedby="caption-attachment-13303" style="width: 1252px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13303" src="https://www.osradar.com/wp-content/uploads/2019/08/1-24.jpeg" alt="1.- Creating a new database and user for Kanboard" width="1252" height="391" srcset="https://www.osradar.com/wp-content/uploads/2019/08/1-24.jpeg 1252w, https://www.osradar.com/wp-content/uploads/2019/08/1-24-300x94.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/1-24-768x240.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/1-24-1024x320.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/1-24-696x217.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/1-24-1068x334.jpeg 1068w" sizes="(max-width: 1252px) 100vw, 1252px" /><figcaption id="caption-attachment-13303" class="wp-caption-text">1.- Creating a new database and user for Kanboard</figcaption></figure></p>
<p>With this, the application will be a little safer.</p>
<h3>3) Install Composer and some required packages</h3>
<p>To install Kanboard on Ubuntu 18.04, we need to install Composer. For this, we have a well-explained tutorial.</p>
<p>Read, <a href="https://www.osradar.com/how-to-install-composer-on-linux/" rel="noopener noreferrer">How to install Composer on Linux?</a></p>
<p>Then, you need to install these necessary packages:</p>
<pre>:~$ sudo apt install curl git</pre>
<p>However, if you want to get the latest version of Git, I invite you to read our tutorial about it.</p>
<p><a href="https://www.osradar.com/how-to-install-git-on-ubuntu-18-04-linux-mint-19/" rel="noopener noreferrer">How to install GIT on Ubuntu 18.04?</a></p>
<p>So, we can continue.</p>
<h3>4) Download and install Kanboard on Ubuntu 18.04</h3>
<p>Now we can start downloading and installing Kanboard.</p>
<p>For it, we will use curl.</p>
<pre>:~$ cd /tmp
:~$ git clone https://github.com/kanboard/kanboard.git</pre>
<p><figure id="attachment_13304" aria-describedby="caption-attachment-13304" style="width: 745px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13304" src="https://www.osradar.com/wp-content/uploads/2019/08/2-21.jpeg" alt="2.- Downloading Kanboard using Git on Ubuntu 18.04" width="745" height="179" srcset="https://www.osradar.com/wp-content/uploads/2019/08/2-21.jpeg 745w, https://www.osradar.com/wp-content/uploads/2019/08/2-21-300x72.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/2-21-696x167.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/2-21-741x179.jpeg 741w" sizes="(max-width: 745px) 100vw, 745px" /><figcaption id="caption-attachment-13304" class="wp-caption-text">2.- Downloading Kanboard using Git on Ubuntu 18.04</figcaption></figure></p>
<p>Once the download is complete, move it to the Apache directory. Then, proceed to install it, with these commands:</p>
<pre>:~$ sudo mv kanboard /var/www/kanboard
:~$ cd /var/www/kanboard
:~$ sudo mv config.default.php config.php
:~$ sudo composer install</pre>
<p><figure id="attachment_13305" aria-describedby="caption-attachment-13305" style="width: 872px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13305" src="https://www.osradar.com/wp-content/uploads/2019/08/3-19.jpeg" alt="3.- Install Kanboard on Ubuntu 18.04" width="872" height="604" srcset="https://www.osradar.com/wp-content/uploads/2019/08/3-19.jpeg 872w, https://www.osradar.com/wp-content/uploads/2019/08/3-19-300x208.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/3-19-768x532.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/3-19-100x70.jpeg 100w, https://www.osradar.com/wp-content/uploads/2019/08/3-19-218x150.jpeg 218w, https://www.osradar.com/wp-content/uploads/2019/08/3-19-696x482.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/3-19-606x420.jpeg 606w" sizes="(max-width: 872px) 100vw, 872px" /><figcaption id="caption-attachment-13305" class="wp-caption-text">3.- Install Kanboard on Ubuntu 18.04</figcaption></figure></p>
<p>After that, you have to modify the Kanboard configuration file to incorporate the MariaDB credentials you just created.</p>
<pre>:~$ sudo nano /var/www/kanboard/config.php</pre>
<p>Edit the following lines:</p>
<pre>define('DB_DRIVER', 'mysql');
define('DB_USERNAME', 'kanboarduser');
define('DB_PASSWORD', 'kanboardpss');
define('DB_NAME', 'kanboard');</pre>
<p><figure id="attachment_13306" aria-describedby="caption-attachment-13306" style="width: 552px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13306" src="https://www.osradar.com/wp-content/uploads/2019/08/4-19.jpeg" alt="4.- Configuring Kanboard on Ubuntu 18.04" width="552" height="274" srcset="https://www.osradar.com/wp-content/uploads/2019/08/4-19.jpeg 552w, https://www.osradar.com/wp-content/uploads/2019/08/4-19-300x149.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/4-19-324x160.jpeg 324w" sizes="(max-width: 552px) 100vw, 552px" /><figcaption id="caption-attachment-13306" class="wp-caption-text">4.- Configuring Kanboard on Ubuntu 18.04</figcaption></figure></p>
<p>Save the changes and close the file.</p>
<p>Now, change the permission to the Kanboard folder.</p>
<pre>:~$ sudo chown -R www-data:www-data /var/www/kanboard/
:~$ sudo chmod -R 755 /var/www/kanboard/</pre>
<p>In order for Kanboard to run correctly in the web browser, a new dedicated Virtualhost has to be created.</p>
<pre>:~$ sudo nano /etc/apache2/sites-available/kanboard.conf</pre>
<p>And add the following:</p>
<pre>&lt;VirtualHost *:80&gt;
     ServerAdmin admin@example.com
     DocumentRoot /var/www/kanboard
     ServerName kanboard.osradar.lan

     &lt;Directory /var/www/kanboard/&gt;
          Options FollowSymlinks
          AllowOverride All
          Require all granted
     &lt;/Directory&gt;

     ErrorLog ${APACHE_LOG_DIR}/error.log
     CustomLog ${APACHE_LOG_DIR}/access.log combined

&lt;/VirtualHost&gt;</pre>
<p><figure id="attachment_13307" aria-describedby="caption-attachment-13307" style="width: 924px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13307" src="https://www.osradar.com/wp-content/uploads/2019/08/5-11.jpeg" alt="5.- Creating a new virtualhost for Kanboard" width="924" height="294" srcset="https://www.osradar.com/wp-content/uploads/2019/08/5-11.jpeg 924w, https://www.osradar.com/wp-content/uploads/2019/08/5-11-300x95.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/5-11-768x244.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/5-11-696x221.jpeg 696w" sizes="(max-width: 924px) 100vw, 924px" /><figcaption id="caption-attachment-13307" class="wp-caption-text">5.- Creating a new virtual host for Kanboard</figcaption></figure></p>
<p>Again, save the changes and close the file.</p>
<p>Now, enable the new Virtualhost:</p>
<pre>:~$ sudo a2ensite kanboard.conf
:~$ sudo a2enmod rewrite
:~$ sudo systemctl restart apache2</pre>
<p>Now, you can go to your server. You will see this screen:</p>
<p><figure id="attachment_13308" aria-describedby="caption-attachment-13308" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13308" src="https://www.osradar.com/wp-content/uploads/2019/08/6-8.png" alt="6.- Kanboard log in screen" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/6-8.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/6-8-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/6-8-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/6-8-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/6-8-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/6-8-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/6-8-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13308" class="wp-caption-text">6.- Kanboard log in screen</figcaption></figure></p>
<p>So, log in using the username <strong>admin</strong> and the password <strong>admin</strong>.</p>
<p><figure id="attachment_13309" aria-describedby="caption-attachment-13309" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13309" src="https://www.osradar.com/wp-content/uploads/2019/08/7-10.png" alt="7.- Kanboard on Ubuntu 18.04" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/7-10.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/7-10-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/7-10-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/7-10-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/7-10-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/7-10-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/7-10-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13309" class="wp-caption-text">7.- Kanboard on Ubuntu 18.04</figcaption></figure></p>
<p>So, enjoy it.</p>
<h2>Conclusion</h2>
<p>The organization is the success of a project. And there is an open-source application that helps us to work in an organized team. This is the case of Kanboard. In this post, you have noticed how its installation in a Ubuntu 18.04 server.</p>
<p>If you use CentOS 7, you can read our tutorial on <a href="https://www.osradar.com/how-to-install-kanboard-on-centos-7/" rel="noopener noreferrer">how to install Kanboard on CentOS 7?</a>.</p>
<p>Soon we will make some for CentOS 8, RHEL 8 and Oracle Linux 8.</p>
<p>Please share this post with your friends and join <a href="https://t.me/osradar" rel="noopener noreferrer">our Telegram channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-kanban-ubuntu-18-04/">How to install Kanboard on Ubuntu 18.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-kanban-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
