<?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>Project Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/project/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sat, 07 Aug 2021 21:31:42 +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>Install Leantime on Ubuntu 20.04</title>
		<link>https://www.osradar.com/leantime-project-management-ubuntu-server/</link>
					<comments>https://www.osradar.com/leantime-project-management-ubuntu-server/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 13 Aug 2021 00:31:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[leantime]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=31585</guid>

					<description><![CDATA[<p>Hello, friends. Project management is something that we have to take into account in our organization or workgroup. So, in this post, you will learn how to install Leantime on Ubuntu 20.04. Introducing to Leantime Leantime is a straightforward open-source project management system to make your ideas reality It is that kind of web application [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/leantime-project-management-ubuntu-server/">Install Leantime 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 class="has-line-data">Hello, friends. Project management is something that we have to take into account in our organization or workgroup. So, in this post, you will learn how to install Leantime on Ubuntu 20.04.</p>



<h2 class="code-line"><a id="Introducing_to_Leantime_2"></a>Introducing to Leantime</h2>



<p class="has-line-data"><strong><a href="https://leantime.io/" target="_blank" rel="noreferrer noopener">Leantime </a>is a straightforward open-source project management system to make your ideas reality</strong></p>



<p class="has-line-data">It is that kind of web application that allows us to manage our projects quickly and easily. For example, with Leantime you can plan your long-term roadmap and break down milestones into clear tasks that you can assign to your team members.</p>



<p class="has-line-data">One of the best things about this application is that it requires little resources as it is a web application created with PHP. For this very reason, Leantime can be installed on many different operating systems which allows for a lot of choices.</p>



<p class="has-line-data">So, in this post, you will learn how to install it step by step.</p>



<h2 class="code-line"><a id="Install_Leantime_on_Ubuntu_2004_12"></a>Install Leantime on Ubuntu 20.04</h2>



<p class="has-line-data">So, connect via SSH to your server and upgrade it.</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt upgrade</pre>



<p class="has-line-data">After this, then we can start the installation itself.</p>



<h3 class="code-line"><a id="Install_LAMP_on_Ubuntu_2004_21"></a>Install LAMP on Ubuntu 20.04</h3>



<p class="has-line-data">Since this is a web application, we can then use LAMP. So if you want to install it, then our post will help you with that.</p>



<p class="has-line-data">Also, you have to install these PHP modules as well as other necessary packages.</p>



<pre class="wp-block-preformatted">php php-mysql php-curl php-curl php-curl php-json php-cgi php-xmlrpc php-gd php-mbstring unzip</pre>



<p class="has-line-data">Once you have them installed, then we can continue.</p>



<h3 class="code-line"><a id="Create_a_new_database_on_MariaDB_31"></a>Create a new database on MariaDB</h3>



<p class="has-line-data">Leantime requires a database handler to store the generated data. So, we already have MariaDB installed, but it is convenient to create a new database as well as a dedicated user for Leantime.</p>



<p class="has-line-data">So, open the MariaDB shell</p>



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



<p class="has-line-data">Then, create the database, the user, and his permissions</p>



<pre class="wp-block-preformatted">CREATE DATABASE leantime;
GRANT ALL PRIVILEGES ON leantime.* TO 'user'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;</pre>



<p class="has-line-data">You can change the database name, user, and password to whatever you want.</p>



<p class="has-line-data">Then exit the shell.</p>



<pre class="wp-block-preformatted">exit;</pre>



<h3 class="code-line"><a id="Download_Leantime_51"></a>Download Leantime</h3>



<p class="has-line-data">Now you can download Leantime. To do this, we will use the <code>wget</code> command</p>



<pre class="wp-block-preformatted">cd /tmp/
wget https://leantime.io/download?wpdmdl=7413 -O leantime.zip
--2021-08-07 17:16:57--  https://leantime.io/download?wpdmdl=7413
Resolving leantime.io (leantime.io)... 52.41.34.197
Connecting to leantime.io (leantime.io)|52.41.34.197|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 29635461 (28M) [application/zip]
Saving to: ‘leantime.zip’

leantime.zip                              100%[=====================================================================================>]  28.26M  4.17MB/s    in 7.1s

2021-08-07 17:17:05 (3.99 MB/s) - ‘leantime.zip’ saved [29635461/29635461]</pre>



<p class="has-line-data">Then, unzip it in the Apache root directory.</p>



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



<p class="has-line-data">So, make Apache the owner of the folder.</p>



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



<p class="has-line-data">And assign appropriate permissions to it:</p>



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



<p class="has-line-data">The next step is to enable the default Leantime configuration. To do this, just rename the sample file.</p>



<pre class="wp-block-preformatted">sudo mv /var/www/html/leantime/config/configuration.sample.php /var/www/html/leantime/config/configuration.php</pre>



<p class="has-line-data">Edit the configuration file to set our database parameters.</p>



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



<p class="has-line-data">And set the database name, user, and password.</p>



<pre class="wp-block-preformatted">/* Database */
public $dbHost="localhost"; //Database host
public $dbUser="user"; //Database username
public $dbPassword="password"; //Database password
public $dbDatabase="leantime"; //Database name</pre>



<figure class="wp-block-image size-full"><img loading="lazy" width="774" height="243" src="https://www.osradar.com/wp-content/uploads/2021/08/1-3.png" alt="1.- Configuring the Leantime database" class="wp-image-31618" srcset="https://www.osradar.com/wp-content/uploads/2021/08/1-3.png 774w, https://www.osradar.com/wp-content/uploads/2021/08/1-3-300x94.png 300w, https://www.osradar.com/wp-content/uploads/2021/08/1-3-768x241.png 768w, https://www.osradar.com/wp-content/uploads/2021/08/1-3-696x219.png 696w" sizes="(max-width: 774px) 100vw, 774px" /><figcaption>1.- Configuring the Leantime database</figcaption></figure>



<p class="has-line-data">Next, you have to create a new Virtualhost for Leantime.</p>



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



<p class="has-line-data">Add the following</p>



<pre class="wp-block-preformatted">&lt;VirtualHost *:80>
    ServerAdmin admin@leantime.osradar.test
    DocumentRoot /var/www/html/leantime/
    ServerName leantime.osradar.test

    &lt;Directory /var/www/html/leantime/>
        Options FollowSymLinks
        AllowOverride All
        Order allow,deny
        allow from all
    &lt;/Directory>

    ErrorLog /var/log/apache2/leantime.osradar.test-error_log
    CustomLog /var/log/apache2/leantime.osradar.test-access_log common
&lt;/VirtualHost></pre>



<figure class="wp-block-image size-full"><img loading="lazy" width="957" height="363" src="https://www.osradar.com/wp-content/uploads/2021/08/2-2.png" alt="2.- Creating a new Virtualhost for Leantime" class="wp-image-31619" srcset="https://www.osradar.com/wp-content/uploads/2021/08/2-2.png 957w, https://www.osradar.com/wp-content/uploads/2021/08/2-2-300x114.png 300w, https://www.osradar.com/wp-content/uploads/2021/08/2-2-768x291.png 768w, https://www.osradar.com/wp-content/uploads/2021/08/2-2-696x264.png 696w" sizes="(max-width: 957px) 100vw, 957px" /><figcaption>2.- Creating a new Virtualhost for Leantime</figcaption></figure>



<p class="has-line-data">Remember to change the value of <code>ServerName</code> to your server and <code>ServerAdmin</code> as well as anything else you see fit.Save the changes and close the editor.</p>



<p class="has-line-data">So, enable the new Virtualhost.</p>



<pre class="wp-block-preformatted">sudo a2ensite leantime</pre>



<p class="has-line-data">And the <code>rewrite</code> Apache module and to apply the changes, restart Apache.</p>



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



<h3 class="code-line"><a id="Enabling_HTTPS_with_Lets_Encrypt_105"></a>Enabling HTTPS with Let’s Encrypt</h3>



<p class="has-line-data">This step, although optional, is recommended because it guarantees that all the information that circulates is secure.</p>



<p class="has-line-data">So, install Certbot and its Apache plugin.</p>



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



<p class="has-line-data">And now generate the certificate as follows</p>



<pre class="wp-block-preformatted">sudo certbot --apache --d [your-domain]</pre>



<p class="has-line-data">This way, after accepting the license terms and adding your email address, the certificates will be generated and installed.</p>



<p class="has-line-data">You can restart Apache.</p>



<pre class="wp-block-preformatted">sudo systemctl restart apache</pre>



<p class="has-line-data">Now, to finish the job</p>



<h3 class="code-line"><a id="Complete_the_installation_125"></a>Complete the installation</h3>



<p class="has-line-data">Now open your favorite web browser and go to <code>https://your-domain/install</code> where you will see the screen to create the new user.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="511" src="https://www.osradar.com/wp-content/uploads/2021/08/3-1-1024x511.png" alt="3.- Leantime install screen" class="wp-image-31620" srcset="https://www.osradar.com/wp-content/uploads/2021/08/3-1-1024x511.png 1024w, https://www.osradar.com/wp-content/uploads/2021/08/3-1-300x150.png 300w, https://www.osradar.com/wp-content/uploads/2021/08/3-1-768x383.png 768w, https://www.osradar.com/wp-content/uploads/2021/08/3-1-696x347.png 696w, https://www.osradar.com/wp-content/uploads/2021/08/3-1-1068x533.png 1068w, https://www.osradar.com/wp-content/uploads/2021/08/3-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Leantime install screen</figcaption></figure>



<p class="has-line-data">After creating it, you will be informed that the process has been successful and you can log in.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="518" src="https://www.osradar.com/wp-content/uploads/2021/08/4-1024x518.png" alt="4.- Leantime installed" class="wp-image-31621" srcset="https://www.osradar.com/wp-content/uploads/2021/08/4-1024x518.png 1024w, https://www.osradar.com/wp-content/uploads/2021/08/4-300x152.png 300w, https://www.osradar.com/wp-content/uploads/2021/08/4-768x388.png 768w, https://www.osradar.com/wp-content/uploads/2021/08/4-696x352.png 696w, https://www.osradar.com/wp-content/uploads/2021/08/4-1068x540.png 1068w, https://www.osradar.com/wp-content/uploads/2021/08/4.png 1349w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Leantime installed</figcaption></figure>



<p class="has-line-data">Once logged in, you will be able to enjoy a tour of the application.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="518" src="https://www.osradar.com/wp-content/uploads/2021/08/5-1024x518.png" alt="5.- Welcome to Leantime screen" class="wp-image-31622" srcset="https://www.osradar.com/wp-content/uploads/2021/08/5-1024x518.png 1024w, https://www.osradar.com/wp-content/uploads/2021/08/5-300x152.png 300w, https://www.osradar.com/wp-content/uploads/2021/08/5-768x388.png 768w, https://www.osradar.com/wp-content/uploads/2021/08/5-696x352.png 696w, https://www.osradar.com/wp-content/uploads/2021/08/5-1068x540.png 1068w, https://www.osradar.com/wp-content/uploads/2021/08/5.png 1349w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Welcome to Leantime screen</figcaption></figure>



<p class="has-line-data">and then you will see the dashboard.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="518" src="https://www.osradar.com/wp-content/uploads/2021/08/6-1024x518.png" alt="6.- Leantime dashaboard" class="wp-image-31623" srcset="https://www.osradar.com/wp-content/uploads/2021/08/6-1024x518.png 1024w, https://www.osradar.com/wp-content/uploads/2021/08/6-300x152.png 300w, https://www.osradar.com/wp-content/uploads/2021/08/6-768x388.png 768w, https://www.osradar.com/wp-content/uploads/2021/08/6-696x352.png 696w, https://www.osradar.com/wp-content/uploads/2021/08/6-1068x540.png 1068w, https://www.osradar.com/wp-content/uploads/2021/08/6.png 1349w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- Leantime dashaboard</figcaption></figure>



<p class="has-line-data">So, enjoy it-</p>



<h2 class="code-line"><a id="Conclusion_137"></a>Conclusion</h2>



<p class="has-line-data">In this post, you have learned how to install Leantime on Ubuntu 20.04. This application will help your team to manage the projects you need.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/leantime-project-management-ubuntu-server/">Install Leantime 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/leantime-project-management-ubuntu-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to improve your productivity using your phone</title>
		<link>https://www.osradar.com/how-to-improve-your-productivity-using-your-phone/</link>
					<comments>https://www.osradar.com/how-to-improve-your-productivity-using-your-phone/#respond</comments>
		
		<dc:creator><![CDATA[vazquez]]></dc:creator>
		<pubDate>Sat, 29 Aug 2020 23:45:28 +0000</pubDate>
				<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[task manager]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=23125</guid>

					<description><![CDATA[<p>Greetings dear readers, in this opportunity we will show you how to improve your productivity using your phone. We will use an app called Taskito, this app is a timeline-based task manager that will help you to better organize your day. It also comes with several amazing features that we will be telling you about. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-improve-your-productivity-using-your-phone/">How to improve your productivity using your phone</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Greetings dear readers, in this opportunity we will show you how to improve your productivity using your <a href="https://www.osradar.com/?s=phone" target="_blank" rel="noreferrer noopener">phone</a>. We will use an app called Taskito, this app is a timeline-based task manager that will help you to better organize your day. It also comes with several amazing features that we will be telling you about.</p>



<p>With the Taskito app, you can create Repeating Reminders, complete projects, notes, and tasks.</p>



<p>Taskito also includes a calendar. This is a very useful feature since in this type of apps you know how you have organized the month and each of the events you will have to attend is of vital importance.</p>



<h2>Improving your productivity with Taskito</h2>



<p><strong>Prerequisites</strong><br>You must have Taskito installed, you can install it by following this link from the Google Play Store</p>



<p><a href="https://play.google.com/store/apps/details?id=com.fenchtose.reflog&amp;hl=en" target="_blank" rel="noreferrer noopener">Google Play Store| Taskito</a></p>



<h2>First step</h2>



<p>Open the app and you will see the timeline-based interface. Select the day you want to plan. Then press the + button. First, you will add a <em>Repeating reminder.</em></p>



<figure class="wp-block-gallery columns-2 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Ip1-473x1024.jpg" alt="main screen improve" data-id="23127" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Ip1.jpg" data-link="https://www.osradar.com/?attachment_id=23127" class="wp-image-23127" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Ip1-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Ip1-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Ip1-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Ip1-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Ip1-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Ip1-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Ip1-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Ip1.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">main screen </figcaption></figure></li><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Ip2-473x1024.jpg" alt="Select reapeting reminders improve" data-id="23128" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Ip2.jpg" data-link="https://www.osradar.com/?attachment_id=23128" class="wp-image-23128" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Ip2-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Ip2-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Ip2-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Ip2-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Ip2-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Ip2-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Ip2-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Ip2.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">select reapeting reminders</figcaption></figure></li></ul></figure>



<p><br>Then add a title and a description. After that select a <em>Repeating mode</em> (this can be daily, weekly or monthly). Finally check the last 2 options, to create a complete task once completed and display the reminder on the timeline. To finish press the blue check button.</p>



<figure class="wp-block-image size-large is-resized"><img loading="lazy" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/Ip3-473x1024.jpg" alt="creating repeating reminders improve" class="wp-image-23129" width="355" height="768" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Ip3-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Ip3-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Ip3-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Ip3-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Ip3-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Ip3-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Ip3-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Ip3.jpg 1080w" sizes="(max-width: 355px) 100vw, 355px" /><figcaption>creating repeating reminders</figcaption></figure>



<p>This feature is very useful as it will allow you to create a reminder for those things that you easily forget but want to do every day.</p>



<h2>Second step</h2>



<p>Creating a project. To create a project in the main screen press the + button. Then press <em>Plan/Idea.</em> </p>



<figure class="wp-block-gallery columns-2 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Ip4-473x1024.jpg" alt="main screen improve" data-id="23130" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Ip4.jpg" data-link="https://www.osradar.com/?attachment_id=23130" class="wp-image-23130" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Ip4-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Ip4-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Ip4-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Ip4-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Ip4-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Ip4-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Ip4-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Ip4.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">main screen </figcaption></figure></li><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Ip5-473x1024.jpg" alt="select plan/idea improve" data-id="23131" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Ip5.jpg" data-link="https://www.osradar.com/?attachment_id=23131" class="wp-image-23131" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Ip5-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Ip5-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Ip5-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Ip5-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Ip5-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Ip5-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Ip5-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Ip5.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">select plan/idea</figcaption></figure></li></ul></figure>



<p>You will see the screen to create a plan, click on the <em>Demo Project</em> option. After that enter a name for your new project and press the + button.</p>



<figure class="wp-block-gallery columns-2 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Ip6-473x1024.jpg" alt="demo project " data-id="23132" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Ip6.jpg" data-link="https://www.osradar.com/?attachment_id=23132" class="wp-image-23132" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Ip6-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Ip6-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Ip6-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Ip6-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Ip6-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Ip6-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Ip6-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Ip6.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">demo project</figcaption></figure></li><li class="blocks-gallery-item"><figure><img loading="lazy" width="473" height="1024" src="https://www.osradar.com/wp-content/uploads/2020/08/Ip7-473x1024.jpg" alt="creating new project " data-id="23133" data-full-url="https://www.osradar.com/wp-content/uploads/2020/08/Ip7.jpg" data-link="https://www.osradar.com/?attachment_id=23133" class="wp-image-23133" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Ip7-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Ip7-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Ip7-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Ip7-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Ip7-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Ip7-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Ip7-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Ip7.jpg 1080w" sizes="(max-width: 473px) 100vw, 473px" /><figcaption class="blocks-gallery-item__caption">creating new project</figcaption></figure></li></ul></figure>



<p>Now you can create several plans that will be added to your project.</p>



<p>To create a plan add a title. You can also add a description. Then add a due date. Finally, you can create a checklist. To finish press the blue check button.</p>



<figure class="wp-block-image size-large is-resized"><img loading="lazy" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/Ip8-473x1024.jpg" alt="creating a plan " class="wp-image-23134" width="355" height="768" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Ip8-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Ip8-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Ip8-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Ip8-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Ip8-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Ip8-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Ip8-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Ip8.jpg 1080w" sizes="(max-width: 355px) 100vw, 355px" /><figcaption>creating a plan</figcaption></figure>



<p>This option is very useful because you can create different plans for the week or even the month.</p>



<h2>Final result</h2>



<p>I recommend that you review the following example below.</p>



<figure class="wp-block-image size-large is-resized"><img loading="lazy" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/Ip9-473x1024.jpg" alt="final result " class="wp-image-23135" width="355" height="768" srcset="https://www.osradar.com/wp-content/uploads/2020/08/Ip9-473x1024.jpg 473w, https://www.osradar.com/wp-content/uploads/2020/08/Ip9-138x300.jpg 138w, https://www.osradar.com/wp-content/uploads/2020/08/Ip9-768x1664.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/08/Ip9-709x1536.jpg 709w, https://www.osradar.com/wp-content/uploads/2020/08/Ip9-945x2048.jpg 945w, https://www.osradar.com/wp-content/uploads/2020/08/Ip9-696x1508.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/08/Ip9-1068x2314.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/08/Ip9.jpg 1080w" sizes="(max-width: 355px) 100vw, 355px" /><figcaption>final result</figcaption></figure>



<h2>Conclusion</h2>



<p>Taskito is one of those tools that we only see once a year. It&#8217;s amazing how well designed it is. The multiple features will allow you to improve your productivity by planning more efficiently every day.</p>



<p>So, share this post and join <a href="https://t.me/osradar" target="_blank" rel="noreferrer noopener">our Telegram Channel.</a></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-improve-your-productivity-using-your-phone/">How to improve your productivity using your phone</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/how-to-improve-your-productivity-using-your-phone/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Installing Tuleap on CentOS 7. A Wonderfull Project management</title>
		<link>https://www.osradar.com/installing-tuleap-on-centos-7-a-wonderfull-project-management/</link>
					<comments>https://www.osradar.com/installing-tuleap-on-centos-7-a-wonderfull-project-management/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 23 Jul 2018 14:29:44 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=4853</guid>

					<description><![CDATA[<p>More and more applications are becoming more complex, many requiring efficient planning and control to leave nothing to chance. This is because the software becomes more difficult to maintain and reimplement, forcing developers to find alternatives to manage the project itself, thus maintaining a workflow according to the needs that arise. Tuleap is a project [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/installing-tuleap-on-centos-7-a-wonderfull-project-management/">Installing Tuleap on CentOS 7. A Wonderfull Project management</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>More and more applications are becoming more complex, many requiring efficient planning and control to leave nothing to chance.</p>
<p>This is because the software becomes more difficult to maintain and reimplement, forcing developers to find alternatives to manage the project itself, thus maintaining a workflow according to the needs that arise.</p>
<p><strong>Tuleap</strong> is a project management system for managing application lifecycles, it&#8217;s Open Source license, built in PHP and working as a Web application. Tuleap integrates with Git, Subversion or CVS as well as working with Hudson for the integration part.</p>
<p>Among its main advantages we have:</p>
<ul>
<li>Allows for agile, traditional, hybrid, or custom processes for project magament.</li>
<li>Start easily with shared agile best practices and evolve with your teams</li>
<li><span class="highlighted orange">Centralize</span> project activities with a single solution to plan, track, develop, deliver and maintain apps</li>
<li>Tuleap has a built-in risk management system</li>
</ul>
<p>Many well-known companies such as Orange, Airbus or Ericsson use Tuleap within their servers. In other words, we are talking about a great application.</p>
<h2>Let&#8217;s install it on CentOS</h2>
<h4>1.- Adding the EPEL repository</h4>
<p>EPEL is a repository containing additional packages mainly for CentOS, RHEL and fedora. We need it to install Tuleap.</p>
<p>Enter the su command and then entering our password.</p>
<pre>:~$ su</pre>
<p>We then download the package containing the repository</p>
<pre>:~# wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm</pre>
<p>And then we proceed to unpack it.</p>
<pre>:~# rpm -ivh epel-release-latest-7.noarch.rpm</pre>
<p><figure id="attachment_4860" aria-describedby="caption-attachment-4860" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4860" src="https://www.osradar.com/wp-content/uploads/2018/07/1-4.png" alt="1.- Adding EPEL repository" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/07/1-4.png 1368w, https://www.osradar.com/wp-content/uploads/2018/07/1-4-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/1-4-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/1-4-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/1-4-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/1-4-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/1-4-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4860" class="wp-caption-text">1.- EPEL repository</figcaption></figure></p>
<p>Verify that it is correctly added</p>
<pre>:~# yum repolist</pre>
<p><figure id="attachment_4863" aria-describedby="caption-attachment-4863" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4863" src="https://www.osradar.com/wp-content/uploads/2018/07/2-4.png" alt="2.- yum repolist" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/07/2-4.png 1368w, https://www.osradar.com/wp-content/uploads/2018/07/2-4-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/2-4-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/2-4-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/2-4-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/2-4-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/2-4-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4863" class="wp-caption-text">2.- yum repolist</figcaption></figure></p>
<p>Now it&#8217;s the turn of the Software Collections repositories package</p>
<pre>:~# yum install centos-release-scl</pre>
<p><figure id="attachment_4873" aria-describedby="caption-attachment-4873" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4873" src="https://www.osradar.com/wp-content/uploads/2018/07/3-4.png" alt="3.- Installing Software Collections repositories" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/07/3-4.png 1368w, https://www.osradar.com/wp-content/uploads/2018/07/3-4-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/3-4-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/3-4-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/3-4-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/3-4-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/3-4-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4873" class="wp-caption-text">3.- Installing Software Collections repositories</figcaption></figure></p>
<h2>2.- Now yes. Installing Tuleap</h2>
<p>To make the installation process easier, we&#8217;ll add the Tuleap repository to make your stable version available.</p>
<p>We create a file called Tuleap.repo in the path /etc/yum.repos.d/Tuleap.repo. And in it we dump the following content.</p>
<pre>[Tuleap]
name=Tuleap
baseurl=https://ci.tuleap.net/yum/tuleap/rhel/7/dev/$basearch
enabled=1
gpgcheck=1
gpgkey=https://ci.tuleap.net/yum/tuleap/gpg.key</pre>
<p>For that we write:</p>
<pre>:~# nano /etc/yum.repos.d/Tuleap.repo</pre>
<p><figure id="attachment_4878" aria-describedby="caption-attachment-4878" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4878" src="https://www.osradar.com/wp-content/uploads/2018/07/8-3.png" alt="8.- Adding the tuleap repository" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/07/8-3.png 1368w, https://www.osradar.com/wp-content/uploads/2018/07/8-3-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/8-3-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/8-3-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/8-3-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/8-3-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/8-3-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4878" class="wp-caption-text">4.- Adding the tuleap repository</figcaption></figure></p>
<p>We now proceed with the installation:</p>
<pre>:~# yum install -y rh-mysql57-mysql-server tuleap-plugin-agiledashboard tuleap-plugin-graphontrackers tuleap-theme-burningparrot tuleap-theme-lamingparrot tuleap-plugin-git tuleap-plugin-svn tuleap-plugin-hudson*&lt;span style="display: inline-block; width: 0px; overflow: hidden; line-height: 0;" data-mce-type="bookmark" class="mce_SELRES_start"&gt;&lt;/span&gt;</pre>
<p><figure id="attachment_4879" aria-describedby="caption-attachment-4879" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4879" src="https://www.osradar.com/wp-content/uploads/2018/07/9-6.png" alt="9.- Installing Tuleap" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/07/9-6.png 1368w, https://www.osradar.com/wp-content/uploads/2018/07/9-6-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/9-6-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/9-6-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/9-6-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/9-6-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/9-6-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4879" class="wp-caption-text">5.- Installing Tuleap</figcaption></figure></p>
<h2>3.- Configuring the database</h2>
<p>First we must make sure that in the[mysqld] section of the /etc/opt/rh/rh-mysql57/my.cnf.d/rh-mysql57-mysql-server.cnf file it is correct.</p>
<pre>:~# nano /etc/opt/rh/rh-mysql57/my.cnf.d/rh-mysql57-mysql-server.cnf</pre>
<p>inside the file we must make sure that it has the following instruction:</p>
<p>sql-mode=NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION</p>
<p><figure id="attachment_4880" aria-describedby="caption-attachment-4880" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4880" src="https://www.osradar.com/wp-content/uploads/2018/07/10-3.png" alt="10.- Checking mysql file" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/07/10-3.png 1368w, https://www.osradar.com/wp-content/uploads/2018/07/10-3-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/10-3-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/10-3-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/10-3-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/10-3-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/10-3-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4880" class="wp-caption-text">6.- Checking mysql file</figcaption></figure></p>
<p>Now we start the sql services associated with tuleap, just installed.</p>
<pre>:~# systemctl enable rh-mysql57-mysqld
:~# systemctl start rh-mysql57-mysqld</pre>
<p><figure id="attachment_4881" aria-describedby="caption-attachment-4881" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4881" src="https://www.osradar.com/wp-content/uploads/2018/07/11-3.png" alt="11.- Starting database" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/07/11-3.png 1368w, https://www.osradar.com/wp-content/uploads/2018/07/11-3-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/11-3-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/11-3-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/11-3-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/11-3-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/11-3-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4881" class="wp-caption-text">7.- Starting database</figcaption></figure></p>
<p>Next you will need to set a password for mysql.</p>
<pre>:~# scl enable rh-mysql57 "mysqladmin -u root password"</pre>
<p><figure id="attachment_4882" aria-describedby="caption-attachment-4882" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4882" src="https://www.osradar.com/wp-content/uploads/2018/07/12-1.png" alt="12.- Setting password" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/07/12-1.png 1368w, https://www.osradar.com/wp-content/uploads/2018/07/12-1-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/12-1-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/12-1-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/12-1-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/12-1-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/12-1-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4882" class="wp-caption-text">8.- Setting password</figcaption></figure></p>
<h2>4.- Preparing for the first steps</h2>
<p>In order for everything to work properly we need to make sure we open some ports in the Firewall:</p>
<pre>:~# firewall-cmd --zone=public --add-port=80/tcp --permanent
:~# firewall-cmd --zone=public --add-port=443/tcp --permanent
:~# firewall-cmd --zone=public --add-port=22/tcp --permanent</pre>
<p><figure id="attachment_4883" aria-describedby="caption-attachment-4883" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4883" src="https://www.osradar.com/wp-content/uploads/2018/07/13-2.png" alt="13.- Opening ports" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/07/13-2.png 1368w, https://www.osradar.com/wp-content/uploads/2018/07/13-2-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/13-2-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/13-2-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/13-2-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/13-2-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/13-2-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4883" class="wp-caption-text">13.- Opening ports</figcaption></figure></p>
<p>Now we must execute the following command to prepare the first contact. From their official documentation, they insist that it should only be done once, so let us be careful.</p>
<pre>:~# /usr/share/tuleap/tools/setup.el7.sh -y -c --server-name=EXAMPLE --mysql-server=localhost --mysql-password=XXXXX</pre>
<p>You must replace EXAMPLE with the domain name or ip address. In this case we will say 192.168.250.6; and in mysql_password the password that we have defined above</p>
<p><figure id="attachment_4884" aria-describedby="caption-attachment-4884" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4884" src="https://www.osradar.com/wp-content/uploads/2018/07/14-2.png" alt="14.- Installing" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/07/14-2.png 1368w, https://www.osradar.com/wp-content/uploads/2018/07/14-2-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/14-2-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/14-2-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/14-2-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/14-2-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/14-2-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4884" class="wp-caption-text">14.- Installing</figcaption></figure></p>
<p>Now we can access from our browser with the ip address of the server:</p>
<pre>http://Ip_server/tuleap</pre>
<p>After the main screen we access the Loggin to enter the credentials</p>
<p><figure id="attachment_4885" aria-describedby="caption-attachment-4885" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4885" src="https://www.osradar.com/wp-content/uploads/2018/07/100.png" alt="15.- loggin tuleap" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/07/100.png 1366w, https://www.osradar.com/wp-content/uploads/2018/07/100-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/100-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/100-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/100-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/100-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/100-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4885" class="wp-caption-text">15.- loggin tuleap</figcaption></figure></p>
<p><em>Note:The credentials are in the /root/.tuleap_passwd file. Obviously, it is recommended to change it as soon as possible. </em></p>
<p>We can start a project.</p>
<p><figure id="attachment_4886" aria-describedby="caption-attachment-4886" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4886" src="https://www.osradar.com/wp-content/uploads/2018/07/101.png" alt="Making a project" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/07/101.png 1366w, https://www.osradar.com/wp-content/uploads/2018/07/101-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/07/101-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/07/101-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/07/101-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/07/101-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/07/101-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4886" class="wp-caption-text">16.- Making a project</figcaption></figure></p>
<p>We can say that Tuleap is a fantastic tool to manage projects. Used by many major companies and is emerging as a very solid alternative to other programs with proprietary licenses in its ruble.</p>
<p>Please spread this article through social networks.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/installing-tuleap-on-centos-7-a-wonderfull-project-management/">Installing Tuleap on CentOS 7. A Wonderfull Project management</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/installing-tuleap-on-centos-7-a-wonderfull-project-management/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
