<?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>Install TaskBoard Centos Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/install-taskboard-centos/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Wed, 18 Jul 2018 15:50:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>TaskBoard Kanban-inspired  on Centos7</title>
		<link>https://www.osradar.com/taskboard-kanban-inspired-on-centos7/</link>
					<comments>https://www.osradar.com/taskboard-kanban-inspired-on-centos7/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Wed, 18 Jul 2018 15:50:56 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Install TaskBoard Centos]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=4857</guid>

					<description><![CDATA[<p>TaskBoard is a free and open source application  and  is A Kanban-inspired app for keeping track of things that need to get done . TaskBoard uses SQLite  database.  In TaskBoard you  can create  unlimited boards  and customize the columns . i will show to install  this  easy on CentOS 7 Server. My Server hostname osradar.com.local [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/taskboard-kanban-inspired-on-centos7/">TaskBoard Kanban-inspired  on Centos7</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>TaskBoard is a free and open source application  and  is <span class="col-11 text-gray-dark mr-2">A Kanban-inspired app for keeping track of things that need to get done</span> . TaskBoard uses SQLite  database.  In TaskBoard you  can create  unlimited boards  and customize the columns . i will show to install  this  easy on CentOS 7 Server.</p>
<p>My Server hostname osradar.com.local</p>
<p>My server  Ip = 192.168.2.98</p>
<p>my Os is =  Centos 7.5</p>
<h2><strong>How to install TaskBoard Kanban-inspired on Centos7</strong></h2>
<p><strong>Installing Taskboard</strong><br />
Because Taskboad is web-based app we will first install apache with  following command.</p>
<pre>[root@osradar]# yum -y install httpd
Installing : apr-1.4.8-3.el7_4.1.x86_64 1/5
Installing : apr-util-1.5.2-6.el7.x86_64 2/5
Installing : httpd-tools-2.4.6-80.el7.centos.1.x86_64 3/5
Installing : mailcap-2.1.41-2.el7.noarch 4/5
Installing : httpd-2.4.6-80.el7.centos.1.x86_64</pre>
<p>its  installed  Now run and  enanle  apache  for the next reboot</p>
<pre>[root@osradar]# systemctl start httpd
[root@osradar]# systemctl enable httpd
ln -s '/usr/lib/systemd/system/httpd.service' '/etc/systemd/system/multi-user.target.wants/httpd.service'
After that, install epel-release for installing webtatic repository. It is very essential for the process.</pre>
<p><strong>Add  epel  release  repos</strong></p>
<pre>[root@osradar]# yum install epel-release
Installed:
epel-release.noarch 0:7-11</pre>
<p>&nbsp;</p>
<p><strong>Now is  time  can now install the webtatic repository as follows</strong>.</p>
<pre>[root@osradar ~]# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
Retrieving https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
warning: /var/tmp/rpm-tmp.EruRhj: Header V4 RSA/SHA1 Signature, key ID 62e74ca5: NOKEY
Preparing... ################################# [100%]
Updating / installing...
1:webtatic-release-7-3 ################################# [100%]</pre>
<p>Before to go to  thenext step, please update your system and insta   these small tools</p>
<pre>yum  update -y 
yum  install unzip wget net-tools</pre>
<p>This web app ( TaskBoard) needs  more PHP modules , please install  them  like this</p>
<pre>[root@osradar ~]# yum install php72w php72w-gd php72w-json php72-readline php72w-cli php72w-sqlite3

--&gt; Processing Dependency: libpng15.so.15(PNG15_0)(64bit) for package: php72w-gd-7.2.6-1.w7.x86_64
--&gt; Processing Dependency: libjpeg.so.62(LIBJPEG_6.2)(64bit) for package: php72w-gd-7.2.6-1.w7.x86_64
--&gt; Processing Dependency: libpng15.so.15()(64bit) for package: php72w-gd-7.2.6-1.w7.x86_64
--&gt; Processing Dependency: libjpeg.so.62()(64bit) for package: php72w-gd-7.2.6-1.w7.x86_64
--&gt; Processing Dependency: libXpm.so.4()(64bit) for package: php72w-gd-7.2.6-1.w7.x86_64
--&gt; Processing Dependency: libX11.so.6()(64bit) for package: php72w-gd-7.2.6-1.w7.x86_64</pre>
<p><strong> Run the following command to install SQLite Database.</strong></p>
<pre>[root@osradar]# yum -y install sqlite
Package sqlite-3.7.17-8.el7.x86_64 already installed and latest version</pre>
<p>&nbsp;</p>
<p>Its Time to  download the taskboard installation package, you can do it with the following command.</p>
<pre>[root@osradar]# cd /var/www/
[root@osradar www]#wget https://github.com/kiswa/TaskBoard/archive/master.zip
--2018-07-17 17:33:51-- https://github.com/kiswa/TaskBoard/archive/master.zip
Resolving github.com (github.com)... 192.30.253.113, 192.30.253.112
Connecting to github.com (github.com)|192.30.253.113|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/kiswa/TaskBoard/zip/master [following]
--2018-07-17 17:33:52-- https://codeload.github.com/kiswa/TaskBoard/zip/master
Resolving codeload.github.com (codeload.github.com)... 192.30.253.120, 192.30.253.121
Connecting to codeload.github.com (codeload.github.com)|192.30.253.120|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘master.zip’

[ &lt;=&gt; ] 6,554,918 5.49MB/s in 1.1s

2018-07-17 17:33:54 (5.49 MB/s) - ‘master.zip’ saved [6554918]</pre>
<p>&nbsp;</p>
<p>After downloading it, extract the package</p>
<pre>[root@linuxhelp www]#  unzip master.zip
Archive: master.zip
9347ef7f838bb99fa2aaea6ad807b353b2894ec7
creating: TaskBoard-master/
inflating: TaskBoard-master/.gitignore
inflating: TaskBoard-master/.htaccess
inflating: TaskBoard-master/CONTRIBUTIN</pre>
<p>&nbsp;</p>
<p>Move the extracted files to taskboard directory.</p>
<p>[root@osradar www]# mv TaskBoard-master taskboard</p>
<p>Please run this command to   download  extra  dependencies.</p>
<pre>[root@osradar taskboard]#cd /var/www/taskboard
[root@osradar taskboard]# build/composer.phar install
Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Package operations: 5 installs, 0 updates, 0 removals
- Installing firebase/php-jwt (1.0.0): Downloading (100%)
- Installing gabordemooij/redbean (v4.2.1): Downloading (100%)
- Installing ircmaxell/password-compat (v1.0.4): Downloading (100%)
- Installing phpmailer/phpmailer (v5.2.14): Downloading (100%)
- Installing slim/slim (2.6.2): Downloading (100%)
phpmailer/phpmailer suggests installing league/oauth2-client (Needed for XOAUTH2 authentication)
phpmailer/phpmailer suggests installing league/oauth2-google (Needed for Gmail XOAUTH2)
slim/slim suggests installing ext-mcrypt (Required for HTTP cookie encryption)
Generating autoload files</pre>
<p>&nbsp;</p>
<p>After that, change the ownership for the taskboard to  apache user and group</p>
<pre>[root@osradar]# chown -R apache:apache /var/www/taskboard</pre>
<p>Next add the http service to the firewall</p>
<pre>[root@osradar]# firewall-cmd --zone=public --permanent --add-service=http
success</pre>
<p><strong>make  it  permanent</strong></p>
<pre>[root@osradar]# firewall-cmd --reload
Success</pre>
<p>Create  the virtual host for taskboard.  ( /etc/httpd/conf.d/osradar.com.conf)</p>
<pre>[root@osradar api]# cat /etc/httpd/conf.d/osradar.com.conf
&lt;VirtualHost *:80&gt;
ServerAdmin info@osradar.com
DocumentRoot "/var/www/taskboard"
ServerName osradar.com.local
&lt;Directory "/var/www/taskboard"&gt;
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
&lt;/Directory&gt;
ErrorLog "/var/log/httpd/board.yourdomain.com-error_log"
CustomLog "/var/log/httpd/board.yourdomain.com-access_log" combined
&lt;/VirtualHost&gt;</pre>
<p>Now restart the Apache web server and check if any erros in logs</p>
<p>[root@osradar]# systemctl restart httpd</p>
<p>Now  brows http://IP or  http://hostname . The default credential is admin/admin</p>
<p>&nbsp;</p>
<p><img loading="lazy" class="alignnone size-full wp-image-4865" src="https://www.osradar.com/wp-content/uploads/2018/07/task11.png" alt="" width="1324" height="669" srcset="https://www.osradar.com/wp-content/uploads/2018/07/task11.png 1324w, https://www.osradar.com/wp-content/uploads/2018/07/task11-300x152.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/task11-768x388.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/task11-1024x517.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/task11-696x352.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/task11-1068x540.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/task11-831x420.png 831w" sizes="(max-width: 1324px) 100vw, 1324px" /></p>
<p>If you have any issues to login with  API folder write mode  Errors . please  Disable  Selinux</p>
<p><img loading="lazy" class="alignnone size-full wp-image-4866" src="https://www.osradar.com/wp-content/uploads/2018/07/task12.png" alt="" width="1573" height="953" srcset="https://www.osradar.com/wp-content/uploads/2018/07/task12.png 1573w, https://www.osradar.com/wp-content/uploads/2018/07/task12-300x182.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/task12-768x465.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/task12-1024x620.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/task12-696x422.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/task12-1068x647.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/task12-693x420.png 693w" sizes="(max-width: 1573px) 100vw, 1573px" /> <img loading="lazy" class="alignnone size-full wp-image-4867" src="https://www.osradar.com/wp-content/uploads/2018/07/task13.png" alt="" width="601" height="886" srcset="https://www.osradar.com/wp-content/uploads/2018/07/task13.png 601w, https://www.osradar.com/wp-content/uploads/2018/07/task13-203x300.png 203w, https://www.osradar.com/wp-content/uploads/2018/07/task13-285x420.png 285w" sizes="(max-width: 601px) 100vw, 601px" /></p>
<p>Cheers  and   shareeeee !!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/taskboard-kanban-inspired-on-centos7/">TaskBoard Kanban-inspired  on Centos7</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/taskboard-kanban-inspired-on-centos7/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
