<?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>how to install idoit on ubuntu 18.04 Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/how-to-install-idoit-on-ubuntu-18-04/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sat, 04 Jan 2020 13:29: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>How To Install i-doit Asset Management Tool on Ubuntu 18.04</title>
		<link>https://www.osradar.com/how-to-install-i-doit-asset-management-tool-on-ubuntu-18-04/</link>
					<comments>https://www.osradar.com/how-to-install-i-doit-asset-management-tool-on-ubuntu-18-04/#respond</comments>
		
		<dc:creator><![CDATA[sabi]]></dc:creator>
		<pubDate>Sat, 04 Jan 2020 13:29:54 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Asset management toll idoit]]></category>
		<category><![CDATA[how to install idoit on ubuntu 18.04]]></category>
		<category><![CDATA[idoit installation on ubuntu]]></category>
		<category><![CDATA[ubuntu 18.04]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=17192</guid>

					<description><![CDATA[<p>What is I-doit? Today we are going to Install i-doit tool on our Ubuntu 18.04. It has various features due to which we prefer it in our IT system. i-doit is Professional IT documentaion &#38; CMDB tool that provides the way to manage the entire IT system. With the help of this great tool you [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-i-doit-asset-management-tool-on-ubuntu-18-04/">How To Install i-doit Asset Management Tool 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[
<h3><strong>What is I-doit?</strong></h3>



<p>Today we are going to Install i-doit tool on our Ubuntu 18.04. It has various features due to which we prefer it in our IT system. i-doit is Professional IT documentaion &amp; CMDB tool that provides the way to manage the entire IT system. </p>



<p>With the help of this great tool you can easily create a detailed overview of the entire IT-infrastructure for all kind of assets. </p>



<h3><strong>System Requirements</strong></h3>



<ul><li>2 vCPUs</li><li>2 GB RAM</li><li>10 GB free disc space</li></ul>



<p>As we will Install it on our dedicated Virtual Machine, LAMP Stack is required.</p>



<ul><li>Apache Web Server 2.4</li><li>MariaDB 10.x or MySQL 5.6 or later</li><li>PHP 5.6(deprecated), 7.x</li><li>PHP extensions: bcmath, ctype, curl, fileinfo, gd, imagick, json, ldap, mbstring, memcached, mysqli, mysqlnd, pgsql, session, soap, xml, zip</li></ul>



<p>Now, move toward the Installation of i-doit on our Ubuntu system</p>



<h3><strong>Step 1: Install Apache &amp; PHP</strong></h3>



<p>Run the following command to Install Apache &amp; required PHP extensions.</p>



<pre class="wp-block-verse">sudo apt -y install apache2 libapache2-mod-php<br>sudo apt -y install php-{bcmath,cli,common,curl,gd,json,ldap,mbstring,mysql,opcache,pgsql,soap,xml,zip,imagick,memcached}<br>sudo apt -y install memcached unzip moreutils</pre>



<p>Create new php configuration file for i-doit</p>



<pre class="wp-block-verse">sudo tee /etc/php/7.2/mods-available/i-doit.ini&lt;&lt;EOF<br>   allow_url_fopen = Yes<br>   file_uploads = On<br>   magic_quotes_gpc = Off<br>   max_execution_time = 300<br>   max_file_uploads = 42<br>   max_input_time = 60<br>   max_input_vars = 10000<br>   memory_limit = 256M<br>   post_max_size = 128M<br>   register_argc_argv = On<br>   register_globals = Off<br>   short_open_tag = On<br>   upload_max_filesize = 128M<br>   display_errors = Off<br>   display_startup_errors = Off<br>   error_reporting = E_ALL &amp; ~E_DEPRECATED &amp; ~E_STRICT<br>   log_errors = On<br>   default_charset = "UTF-8"<br>   default_socket_timeout = 60<br>   date.timezone = Africa/Nairobi<br>   session.gc_maxlifetime = 604800<br>   session.cookie_lifetime = 0<br>   mysqli.default_socket = /var/run/mysqld/mysqld.sock<br>   EOF </pre>



<p><strong>session.gc_maxlifetime</strong> should be the same or greater than the <strong>Session Timeout</strong> in the <a href="https://kb.i-doit.com/display/en/System+Settings+-+Administration">System settings</a> of i-doit.</p>



<p>Then activate the required PHP modules &amp; restart Apache web server.</p>



<pre class="wp-block-verse">sudo phpenmod i-doit<br> sudo phpenmod memcached<br> sudo systemctl restart apache2.service</pre>



<h3><strong>Step 2: Install MariaDB Server</strong></h3>



<p><a href="https://www.osradar.com/install-mariadb-10-4-ubuntu-18-04/">Install MariaDB on your Ubuntu 18.04</a></p>



<p>After Installing MariaDB &amp; configuring it login to it, &amp; run the given command.</p>



<pre class="wp-block-verse">SET GLOBAL innodb_fast_shutdown = 0;<br> UPDATE mysql.user SET plugin = 'mysql_native_password' WHERE User = 'root';<br> FLUSH PRIVILEGES;</pre>



<p>Tune your server for Optimal Perfromance</p>



<pre class="wp-block-verse">sudo nano /etc/mysql/mariadb.conf.d/99-i-doit.cnf</pre>



<p>Then add the below content:</p>



<pre class="wp-block-verse">[mysqld]<br> This is the number 1 setting to look at for any performance optimization<br> It is where the data and indexes are cached: having it as large as possible will<br> ensure MySQL uses memory and not disks for most read operations.<br> #<br> Typical values are 1G (1-2GB RAM), 5-6G (8GB RAM), 20-25G (32GB RAM), 100-120G (128GB RAM).<br> innodb_buffer_pool_size = 1G<br> Use multiple instances if you have innodb_buffer_pool_size &gt; 10G, 1 every 4GB<br> innodb_buffer_pool_instances = 1<br> Redo log file size, the higher the better.<br> MySQL/MariaDB writes two of these log files in a default installation.<br> innodb_log_file_size = 512M<br> innodb_sort_buffer_size = 64M<br> sort_buffer_size = 262144 # default<br> join_buffer_size = 262144 # default<br> max_allowed_packet = 128M<br> max_heap_table_size = 32M<br> query_cache_min_res_unit = 4096<br> query_cache_type = 1<br> query_cache_limit = 5M<br> query_cache_size = 80M<br> tmp_table_size = 32M<br> max_connections = 200<br> innodb_file_per_table = 1<br> Disable this (= 0) if you have only one to two CPU cores, change it to 4 for a quad core.<br> innodb_thread_concurrency = 0<br> Disable this (= 0) if you have slow harddisks<br> innodb_flush_log_at_trx_commit = 1<br> innodb_flush_method = O_DIRECT<br> innodb_lru_scan_depth = 2048<br> table_definition_cache = 1024<br> table_open_cache = 2048<br> Only if your have MySQL 5.6 or higher, do not use with MariaDB!<br> table_open_cache_instances = 4<br> innodb_stats_on_metadata = 0<br> sql-mode = ""</pre>



<p>When finished, restart mariadb </p>



<pre class="wp-block-verse">sudo systemctl restart mysql</pre>



<h3><strong>Step 3: Download i-doit</strong></h3>



<p>Download &amp; extract the <a href="https://i-doit.org/">open source version</a> of i-doit</p>



<pre class="wp-block-verse">export LATEST="1.13.2"<br>wget https://sourceforge.net/projects/i-doit/files/i-doit/$LATEST/idoit-open-$LATEST.zip<br>sudo unzip idoit-open-$LATEST.zip -d /var/www/html/i-doit</pre>



<p>Set permissions for the created directory to apache user</p>



<pre class="wp-block-verse">cd /var/www/html/i-doit<br> sudo chown www-data:www-data -R .<br> sudo find . -type d -name * -exec chmod 775 {} \;<br> sudo find . -type f -exec chmod 664 {} \;<br> sudo chmod 774 controller <em>.sh setup/</em>.sh</pre>



<p>Then create Apache configuration file for i-doit.</p>



<pre class="wp-block-verse">sudo tee /etc/apache2/sites-available/i-doit.conf&lt;<br>         ServerAdmin admin@example.com<br> <code>    DirectoryIndex index.php     DocumentRoot /var/www/html/     &lt;Directory /var/www/html/&gt;             AllowOverride All             Require all granted     &lt;/Directory&gt;     LogLevel warn     ErrorLog ${APACHE_LOG_DIR}/error.log     CustomLog ${APACHE_LOG_DIR}/access.log combined</code><br> <br> EOF</pre>



<p>Enable site &amp; rewrite module.</p>



<pre class="wp-block-verse">sudo chown www-data:www-data -R /var/www/html/<br>sudo chmod 755 /var/log/apache2<br>sudo chmod 664 /var/log/apache2/*<br>sudo a2ensite i-doit<br>sudo a2enmod rewrite<br>sudo systemctl restart apache2.service</pre>



<h3><strong>Step 4: Run i-doit Setup</strong></h3>



<p>Launch the i-doit by opening http://idoit.example.com/i-doit/.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="556" height="420" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/i-doit-setup.jpg" alt="" class="wp-image-17411" srcset="https://www.osradar.com/wp-content/uploads/2019/12/i-doit-setup.jpg 556w, https://www.osradar.com/wp-content/uploads/2019/12/i-doit-setup-300x227.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/i-doit-setup-80x60.jpg 80w" sizes="(max-width: 556px) 100vw, 556px" /></figure></div>



<p>All system checks should show a pass.</p>



<p>Do the all steps as shown in screenshots below</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="557" height="173" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/directory-configuration.jpg" alt="" class="wp-image-17412" srcset="https://www.osradar.com/wp-content/uploads/2019/12/directory-configuration.jpg 557w, https://www.osradar.com/wp-content/uploads/2019/12/directory-configuration-300x93.jpg 300w" sizes="(max-width: 557px) 100vw, 557px" /></figure></div>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="554" height="375" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/database-configuration.jpg" alt="" class="wp-image-17413" srcset="https://www.osradar.com/wp-content/uploads/2019/12/database-configuration.jpg 554w, https://www.osradar.com/wp-content/uploads/2019/12/database-configuration-300x203.jpg 300w" sizes="(max-width: 554px) 100vw, 554px" /></figure></div>



<ul><li> <strong><em>Connection Settings</em></strong></li><li><strong>Host:</strong>  localhost or 127.0.0.1</li><li> <strong>Port:</strong> default port of MySQL/MariaDB, so 3306</li><li> <strong>Username: </strong>User name of the database system user, usually root</li><li> <strong>Password:</strong> Password of the user</li><li> <strong><em>MySQL user settings</em></strong></li><li> <strong>Username:</strong> User name of the i-doit databases owner, usually idoit</li><li> <strong>Password:</strong> Pass of the user</li><li> <strong><em>Database settings</em></strong></li><li> <strong>System Database Name:</strong> Name of the system DB, usually idoit_system</li><li> <strong>Mandator Database Name:</strong> Name of the database for the first tenant, usually idoit_data</li><li> <strong>Mandator title:</strong> name of the organization that is focused on</li><li> <strong>Start value for object/configuration item IDs:</strong> Normally 1 </li></ul>



<figure class="wp-block-image size-large"><img loading="lazy" width="554" height="132" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/framework-configuration.jpg" alt="" class="wp-image-17414" srcset="https://www.osradar.com/wp-content/uploads/2019/12/framework-configuration.jpg 554w, https://www.osradar.com/wp-content/uploads/2019/12/framework-configuration-300x71.jpg 300w" sizes="(max-width: 554px) 100vw, 554px" /></figure>



<p>Then finalize the configuration check &amp; move to next step</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="558" height="324" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/idoit-installation.jpg" alt="" class="wp-image-17415" srcset="https://www.osradar.com/wp-content/uploads/2019/12/idoit-installation.jpg 558w, https://www.osradar.com/wp-content/uploads/2019/12/idoit-installation-300x174.jpg 300w" sizes="(max-width: 558px) 100vw, 558px" /></figure></div>



<p>After it login to the i-doit by providing your credentials.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="437" height="178" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/login-idoit.jpg" alt="" class="wp-image-17416" srcset="https://www.osradar.com/wp-content/uploads/2019/12/login-idoit.jpg 437w, https://www.osradar.com/wp-content/uploads/2019/12/login-idoit-300x122.jpg 300w" sizes="(max-width: 437px) 100vw, 437px" /></figure></div>



<p>You now have Installed i-doit on Ubuntu system.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="556" height="295" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/i-doit-open-source.jpg" alt="" class="wp-image-17418" srcset="https://www.osradar.com/wp-content/uploads/2019/12/i-doit-open-source.jpg 556w, https://www.osradar.com/wp-content/uploads/2019/12/i-doit-open-source-300x159.jpg 300w" sizes="(max-width: 556px) 100vw, 556px" /></figure></div>



<p>Further Steps</p>



<ul><li><a href="https://kb.i-doit.com/display/en/Install+License">Download &amp; Install a License</a> </li><li><a href="https://kb.i-doit.com/display/en/Backup+and+Recovery">Set up backup</a></li><li><a href="https://kb.i-doit.com/display/en/Cronjobs+Setup">Set up Cronjobs</a></li><li><a href="https://kb.i-doit.com/display/en/Initial+Login">Initial login</a></li></ul>



<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-i-doit-asset-management-tool-on-ubuntu-18-04/">How To Install i-doit Asset Management Tool 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/how-to-install-i-doit-asset-management-tool-on-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
