<?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>GLPI Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/glpi/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Wed, 09 Dec 2020 16:41:43 +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 GLPI on OpenSUSE 15.2?</title>
		<link>https://www.osradar.com/install-glpi-opensuse-152-leap/</link>
					<comments>https://www.osradar.com/install-glpi-opensuse-152-leap/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 10 Dec 2020 00:01:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[GLPI]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Leap]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=17785</guid>

					<description><![CDATA[<p>As you know OpenSUSE is a warranty as an operating system on a server. Since the server is one of the main elements of a network, it is important that the system installed is efficient. In the same way, in this server, there could be many different applications and services. One of them is the [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-glpi-opensuse-152-leap/">How to install GLPI on OpenSUSE 15.2?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>As you know OpenSUSE is a warranty as an operating system on a  server. Since the server is one of the main elements of a network, it is important that the system installed is efficient. In the same way, in this server, there could be many different applications and services. One of them is the <a href="https://glpi-project.org/">GLPI</a> this software that allows having controlled your computer park. So, in this post, <strong>you will learn how to install GLPI on OpenSUSE 15.2.</strong></p>



<h2>Install GLPI on OpenSUSE 15.2</h2>



<h3>1.- Install LAMP on OpenSUSE 15.2</h3>



<p>As it is well known, GLPI is a web application created with PHP. Therefore, it is necessary to have a web server configured that can &#8220;serve&#8221; the application.</p>



<p>On the other hand, the application also requires a database manager to store all the necessary information.</p>



<p>Therefore, you need to have a LAMP server in OpenSUSE 15. Luckily, we have a post that talks about it</p>



<p><a href="https://www.osradar.com/install-lamp-opensuse-15-2-15-1/" target="_blank" rel="noreferrer noopener">How to install LAMP on OpenSUSE 15.2 / 15.1?</a></p>



<p>Also, you need to install these PHP modules:</p>



<pre class="wp-block-preformatted">php7-ldap php7-opcache php7-APCu php7-xmlrpc php7-exif php7-fileinfo php7-zlib</pre>



<p>Now you can continue.</p>



<h3>2.- Creating a new database for GLPI</h3>



<p>The next step is to create a new database and user for GLPI. This is necessary as a security measure and to assist in the configuration of GLPI.</p>



<p>So access the MariaDB console as follows:</p>



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



<p>And start creating the database and the new user. As well as the necessary permissions on it.</p>



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



<figure class="wp-block-image size-large"><img loading="lazy" width="1019" height="410" src="https://www.osradar.com/wp-content/uploads/2020/01/1-19.png" alt="1.- Creating a new database and user for GLPI" class="wp-image-17786" srcset="https://www.osradar.com/wp-content/uploads/2020/01/1-19.png 1019w, https://www.osradar.com/wp-content/uploads/2020/01/1-19-300x121.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/1-19-768x309.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/1-19-696x280.png 696w" sizes="(max-width: 1019px) 100vw, 1019px" /><figcaption>1.- Creating a new database and user for GLPI</figcaption></figure>



<p>Now, we can download GLPI.</p>



<h3>3.- Download and install GLPI on OpenSUSE 15.2</h3>



<p>The download of GLPI can be done with the <a href="https://www.osradar.com/the-wget-command/" target="_blank" rel="noreferrer noopener" aria-label="wget (opens in a new tab)">wget</a> command. And at the moment of writing this tutorial, the last stable version is 9.4.5.</p>



<p>Most probably you already have wget installed, but it&#8217;s always good to be sure:</p>



<pre class="wp-block-preformatted">:~$ sudo zypper in wget</pre>



<p>And now, yes, we proceed to start the download:</p>



<pre class="wp-block-preformatted">:~$ cd /tmp/
:~$ wget -c https://github.com/glpi-project/glpi/releases/download/9.4.5/glpi-9.4.5.tgz</pre>



<p>Once the download is complete, we proceed to decompress the file.</p>



<pre class="wp-block-preformatted">:~$ tar -xvf glpi-9.4.5.tgz</pre>



<p>Then, the generated folder must be moved to the Apache root directory in OpenSUSE. And then, assign permissions to it and indicate that the owner of that folder is Apache.</p>



<pre class="wp-block-preformatted">:~$ sudo mv glpi /srv/www/htdocs/
:~$ sudo chmod 755 -R /srv/www/htdocs/glpi
:~$ sudo chown -R wwwrun:www /srv/www/htdocs/glpi</pre>



<p>Now, a new VirtualHost has to be created to handle the running of GLPI. To do this, create a new configuration file:</p>



<pre class="wp-block-preformatted">:~$ sudo nano /etc/apache2/conf.d/glpi.conf</pre>



<p>And add the following:</p>



<pre class="wp-block-preformatted">&lt;VirtualHost *:80&gt;
   ServerAdmin admin@your_domain.com
   DocumentRoot "/srv/www/htdocs/glpi"
   ServerName glpi.osradar.opensuse

  &lt;Directory "/srv/www/htdocs/glpi"&gt;
      Options FollowSymlinks
      AllowOverride All
      Require all granted
  &lt;/Directory&gt;
&lt;/VirtualHost&gt;</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="988" height="277" src="https://www.osradar.com/wp-content/uploads/2020/01/3-17.png" alt="2.- Enabling a new Virtualhost for GLPI" class="wp-image-17787" srcset="https://www.osradar.com/wp-content/uploads/2020/01/3-17.png 988w, https://www.osradar.com/wp-content/uploads/2020/01/3-17-300x84.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/3-17-768x215.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/3-17-696x195.png 696w" sizes="(max-width: 988px) 100vw, 988px" /><figcaption>2.- Enabling a new Virtualhost for GLPI</figcaption></figure>



<p>Save the changes and close the file. Remember that the domain data has to be changed. I am using <code>glpi.osradar.opensuse</code> as an example.</p>



<p>Then, enable the PHP rewrite module and restart Apache.</p>



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



<p>Now, complete the installation using the web interface.</p>



<h3>4.- Install GLPI on OpenSUSE 15.2 (II) </h3>



<p>Now all you have to do is open the web browser you want and access the server name you set up on the VirtualHost and complete the installation. In my case <code>glpi.osradar.opensuse</code> and you will see the following:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/01/4-15-1024x502.png" alt="3.- Installing GLPI on OpenSUSE 15.2" class="wp-image-17788" srcset="https://www.osradar.com/wp-content/uploads/2020/01/4-15-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/4-15-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/4-15-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/4-15-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/4-15-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2020/01/4-15-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/4-15-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/4-15-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2020/01/4-15.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Installing GLPI on OpenSUSE 15.2</figcaption></figure>



<p>Choose the language of the installation and click on the Ok button. Then, you will see the license terms.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/01/5-12-1024x502.png" alt="4.- GLPI License terms" class="wp-image-17789" srcset="https://www.osradar.com/wp-content/uploads/2020/01/5-12-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/5-12-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/5-12-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/5-12-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/5-12-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2020/01/5-12-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/5-12-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/5-12-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2020/01/5-12.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- GLPI License terms</figcaption></figure>



<p>By accepting the license terms, you can choose whether to do an installation from 0 or an upgrade. In this case, it is an installation from 0 so click on the <em>Install</em> button.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/01/6-10-1024x502.png" alt="5.- GPLI setup" class="wp-image-17790" srcset="https://www.osradar.com/wp-content/uploads/2020/01/6-10-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/6-10-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/6-10-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/6-10-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/6-10-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2020/01/6-10-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/6-10-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/6-10-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2020/01/6-10.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- GPLI setup</figcaption></figure>



<p>On the next screen, the installer will scan the server to make sure everything is OK. Some extensions may be missing and you will be marked with an alert, but if they are mandatory, they will be shown in red. Then click on <em>Continue</em>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="481" src="https://www.osradar.com/wp-content/uploads/2020/01/7-7-1024x481.png" alt="6.- Instaling GLPI on OpenSUSE 15.2" class="wp-image-17791" srcset="https://www.osradar.com/wp-content/uploads/2020/01/7-7-1024x481.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/7-7-300x141.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/7-7-768x361.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/7-7-696x327.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/7-7-1068x502.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/7-7-894x420.png 894w, https://www.osradar.com/wp-content/uploads/2020/01/7-7.png 1258w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- Instaling GLPI on OpenSUSE 15.2</figcaption></figure>



<p>Then, on the next screen, you will have to write the credentials for the connection to the database, previously created.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/01/8-6-1024x502.png" alt="7.- Databases connection" class="wp-image-17792" srcset="https://www.osradar.com/wp-content/uploads/2020/01/8-6-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/8-6-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/8-6-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/8-6-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/8-6-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2020/01/8-6-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/8-6-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/8-6-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2020/01/8-6.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>7.- Databases connection</figcaption></figure>



<p>The installer will make a test connection. If it is successful, you will see the following screen where you need to choose the database created previously.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/01/9-4-1024x502.png" alt="8.- Select the database for GLPI" class="wp-image-17793" srcset="https://www.osradar.com/wp-content/uploads/2020/01/9-4-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/9-4-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/9-4-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/9-4-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/9-4-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2020/01/9-4-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/9-4-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/9-4-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2020/01/9-4.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>8.- Select the database for GLPI</figcaption></figure>



<p>If everything went well with the database, you will see this image.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/01/10-2-1024x502.png" alt="9.- Database connection is OK" class="wp-image-17794" srcset="https://www.osradar.com/wp-content/uploads/2020/01/10-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/10-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/10-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/10-2-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/10-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2020/01/10-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/10-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/10-2-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2020/01/10-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>9.- Database connection is OK</figcaption></figure>



<p>Then the installer will ask us if we want to send usage statistics to the development team.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/01/11-1-1024x502.png" alt="10.- GPLI setup" class="wp-image-17795" srcset="https://www.osradar.com/wp-content/uploads/2020/01/11-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/11-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/11-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/11-1-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/11-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2020/01/11-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/11-1-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/11-1-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2020/01/11-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>10.- GPLI setup</figcaption></figure>



<p>Then, you will see several more installation screens. And in the end you will see one with the default users and passwords. </p>



<p>After that, you will see the Log in screen.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/01/12-1-1024x502.png" alt="11.- GLPI log in screen" class="wp-image-17796" srcset="https://www.osradar.com/wp-content/uploads/2020/01/12-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/12-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/12-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/12-1-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/12-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2020/01/12-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/12-1-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/12-1-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2020/01/12-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>11.- GLPI log in screen</figcaption></figure>



<p>In this case, we will access the administrator user that is <strong>glpi</strong> and the password is <strong>glpi</strong>. </p>



<p>Finally, you will see the dashboard.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/01/13-1024x502.png" alt="12.- GLPI on OpenSUSE 15.2" class="wp-image-17797" srcset="https://www.osradar.com/wp-content/uploads/2020/01/13-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/13-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/13-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/13-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/13-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2020/01/13-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/13-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/13-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2020/01/13.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>12.- GLPI on OpenSUSE 15.2</figcaption></figure>



<p>So, that is it. You can start changing the default password.</p>



<p>Enjoy it.</p>



<h2>Conclusion</h2>



<p>In this post, you have learned to install GLPI on OpenSUSE 15.2. GLPI is an application to control the informatics equipment of your company. It is an administrative tool, more than anything. It is created in PHP and uses MariaDB as a database manager.</p>



<p>Please share this post with your friends. 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/install-glpi-opensuse-152-leap/">How to install GLPI on OpenSUSE 15.2?</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-glpi-opensuse-152-leap/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install GLPI on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/how-to-install-glpi-on-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/how-to-install-glpi-on-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 04 May 2020 23:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[GLPI]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=20096</guid>

					<description><![CDATA[<p>Ubuntu 20.04 is a very popular distribution on servers because it is quite stable and offers commercial support. That is why it is necessary to learn how to install administrative tools. So, in this post, you will learn how to install GLPI on Ubuntu 20.04. This French inventory system also allows you to have a [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-glpi-on-ubuntu-20-04/">How to install GLPI 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>Ubuntu 20.04 is a very popular distribution on servers because it is quite stable and offers commercial support. That is why it is necessary to learn how to install administrative tools. So, in this post, you will learn <strong>how to install GLPI on Ubuntu 20.04</strong>. This French inventory system also allows you to have a ticketing system that will allow you to give technical support in your organization in an orderly way.</p>
<p>According to Wikipedia:</p>
<blockquote>
<p>“<a href="https://glpi-project.org/" target="_blank" rel="noopener noreferrer">GLPI</a> is an open source IT Asset Management, issue tracking system and service desk system (..) The solution is able to build an inventory of all the organization&#8217;s assets and to manage administrative and financial tasks”</p>
</blockquote>
<p>It is open source because it is released under the GPLv2 license which makes it accessible to many. Moreover, it is perfectly compatible with many operating systems.</p>
<p>So, let us start the job.</p>
<h2 class="western">Install GLPI on Ubuntu 20.04</h2>
<h3 class="western">1.- Install LAMP on Ubuntu 20.04</h3>
<p>One of the main advantages of using and installing GLPI is that it is a web application, and is therefore compatible with many operating systems. Also, the installation is not complicated at all, but it requires that the LAMP stack is installed and working on the server.</p>
<p>So let&#8217;s get to work on this first.</p>
<p><a href="https://www.osradar.com/install-lamp-ubuntu-20-04/" target="_blank" rel="noopener noreferrer">How to install LAMP on Ubuntu 20.04?</a></p>
<p>Also, you have to install other PHP modules that become necessary. These are all of them:</p>
<pre>php7.4 php7.4-curl php7.4-zip php7.4-gd php7.4-intl php-pear php7.4-imagick php7.4-imap php-memcache php7.4-pspell php7. 4-tidy php7.4-xmlrpc php7.4-xsl php7.4-mb php7.4-ldap php-cas php-apcu libapache2-mod-php7.4 php7.4-mysql</pre>
<p>Once it is installed and correctly configured we can move on to GLPI.</p>
<h3 class="western">2.- Creating the new user and database for GLPI</h3>
<p>With MariaDB already working properly, we now have to create a new user and a new database.</p>
<p>The main reason for this is that GLPI needs to store different data and it is convenient that the root user is not the user that GLPI is going to use. This is for security reasons.</p>
<p>So, open the MariaDB console as the root user:</p>
<pre>:~$ sudo mysql -u root -p</pre>
<p>And then, create the database, the new user together with the privileges over the new database.</p>
<pre>&gt; CREATE DATABASE glpidb;<br />&gt;GRANT ALL PRIVILEGES ON glpidb.* TO 'glpiuser'@'localhost' IDENTIFIED BY 'password';<br />&gt; FLUSH PRIVILEGES;<br />&gt;EXIT;</pre>
<figure id="attachment_20103" aria-describedby="caption-attachment-20103" style="width: 1040px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20103" src="https://www.osradar.com/wp-content/uploads/2020/05/1-1.png" alt="1.- Creating a new database for GLPI" width="1040" height="403" srcset="https://www.osradar.com/wp-content/uploads/2020/05/1-1.png 1040w, https://www.osradar.com/wp-content/uploads/2020/05/1-1-300x116.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/1-1-1024x397.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/1-1-768x298.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/1-1-696x270.png 696w" sizes="(max-width: 1040px) 100vw, 1040px" /><figcaption id="caption-attachment-20103" class="wp-caption-text">1.- Creating a new database for GLPI</figcaption></figure>
<p>Remember that you can change the values set here to your own. Above all, the password has to be a strong one and must be safe.</p>
<h3 class="western">3.- Download GLPI on Ubuntu 20.04</h3>
<p>So, it&#8217;s time to download GLPI using the wget command. This will make the download faster and we&#8217;ll still be in a CLI environment.</p>
<p>Navigate to the /tmp/ folder and download it from there.</p>
<pre>:~$ cd /tmp/<br />:~$ wget -c https://github.com/glpi-project/glpi/releases/download/9.4.5/glpi-9.4.5.tgz</pre>
<p>Once the download is complete, decompress the file with the tar command.</p>
<pre>:~$ tar -xvf glpi-9.4.5.tgz</pre>
<p>Then, move it to the Apache root folder in Ubuntu and assign the correct permissions.</p>
<pre>:~$ sudo mv glpi /var/www/html/<br />:~$ sudo chmod 755 -R /var/www/html/</pre>
<p>And to make sure Apache has no problem running all GLPI, make Apache the owner of the folder.</p>
<pre>:~$ sudo chown www-data:www-data -R /var/www/html/</pre>
<p>After this, create a new Virtualhost for GLPI.</p>
<pre>:~$ sudo nano /etc/apache2/sites-available/glpi.conf</pre>
<p>And add the following content to the file:</p>
<pre>&lt;VirtualHost *:80&gt;<br />   ServerAdmin admin@your_domain.com<br />   DocumentRoot /var/www/html/glpi<br />   ServerName your-domain.com<br /><br />   &lt;Directory /var/www/html/glpi&gt;<br />        Options FollowSymlinks<br />        AllowOverride All<br />        Require all granted<br />   &lt;/Directory&gt;<br /><br />   ErrorLog ${APACHE_LOG_DIR}/your-domain.com_error.log<br />   CustomLog ${APACHE_LOG_DIR}/your-domain.com_access.log combined<br /><br />&lt;/VirtualHost&gt;</pre>
<figure id="attachment_20104" aria-describedby="caption-attachment-20104" style="width: 946px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20104" src="https://www.osradar.com/wp-content/uploads/2020/05/2-3.png" alt="2.- Creating a new Virtualhost for GLPI" width="946" height="330" srcset="https://www.osradar.com/wp-content/uploads/2020/05/2-3.png 946w, https://www.osradar.com/wp-content/uploads/2020/05/2-3-300x105.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/2-3-768x268.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/2-3-696x243.png 696w" sizes="(max-width: 946px) 100vw, 946px" /><figcaption id="caption-attachment-20104" class="wp-caption-text">2.- Creating a new Virtualhost for GLPI</figcaption></figure>
<p>Replace the value &#8220;your-domain&#8221; with your own. You are also free to add new rules for this Virtualhost.</p>
<p>Then save the changes and close the text editor.</p>
<p>To enable the new Virtualhost, simply make a symbolic link from the file to the Apache-enabled sites.</p>
<pre>:~$ sudo ln -s /etc/apache2/sites-available/glpi.conf /etc/apache2/sites-enabled/glpi.conf</pre>
<p>Then, enable Apache&#8217;s rewrite module and apply the changes by restarting Apache.</p>
<pre>:~$ sudo a2enmod rewrite<br />:~$ sudo systemctl restart apache2</pre>
<p>Now to complete the installation.</p>
<h3 class="western">4.- Install GLPI on Ubuntu 20.04</h3>
<p>Now open a web browser and go to <code>http://your-domain</code> and you will see the following screen where you can choose the installation language:</p>
<figure id="attachment_20105" aria-describedby="caption-attachment-20105" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20105" src="https://www.osradar.com/wp-content/uploads/2020/05/3-3.png" alt="3.- GLPI language setup" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/3-3.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/3-3-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/3-3-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/3-3-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/3-3-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/3-3-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20105" class="wp-caption-text">3.- GLPI language setup</figcaption></figure>
<p>Then, you will have to accept the license terms:</p>
<figure id="attachment_20106" aria-describedby="caption-attachment-20106" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20106" src="https://www.osradar.com/wp-content/uploads/2020/05/4-2.png" alt="4.-GLPI  License terms" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/4-2.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/4-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/4-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/4-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/4-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/4-2-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20106" class="wp-caption-text">4.-GLPI License terms</figcaption></figure>
<p>In the next screen, you will have to specify if it is a new installation or an upgrade. In this case, it is a new installation:</p>
<figure id="attachment_20107" aria-describedby="caption-attachment-20107" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20107" src="https://www.osradar.com/wp-content/uploads/2020/05/5-2.png" alt="5.- Installing GLPI on Ubuntu 20.04" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/5-2.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/5-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/5-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/5-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/5-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/5-2-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20107" class="wp-caption-text">5.- Installing GLPI on Ubuntu 20.04</figcaption></figure>
<p>Then, the wizard will verify that the server meets all the requirements.</p>
<figure id="attachment_20108" aria-describedby="caption-attachment-20108" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20108" src="https://www.osradar.com/wp-content/uploads/2020/05/6-2.png" alt="6.- Server requisites" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/6-2.png 1354w, https://www.osradar.com/wp-content/uploads/2020/05/6-2-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/6-2-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/6-2-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/6-2-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/6-2-1068x528.png 1068w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-20108" class="wp-caption-text">6.- Server requisites</figcaption></figure>
<p>Now you will see the first step of the installation which is to configure the database credentiials. Just type the previously created credentials:</p>
<figure id="attachment_20109" aria-describedby="caption-attachment-20109" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20109" src="https://www.osradar.com/wp-content/uploads/2020/05/7-2.png" alt="7.- Database credentials on GLPI installation" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/7-2.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/7-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/7-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/7-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/7-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/7-2-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20109" class="wp-caption-text">7.- Database credentials on GLPI installation</figcaption></figure>
<p>Then, select the database created and continue the process:</p>
<figure id="attachment_20110" aria-describedby="caption-attachment-20110" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20110" src="https://www.osradar.com/wp-content/uploads/2020/05/8-1.png" alt="8.- Select the database for GLPI" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/8-1.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/8-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/8-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/8-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/8-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/8-1-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20110" class="wp-caption-text">8.- Select the database for GLPI</figcaption></figure>
<p>If the installer manages to connect to the database, you will be informed on this screen:</p>
<figure id="attachment_20111" aria-describedby="caption-attachment-20111" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20111" src="https://www.osradar.com/wp-content/uploads/2020/05/9-1.png" alt="9.- So far everything is ok" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/9-1.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/9-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/9-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/9-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/9-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/9-1-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20111" class="wp-caption-text">9.- So far everything is ok</figcaption></figure>
<p>GLPI is an open-source and improved by the community. Therefore you will be asked if you want to anonymously send statistics to the developers:</p>
<figure id="attachment_20112" aria-describedby="caption-attachment-20112" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20112" src="https://www.osradar.com/wp-content/uploads/2020/05/10.png" alt="10.- GLPI statistics" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/10.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/10-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/10-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/10-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/10-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/10-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20112" class="wp-caption-text">10.- GLPI statistics</figcaption></figure>
<p>Then, on the next screen, you will be informed that the installation was successful and you will see the default credentials for each GLPI role. Remember that you can change this.</p>
<figure id="attachment_20113" aria-describedby="caption-attachment-20113" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20113" src="https://www.osradar.com/wp-content/uploads/2020/05/11.png" alt="11.- GLPI installed" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/11.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/11-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/11-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/11-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/11-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/11-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20113" class="wp-caption-text">11.- GLPI installed</figcaption></figure>
<p>In the end, you will see the Login screen where you will enter the necessary credentials:</p>
<figure id="attachment_20114" aria-describedby="caption-attachment-20114" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20114" src="https://www.osradar.com/wp-content/uploads/2020/05/12.png" alt="12.- GLPI login page" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/12.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/12-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/12-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/12-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/12-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/12-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20114" class="wp-caption-text">12.- GLPI login page</figcaption></figure>
<p>Finally, you will see the main screen of the application and it will be ready for work.</p>
<figure id="attachment_20115" aria-describedby="caption-attachment-20115" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20115" src="https://www.osradar.com/wp-content/uploads/2020/05/13.png" alt="13.- GLPI on Ubuntu 20.04" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/13.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/13-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/13-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/13-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/13-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/13-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20115" class="wp-caption-text">13.- GLPI on Ubuntu 20.04</figcaption></figure>
<p>So, enjoy it.</p>
<h2 class="western">Conclusion</h2>
<p>GLPI is an application to control the informatics equipment of your company. It is an administrative tool, more than anything. It is created in PHP and uses MariaDB as a database manager.</p>
<p>We are talking about a solid tool used by many organizations worldwide. Free is not a problem for small projects but it is solid enough to be used in larger ones</p>
<p>Please share this post and join <a href="https://t.me/osradar" target="_blank" rel="noopener noreferrer">our Telegram channel</a>.</p>


<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-glpi-on-ubuntu-20-04/">How to install GLPI 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/how-to-install-glpi-on-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install GLPI with Nginx on Debian 10?</title>
		<link>https://www.osradar.com/install-glpi-nginx-on-debian-10/</link>
					<comments>https://www.osradar.com/install-glpi-nginx-on-debian-10/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 13 Dec 2019 00:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[GLPI]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=16339</guid>

					<description><![CDATA[<p>As you know Debian 10 Buster is a warranty as an operating system on a server. Since the server is one of the main elements of a network, it is important that the system installed is efficient. In the same way, in this server, there could be many different applications and services. One of them [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-glpi-nginx-on-debian-10/">How to install GLPI with Nginx on Debian 10?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>As you know Debian 10 Buster is a warranty as an operating system on a server. Since the server is one of the main elements of a network, it is important that the system installed is efficient. In the same way, in this server, there could be many different applications and services. One of them is the <a href="https://glpi-project.org/" rel="noopener">GLPI</a> this software that allows having controlled your computer park. In this post, you will learn how to install GLPI whit Nginx on Debian 10.</p>
<h2>Install GLPI on Debian 10</h2>
<p>First, connect to your server. To do this, connect to your server using the following command:</p>
<pre>:~$ ssh [your-user]@[your-server]</pre>
<p>Once you are on the server we can continue.</p>
<h3>1.- Upgrade the system</h3>
<p>Before starting any installation, it is recommended to upgrade the entire operating system. <strong>To do this you need to be a root user.</strong> If you do not have the password and your user can <a href="https://www.osradar.com/how-to-enable-sudo-on-debian-10/" rel="noopener">use sudo</a>, you can do it like this.</p>
<pre>:~$ sudo apt update &amp;&amp; sudo apt upgrade</pre>
<p>With this, the server will have installed all the security patches that have been published. <strong>This will make Debian 10 Buster more robust and stable.</strong></p>
<h3>2.- Install LEMP on Debian 10</h3>
<p>Nginx has amazing results on performance issues. So in this case it will be chosen along with MariaDB and PHP. In short, we are talking about the LEMP stack.</p>
<p>To install it, I recommend you read our about it.</p>
<p><a href="https://www.osradar.com/how-to-install-lemp-on-debian-10-buster/" target="_blank" rel="noopener noreferrer">How to install LEMP on Debian 10?</a></p>
<p>Then, we can continue.</p>
<h3>3) Preparing the system for GLPI</h3>


<p>Before installing GLPI you need to install some PHP libraries first. This will make it run smoothly. It is likely that your system already has them installed but it is better to be sure of it.</p>



<pre class="wp-block-preformatted">:~$ sudo apt install php7.3 php7.3-curl php7.3-zip php7.3-gd php7.3-intl php-pear php-imagick php7.3-imap php-memcache php7.3-pspell php7.3-recode php7.3-tidy php7.3-xmlrpc php7.3-xsl php7.3-mbstring php-gettext php7.3-ldap php-cas php-apcu php7.3-mysql php7.3-fpm</pre>



<p>These are all of them.</p>



<p>Then you have to configure a little PHP-FPM to make it compatible with Nginx.</p>



<p>Open the configuration file:</p>



<pre class="wp-block-preformatted">sudo nano /etc/php/7.3/fpm/pool.d/www.conf</pre>



<p>And change these two lines of the file so that they look like this:</p>



<pre class="wp-block-preformatted">;listen = /var/run/php7-fpm.sock
listen = 127.0.0.1:9000</pre>



<p>Then save the changes by pressing CTRL + O and close it with CTRL + X.</p>



<p>Finally, apply the changes by restarting both services.</p>



<pre class="wp-block-preformatted">~$ sudo systemctl restart nginx php7.3-fpm</pre>



<h3>4) Creating the new database and user for GLPI</h3>



<p>The next step is to create a new database for GLPI. We will do this from the MariaDB console.</p>



<p>Also, for security reasons, it is recommended to create a new user dedicated to that database. This way you will have a more orderly view of the MariaDB instance.</p>



<p>So, go to the MariaDB console:</p>



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



<p>And create the database and the user with their respective permissions.</p>



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



<figure class="wp-block-image size-large"><img loading="lazy" width="968" height="428" src="https://www.osradar.com/wp-content/uploads/2019/12/1-3.png" alt="1.- Creating the new database for GLPI" class="wp-image-16376" srcset="https://www.osradar.com/wp-content/uploads/2019/12/1-3.png 968w, https://www.osradar.com/wp-content/uploads/2019/12/1-3-300x133.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/1-3-768x340.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/1-3-696x308.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/1-3-950x420.png 950w" sizes="(max-width: 968px) 100vw, 968px" /><figcaption>1.- Creating the new database for GLPI</figcaption></figure>



<p>Of course, you can modify the parameters to make it your own. Especially the password.</p>



<h3>5) Install GLPI with Nginx on Debian 10 (I)</h3>



<p>We now proceed to download and install GLPI. To do this we first navigate to the temporary folder and proceed to start the download with wget. At the time of writing this post, the last stable version is 9.4.4.</p>



<pre class="wp-block-preformatted">:~$ cd /tmp/
:~$ wget -c https://github.com/glpi-project/glpi/releases/download/9.4.4/glpi-9.4.4.tgz</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="354" src="https://www.osradar.com/wp-content/uploads/2019/12/2-2-1024x354.png" alt="2.- Download and install GLPI with Nginx on Debian 10" class="wp-image-16377" srcset="https://www.osradar.com/wp-content/uploads/2019/12/2-2-1024x354.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/2-2-300x104.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/2-2-768x266.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/2-2-696x241.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/2-2-1068x369.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/2-2-1215x420.png 1215w, https://www.osradar.com/wp-content/uploads/2019/12/2-2.png 1365w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Download and install GLPI with Nginx on Debian 10</figcaption></figure>



<p>Then, unzip the folder and assign the appropriate permissions to ensure the proper functioning of the application.</p>



<pre class="wp-block-preformatted">:~$ tar -xvf glpi-9.4.4.tgz
:~$ sudo mv glpi /var/www/html/*
:~$ sudo chmod 755 -R /var/www/html/*
:~$ sudo chown $USER:$USER -R /var/www/html/*</pre>



<p>The next step is to create a new Nginx configuration for GLPI. In this sense, it is convenient to make a new server block.</p>



<pre class="wp-block-preformatted">:~$ sudo nano /etc/nginx/sites-available/glpi</pre>



<p>And add the following:</p>



<pre class="wp-block-preformatted">server {
 listen 80;
 server_name glpi.osradar.test;
 root /var/www/html/glpi;
 index index.php;
 location / {try_files $uri $uri/ index.php;}
 location ~ \.php$ {
 fastcgi_pass 127.0.0.1:9000;
 fastcgi_index index.php;
 include /etc/nginx/fastcgi_params;
 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
 include fastcgi_params;
 fastcgi_param SERVER_NAME $host;
 }
location ~ /files{
deny all;
}
 }</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="979" height="366" src="https://www.osradar.com/wp-content/uploads/2019/12/3-3.png" alt="3.- Configuring Nginx to work with GLPI" class="wp-image-16378" srcset="https://www.osradar.com/wp-content/uploads/2019/12/3-3.png 979w, https://www.osradar.com/wp-content/uploads/2019/12/3-3-300x112.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/3-3-768x287.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/3-3-696x260.png 696w" sizes="(max-width: 979px) 100vw, 979px" /><figcaption>3.- Configuring Nginx to work with GLPI</figcaption></figure>



<p>Of course, you can replace the server_name by yours.</p>



<p>Then, enable the new configuration.</p>



<pre class="wp-block-preformatted">:~$ sudo ln -s /etc/nginx/sites-available/glpi /etc/nginx/sites-enabled/glpi.conf</pre>



<p>Finally, restart both services:</p>



<pre class="wp-block-preformatted">:~$ sudo systemctl restart nginx php7.3-fpm</pre>



<p>Now, we can continue the installation using the web browser.</p>



<h3>6) Install GLPI with Nginx on Debian 10 (II)</h3>



<p>Now, open your web browser and go to http://your-server and complete the installation. You will see the following:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/12/4-2-1024x502.png" alt="4.- GLPI initial setup" class="wp-image-16381" srcset="https://www.osradar.com/wp-content/uploads/2019/12/4-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/4-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/4-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/4-2-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/4-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/4-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/4-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/4-2-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/12/4-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- GLPI initial setup</figcaption></figure>



<p>So, choose your language and click OK.</p>



<p>Next, accept the license terms.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/12/5-2-1024x502.png" alt="5.- License terms of GLPI " class="wp-image-16382" srcset="https://www.osradar.com/wp-content/uploads/2019/12/5-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/5-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/5-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/5-2-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/5-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/5-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/5-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/5-2-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/12/5-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- License terms of GLPI </figcaption></figure>



<p>Once you have accepted them, 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/2019/12/6-2-1024x502.png" alt="6.- Install GLPI with Nginx on Debian 10" class="wp-image-16383" srcset="https://www.osradar.com/wp-content/uploads/2019/12/6-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/6-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/6-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/6-2-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/6-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/6-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/6-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/6-2-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/12/6-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- Install GLPI with Nginx on Debian 10</figcaption></figure>



<p>Once we have clicked on the install button. The wizard will determine the requirements of the application.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2019/12/7-1-1024x506.png" alt="7.- GLPI setup" class="wp-image-16384" srcset="https://www.osradar.com/wp-content/uploads/2019/12/7-1-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/7-1-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/7-1-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/7-1-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/7-1-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/7-1-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/7-1-850x420.png 850w, https://www.osradar.com/wp-content/uploads/2019/12/7-1.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>7.- GLPI setup</figcaption></figure>



<p>Now, enter MariaDB&#8217;s credentials.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/12/8-1024x502.png" alt="8.- Database credentials" class="wp-image-16385" srcset="https://www.osradar.com/wp-content/uploads/2019/12/8-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/8-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/8-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/8-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/8-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/8-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/8-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/8-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/12/8.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>8.- Database credentials</figcaption></figure>



<p>Press the Continue button. Next, select the Database.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/12/9-1024x502.png" alt="9.- Select the database" class="wp-image-16386" srcset="https://www.osradar.com/wp-content/uploads/2019/12/9-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/9-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/9-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/9-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/9-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/9-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/9-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/9-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/12/9.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>9.- Select the database</figcaption></figure>



<p>Then, initialize the database.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/12/10-1024x502.png" alt="10.- Installing GLPI with Nginx on Debian 10" class="wp-image-16387" srcset="https://www.osradar.com/wp-content/uploads/2019/12/10-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/10-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/10-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/10-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/10-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/10-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/10-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/10-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/12/10.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>10.- Installing GLPI with Nginx on Debian 10</figcaption></figure>



<p>After this, you will have the option to collaborate with the project by sending anonymous statistics on the use of the application.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/12/11-1024x502.png" alt="11.- GLPI usage statistics" class="wp-image-16388" srcset="https://www.osradar.com/wp-content/uploads/2019/12/11-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/11-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/11-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/11-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/11-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/11-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/11-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/11-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/12/11.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>11.- GLPI usage statistics</figcaption></figure>



<p>If everything went well, you will see the following screen with the contact credentials of the first users. Of course, you can change this later.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/12/12-1024x502.png" alt="12.- GLPI correctly installed" class="wp-image-16389" srcset="https://www.osradar.com/wp-content/uploads/2019/12/12-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/12-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/12-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/12-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/12-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/12-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/12-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/12-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/12/12.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>12.- GLPI correctly installed</figcaption></figure>



<p>So, log in with the default credentials.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/12/13-1024x502.png" alt="13.- GLPI log in screen" class="wp-image-16390" srcset="https://www.osradar.com/wp-content/uploads/2019/12/13-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/13-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/13-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/13-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/13-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/13-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/13-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/13-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/12/13.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>13.- GLPI log in screen</figcaption></figure>



<p>Finally, you will see the dashboard.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/12/14-1024x502.png" alt="14.- GLPI with Nginx on Debian 10" class="wp-image-16391" srcset="https://www.osradar.com/wp-content/uploads/2019/12/14-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/14-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/14-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/14-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/14-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/14-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/14-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/14-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/12/14.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>14.- GLPI with Nginx on Debian 10</figcaption></figure>



<p>And that is it.</p>



<h2>Conclusion</h2>



<p>In this post, you have learned to install GLPI with Nginx on Debian 10. GLPI is an application to control the informatics equipment of your company. It is an administrative tool, more than anything. It is created in PHP and uses MariaDB as a database manager.</p>



<p>If you prefer Apache over Nginx you can read this post</p>



<p><a href="https://www.osradar.com/how-to-install-glpi-on-debian-10-buster/" target="_blank" rel="noreferrer noopener" aria-label="How to install GLPI on Debian 10 Buster? (opens in a new tab)">How to install GLPI on Debian 10 Buster?</a></p>



<p>Please share this post with your friends. 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/install-glpi-nginx-on-debian-10/">How to install GLPI with Nginx on Debian 10?</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-glpi-nginx-on-debian-10/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
		<item>
		<title>How to install GLPI on CentOS 8 / RHEL 8 / Oracle Linux 8 ?</title>
		<link>https://www.osradar.com/install-glpi-centos-rhel-oracle-linux/</link>
					<comments>https://www.osradar.com/install-glpi-centos-rhel-oracle-linux/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 09 Sep 2019 23:00:42 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Centos 8]]></category>
		<category><![CDATA[GLPI]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[oracle linux 8]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[serverblock]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=13318</guid>

					<description><![CDATA[<p>As we already know, the Linux family of operating systems based on Network Hat Enterprise Linux is quite popular on servers. In this sense, there are numerous applications that facilitate the administration of companies or organizations. One of them is the GLPI that allows to control all the flow of equipment technological. In addition, it [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-glpi-centos-rhel-oracle-linux/">How to install GLPI on CentOS 8 / RHEL 8 / Oracle Linux 8 ?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>As we already know, the Linux family of operating systems based on Network Hat Enterprise Linux is quite popular on servers. In this sense, there are numerous applications that facilitate the administration of companies or organizations. One of them is the GLPI that allows to control all the flow of equipment technological. In addition, it incorporates a ticket system to report incidence. That is to say, is an application that improves workflow. In this post, you will learn how to install GLPI on CentOS 8 / RHEL 8 / Oracle Linux 8.</p>
<h2>GLPI in a few words</h2>
<p>The GLPI is an application of French origin that provides an integral management of the<br />
an organization&#8217;s computer inventory. But not only is it limited to this, but also<br />
also includes an incidence ticket system.</p>
<p>As expected is open source and is developed with PHP. Therefore, what is required is a web server with Apache or nginx as processors. In addition, to store the data, you need MySQL or MariaDB. As you can see, these are requirements of a server.</p>
<h2>Install CentOS 8 / RHEL 8 / Oracle Linux 8</h2>
<p>As it is an application built for web environments, it is necessary to have a fully functional server. To do this, I will choose Nginx as my HTTP server along with with PHP and MariaDB. That is to say a LEMP server.</p>
<p>Then, the first step is to install a LEMP server on CentOS 8 / RHEL 8 / Oracle. So I invite you to read our about this where we explain you step by step how to do it.</p>
<p>Read <a href="https://www.osradar.com/how-to-install-lemp-on-oracle-linux-8-rhel-8-centos-8/" target="_blank" rel="noopener noreferrer">How to install LEMP on CentOS 8 / RHEL 8 / Oracle Linux 8?</a></p>
<h2>Prepare MariaDB to work with GLPI</h2>
<p>Now that we have the LEMP server running, it is necessary to create a New user and database for GLPI. This is quite simple but we must enter as root user to the MariaDB console.</p>
<pre>:~# mysql –u root –p
&gt; CREATE DATABASE glpidb;
&gt; GRANT ALL PRIVILEGES ON glpidb.* TO 'glpiuser'@'localhost' IDENTIFIED BY 'glpipss';
&gt; FLUSH PRIVILEGES;
&gt; Exit;</pre>
<p><figure id="attachment_13469" aria-describedby="caption-attachment-13469" style="width: 860px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13469" src="https://www.osradar.com/wp-content/uploads/2019/09/1-2.jpeg" alt="1.- Creating the new database for GLPI on CentOS 8 / RHEL 8 / Oracle Linux 8" width="860" height="363" srcset="https://www.osradar.com/wp-content/uploads/2019/09/1-2.jpeg 860w, https://www.osradar.com/wp-content/uploads/2019/09/1-2-300x127.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/09/1-2-768x324.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/09/1-2-696x294.jpeg 696w" sizes="(max-width: 860px) 100vw, 860px" /><figcaption id="caption-attachment-13469" class="wp-caption-text">1.- Creating the new database for GLPI on CentOS 8 / RHEL 8 / Oracle Linux 8</figcaption></figure></p>
<p>Creating a user dedicated to GLPI other than root is a security measure important.</p>
<h2>Download and Install GLPI on CentOS 8 / RHEL 8 / Oracle Linux</h2>
<p>Now we can download and install the GLPI. To do this, just download it using wget. If you don&#8217;t have it installed, you can do it with the following command:</p>
<pre>:~# dnf install wget</pre>
<p>Then navigate to the tmp folder and download it.</p>
<pre>:~# cd /tmp/
:~# wget -c https://github.com/glpi-project/glpi/releases/download/9.4.3/glpi-9.4.3.tgz</pre>
<p>Next, decompress it and move to the nginx document root:</p>
<pre>:~# tar xvf glpi-9.4.3.tgz 
:~# mv glpi /usr/share/nginx/html/</pre>
<p>After that, change the permissions on the folder so that it can be runned correctly:</p>
<pre>:~# chmod 755 -R /usr/share/nginx/html/
:~# chown nginx:nginx -R /usr/share/nginx/html/</pre>
<h2>Create a new server block to GLPI on CentOS 8 / RHEL 8 / Oracle Linux 8 (Optional)</h2>
<p>Now it is necessary to create a new server block for Glpi. In this case, also we have a tutorial for it.</p>
<p>Read, <a href="https://www.osradar.com/create-nginx-server-block-centos-rhel-oracle-linux-8/" target="_blank" rel="noopener noreferrer">How to create an Nginx server block on CentOS 8 / RHEL 8 / Oracle Linux 8?</a></p>
<p>Then, we will be able to complete the installation.</p>
<h2>Install GLPI on CentOS / RHEL / Oracle Linux 8 using the web interface</h2>
<p>Now all that&#8217;s left is to complete the installation using the web interface. To do this, go to<br />
to your server and you will see the following image:</p>
<p><figure id="attachment_13470" aria-describedby="caption-attachment-13470" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13470" src="https://www.osradar.com/wp-content/uploads/2019/09/3-3.png" alt="3.- GLPI on CentOS 8 / RHEL 8 / Oracle Linux 8" width="840" height="288" srcset="https://www.osradar.com/wp-content/uploads/2019/09/3-3.png 840w, https://www.osradar.com/wp-content/uploads/2019/09/3-3-300x103.png 300w, https://www.osradar.com/wp-content/uploads/2019/09/3-3-768x263.png 768w, https://www.osradar.com/wp-content/uploads/2019/09/3-3-696x239.png 696w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-13470" class="wp-caption-text">3.- GLPI on CentOS 8 / RHEL 8 / Oracle Linux 8</figcaption></figure></p>
<p>Then, choose the language of the installation and accept the license terms.</p>
<p><figure id="attachment_13471" aria-describedby="caption-attachment-13471" style="width: 1350px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13471" src="https://www.osradar.com/wp-content/uploads/2019/09/4-3.png" alt="4.- License terms" width="1350" height="604" srcset="https://www.osradar.com/wp-content/uploads/2019/09/4-3.png 1350w, https://www.osradar.com/wp-content/uploads/2019/09/4-3-300x134.png 300w, https://www.osradar.com/wp-content/uploads/2019/09/4-3-768x344.png 768w, https://www.osradar.com/wp-content/uploads/2019/09/4-3-1024x458.png 1024w, https://www.osradar.com/wp-content/uploads/2019/09/4-3-696x311.png 696w, https://www.osradar.com/wp-content/uploads/2019/09/4-3-1068x478.png 1068w, https://www.osradar.com/wp-content/uploads/2019/09/4-3-939x420.png 939w" sizes="(max-width: 1350px) 100vw, 1350px" /><figcaption id="caption-attachment-13471" class="wp-caption-text">4.- License terms</figcaption></figure></p>
<p>Then, you can either update a previous installation or start a clean one. Choose the install option.</p>
<p><figure id="attachment_13472" aria-describedby="caption-attachment-13472" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13472" src="https://www.osradar.com/wp-content/uploads/2019/09/5-3.png" alt="5.- Install GLPI on CentOS 8 / RHEL / Oracle Linux" width="1366" height="386" srcset="https://www.osradar.com/wp-content/uploads/2019/09/5-3.png 1366w, https://www.osradar.com/wp-content/uploads/2019/09/5-3-300x85.png 300w, https://www.osradar.com/wp-content/uploads/2019/09/5-3-768x217.png 768w, https://www.osradar.com/wp-content/uploads/2019/09/5-3-1024x289.png 1024w, https://www.osradar.com/wp-content/uploads/2019/09/5-3-696x197.png 696w, https://www.osradar.com/wp-content/uploads/2019/09/5-3-1068x302.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13472" class="wp-caption-text">5.- Install GLPI on CentOS 8 / RHEL / Oracle Linux</figcaption></figure></p>
<p>Then, the installer will check the server for any problems.</p>
<p>&nbsp;</p>
<p><figure id="attachment_13474" aria-describedby="caption-attachment-13474" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13474" src="https://www.osradar.com/wp-content/uploads/2019/09/6-5.png" alt="6.- GLPI requisites" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/09/6-5.png 1366w, https://www.osradar.com/wp-content/uploads/2019/09/6-5-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/09/6-5-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/09/6-5-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/09/6-5-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/09/6-5-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/09/6-5-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13474" class="wp-caption-text">6.- GLPI requisites</figcaption></figure></p>
<p>Now, you will have to write the MariaDB credentials. Click on the Next option.</p>
<p>&nbsp;</p>
<p><figure id="attachment_13475" aria-describedby="caption-attachment-13475" style="width: 1350px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13475" src="https://www.osradar.com/wp-content/uploads/2019/09/7-5.png" alt="7.- MariaDB credentials" width="1350" height="503" srcset="https://www.osradar.com/wp-content/uploads/2019/09/7-5.png 1350w, https://www.osradar.com/wp-content/uploads/2019/09/7-5-300x112.png 300w, https://www.osradar.com/wp-content/uploads/2019/09/7-5-768x286.png 768w, https://www.osradar.com/wp-content/uploads/2019/09/7-5-1024x382.png 1024w, https://www.osradar.com/wp-content/uploads/2019/09/7-5-696x259.png 696w, https://www.osradar.com/wp-content/uploads/2019/09/7-5-1068x398.png 1068w, https://www.osradar.com/wp-content/uploads/2019/09/7-5-1127x420.png 1127w" sizes="(max-width: 1350px) 100vw, 1350px" /><figcaption id="caption-attachment-13475" class="wp-caption-text">7.- MariaDB credentials</figcaption></figure></p>
<p>Then, if the connection to the database has been successful, you will see the following:</p>
<p><figure id="attachment_13477" aria-describedby="caption-attachment-13477" style="width: 816px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13477" src="https://www.osradar.com/wp-content/uploads/2019/09/8-4.png" alt="8.- Database initialized" width="816" height="332" srcset="https://www.osradar.com/wp-content/uploads/2019/09/8-4.png 816w, https://www.osradar.com/wp-content/uploads/2019/09/8-4-300x122.png 300w, https://www.osradar.com/wp-content/uploads/2019/09/8-4-768x312.png 768w, https://www.osradar.com/wp-content/uploads/2019/09/8-4-696x283.png 696w" sizes="(max-width: 816px) 100vw, 816px" /><figcaption id="caption-attachment-13477" class="wp-caption-text">8.- Database initialized</figcaption></figure></p>
<p>Finally, if everything went well, you will see a message like this:</p>
<p><figure id="attachment_13478" aria-describedby="caption-attachment-13478" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13478" src="https://www.osradar.com/wp-content/uploads/2019/09/9-4.png" alt="9.- GLPI is correctly installed" width="840" height="401" srcset="https://www.osradar.com/wp-content/uploads/2019/09/9-4.png 840w, https://www.osradar.com/wp-content/uploads/2019/09/9-4-300x143.png 300w, https://www.osradar.com/wp-content/uploads/2019/09/9-4-768x367.png 768w, https://www.osradar.com/wp-content/uploads/2019/09/9-4-696x332.png 696w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-13478" class="wp-caption-text">9.- GLPI is correctly installed</figcaption></figure></p>
<p>To enter the GLPI dashboard use glpi as user and glpi password.</p>
<p><figure id="attachment_13479" aria-describedby="caption-attachment-13479" style="width: 561px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13479" src="https://www.osradar.com/wp-content/uploads/2019/09/10-4.png" alt="10.- GLPI log in" width="561" height="464" srcset="https://www.osradar.com/wp-content/uploads/2019/09/10-4.png 561w, https://www.osradar.com/wp-content/uploads/2019/09/10-4-300x248.png 300w, https://www.osradar.com/wp-content/uploads/2019/09/10-4-508x420.png 508w" sizes="(max-width: 561px) 100vw, 561px" /><figcaption id="caption-attachment-13479" class="wp-caption-text">10.- GLPI log in</figcaption></figure></p>
<p>This is the main screen of the application.</p>
<p><figure id="attachment_13480" aria-describedby="caption-attachment-13480" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13480" src="https://www.osradar.com/wp-content/uploads/2019/09/11-3.png" alt="11.- GLPI dashboard" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2019/09/11-3.png 1366w, https://www.osradar.com/wp-content/uploads/2019/09/11-3-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/09/11-3-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/09/11-3-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/09/11-3-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/09/11-3-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2019/09/11-3-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13480" class="wp-caption-text">11.- GLPI dashboard</figcaption></figure></p>
<h2>Conclusion</h2>
<p>The Glpi is one of those necessary applications in an organization that wants to have everything a competent computer inventory. In addition to incorporating a reporting system of Incidents, ensures prompt attention to users of systems and equipment of the<br />
company.</p>
<p>Please share this post and join <a href="https://t.me/osradar" target="_blank" rel="noopener noreferrer">our Telegram Channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-glpi-centos-rhel-oracle-linux/">How to install GLPI on CentOS 8 / RHEL 8 / Oracle Linux 8 ?</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-glpi-centos-rhel-oracle-linux/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How to install GLPI on Debian 10 Buster?</title>
		<link>https://www.osradar.com/how-to-install-glpi-on-debian-10-buster/</link>
					<comments>https://www.osradar.com/how-to-install-glpi-on-debian-10-buster/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 22 Jul 2019 00:41:20 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[GLPI]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12729</guid>

					<description><![CDATA[<p>As you know Debian 10 Buster is a warranty as an operating system on a server. Since the server is one of the main elements of a network, it is important that the system installed is efficient. In the same way, in this server, there could be many different applications and services. One of them [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-glpi-on-debian-10-buster/">How to install GLPI on Debian 10 Buster?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>As you know Debian 10 Buster is a warranty as an operating system on a server. Since the server is one of the main elements of a network, it is important that the system installed is efficient. In the same way, in this server, there could be many different applications and services. One of them is the <a href="https://glpi-project.org/" rel="noopener">GLPI</a> this software that allows having controlled your computer park. In this post, you will learn how to install GLPI on Debian 10.</p>
<h2>Install GLPI on Debian 10</h2>
<p>First, connect to your server. To do this, connect to your server using the following command:</p>
<pre>:~$ ssh [your-user]@[your-server]</pre>
<p>Once you are on the server we can continue.</p>
<h3>1.- Upgrade the system</h3>
<p>Before starting any installation, it is recommended to upgrade the entire operating system. <strong>To do this you need to be a root user.</strong> If you do not have the password and your user can <a href="https://www.osradar.com/how-to-enable-sudo-on-debian-10/" rel="noopener">use sudo</a>, you can do it like this.</p>
<pre>:~$ sudo apt update &amp;&amp; sudo apt upgrade</pre>
<p>With this, the server will have installed all the security patches that have been published. <strong>This will make Debian 10 Buster more robust and stable.</strong></p>
<h3>2.- Install LAMP on Debian 10</h3>
<p>GLPI is an application built with web technology. That is, it requires a fully functional LAMP server for the application to work.</p>
<p>Then you have to install LAMP in Debian 10. For that, I invite you to read our post.</p>
<p>Read <strong><a href="https://www.osradar.com/how-to-install-debian-10-buster/" rel="noopener">How to install LAMP on Debian 10?</a></strong></p>
<p>The only thing to keep in mind is that you have to install some PHP modules.</p>
<pre>:~$ sudo apt install php7.3 php7.3-curl php7.3-zip php7.3-gd php7.3-intl php-pear php-imagick php7.3-imap php-memcache php7.3-pspell php7.3-recode php7.3-tidy php7.3-xmlrpc php7.3-xsl php7.3-mbstring php-gettext php7.3-ldap php-cas php-apcu libapache2-mod-php7.3 php7.3-mysql</pre>
<h3>3.- Create the MariaDB user and database for GLPI</h3>
<p>Now that you have a working LAMP server, it is time to create a new <a href="https://www.osradar.com/tag/mariadb/" rel="noopener">MariaDB</a> user for GLPI. We do this for security reasons. We also need a dedicated GLPI database.</p>
<p>So in the terminal, run the following:</p>
<pre>:~$ sudo mysql -u root -p</pre>
<p>Then, create the database:</p>
<pre>&gt; CREATE DATABASE glpidb;</pre>
<p>Next, the new user with the password. Then, refresh all privileges.</p>
<pre>&gt; GRANT ALL PRIVILEGES ON glpidb.* TO 'glpiuser'@'localhost' IDENTIFIED BY 'password';
&gt; FLUSH PRIVILEGES;
&gt; EXIT;</pre>
<p><figure id="attachment_12751" aria-describedby="caption-attachment-12751" style="width: 824px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12751" src="https://www.osradar.com/wp-content/uploads/2019/07/1-2.jpeg" alt="1.- Creating the new database and user for GLPI" width="824" height="364" srcset="https://www.osradar.com/wp-content/uploads/2019/07/1-2.jpeg 824w, https://www.osradar.com/wp-content/uploads/2019/07/1-2-300x133.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/07/1-2-768x339.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/07/1-2-696x307.jpeg 696w" sizes="(max-width: 824px) 100vw, 824px" /><figcaption id="caption-attachment-12751" class="wp-caption-text">1.- Creating the new database and user for GLPI</figcaption></figure></p>
<p>Once created the database and the user, we can continue with the following steps.</p>
<h3>4.- Install GLPI on Debian 10</h3>
<p>Now we can download and install GLPI in Debian 10. For that, I will use the wget utility to download the file.</p>
<pre>:~$ cd /tmp/
:~$ wget -c https://github.com/glpi-project/glpi/releases/download/9.4.3/glpi-9.4.3.tgz</pre>
<p><figure id="attachment_12750" aria-describedby="caption-attachment-12750" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12750" src="https://www.osradar.com/wp-content/uploads/2019/07/2-2.jpeg" alt="2.-Download and install GLPI on Debian 10" width="1366" height="390" srcset="https://www.osradar.com/wp-content/uploads/2019/07/2-2.jpeg 1366w, https://www.osradar.com/wp-content/uploads/2019/07/2-2-300x86.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/07/2-2-768x219.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/07/2-2-1024x292.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/07/2-2-696x199.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/07/2-2-1068x305.jpeg 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12750" class="wp-caption-text">2.-Download and install GLPI on Debian 10</figcaption></figure></p>
<p>Then, extract it, move it to <code>/var/www/html/</code> and set the right permissions.</p>
<pre>:~$ tar -xvf glpi-9.4.3.tgz
:~$ sudo mv glpi /var/www/html/
:~$ sudo chmod 755 -R /var/www/html/
:~$ sudo chown www-data:www-data -R /var/www/html/</pre>
<p><figure id="attachment_12752" aria-describedby="caption-attachment-12752" style="width: 534px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12752" src="https://www.osradar.com/wp-content/uploads/2019/07/3-2.jpeg" alt="3.- Install GLPI on Debian 10" width="534" height="100" srcset="https://www.osradar.com/wp-content/uploads/2019/07/3-2.jpeg 534w, https://www.osradar.com/wp-content/uploads/2019/07/3-2-300x56.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/07/3-2-533x100.jpeg 533w" sizes="(max-width: 534px) 100vw, 534px" /><figcaption id="caption-attachment-12752" class="wp-caption-text">3.- Install GLPI on Debian 10</figcaption></figure></p>
<p>After that, you need to create a new VirtualHost for GLPI.</p>
<pre>:~$ sudo nano /etc/apache2/sites-available/glpi.conf</pre>
<p>And add the following:</p>
<pre>&lt;VirtualHost *:80&gt;
     ServerAdmin admin@your_domain.com
     DocumentRoot /var/www/html/glpi
     ServerName your-domain.com

     &lt;Directory /var/www/html/glpi&gt;
          Options FollowSymlinks
          AllowOverride All
          Require all granted
     &lt;/Directory&gt;

     ErrorLog ${APACHE_LOG_DIR}/your-domain.com_error.log
     CustomLog ${APACHE_LOG_DIR}/your-domain.com_access.log combined

&lt;/VirtualHost&gt;</pre>
<p>Save the changes and close the file. Then, enable the new Virtualhost.</p>
<pre>:~$ sudo ln -s /etc/apache2/sites-available/glpi.conf /etc/apache2/sites-enabled/glpi.conf
:~$ sudo a2enmod rewrite
:~$ sudo systemctl restart apache2</pre>
<h3>5.- Complete the installation using the web browser</h3>
<p>Now, you can complete the installation using the web browser. Open your web browser and go to <code>http://your-domain/</code> and you will see this.</p>
<p><figure id="attachment_12753" aria-describedby="caption-attachment-12753" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12753" src="https://www.osradar.com/wp-content/uploads/2019/07/5-5.png" alt="5.- GLPI setup" width="840" height="288" srcset="https://www.osradar.com/wp-content/uploads/2019/07/5-5.png 840w, https://www.osradar.com/wp-content/uploads/2019/07/5-5-300x103.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/5-5-768x263.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/5-5-696x239.png 696w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-12753" class="wp-caption-text">5.- GLPI setup</figcaption></figure></p>
<p>Select the language and press OK. Then, Accept the license terms.</p>
<p><figure id="attachment_12754" aria-describedby="caption-attachment-12754" style="width: 1350px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12754" src="https://www.osradar.com/wp-content/uploads/2019/07/6-4.png" alt="6.- GLPI license terms" width="1350" height="604" srcset="https://www.osradar.com/wp-content/uploads/2019/07/6-4.png 1350w, https://www.osradar.com/wp-content/uploads/2019/07/6-4-300x134.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/6-4-768x344.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/6-4-1024x458.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/6-4-696x311.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/6-4-1068x478.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/6-4-939x420.png 939w" sizes="(max-width: 1350px) 100vw, 1350px" /><figcaption id="caption-attachment-12754" class="wp-caption-text">6.- GLPI license terms</figcaption></figure></p>
<p>Next, select install to begin the process.</p>
<p><figure id="attachment_12755" aria-describedby="caption-attachment-12755" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12755" src="https://www.osradar.com/wp-content/uploads/2019/07/7-3.png" alt="7.- Install GLPI on debian 10" width="1366" height="386" srcset="https://www.osradar.com/wp-content/uploads/2019/07/7-3.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/7-3-300x85.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/7-3-768x217.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/7-3-1024x289.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/7-3-696x197.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/7-3-1068x302.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12755" class="wp-caption-text">7.- Install GLPI on Debian 10</figcaption></figure></p>
<p>The wizard will check the requirements.</p>
<p><figure id="attachment_12756" aria-describedby="caption-attachment-12756" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12756" src="https://www.osradar.com/wp-content/uploads/2019/07/8-1.png" alt="8.- Checking the server packages" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/8-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/8-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/8-1-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/8-1-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/8-1-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/8-1-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/8-1-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12756" class="wp-caption-text">8.- Checking the server packages</figcaption></figure></p>
<p>Then, setup the database connection.</p>
<p><figure id="attachment_12757" aria-describedby="caption-attachment-12757" style="width: 1350px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12757" src="https://www.osradar.com/wp-content/uploads/2019/07/9-1.png" alt="9.- The database parameters" width="1350" height="503" srcset="https://www.osradar.com/wp-content/uploads/2019/07/9-1.png 1350w, https://www.osradar.com/wp-content/uploads/2019/07/9-1-300x112.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/9-1-768x286.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/9-1-1024x382.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/9-1-696x259.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/9-1-1068x398.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/9-1-1127x420.png 1127w" sizes="(max-width: 1350px) 100vw, 1350px" /><figcaption id="caption-attachment-12757" class="wp-caption-text">9.- The database parameters</figcaption></figure></p>
<p>Next, select the database created and start the process.</p>
<p><figure id="attachment_12758" aria-describedby="caption-attachment-12758" style="width: 1350px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12758" src="https://www.osradar.com/wp-content/uploads/2019/07/10-1.png" alt="10.- GLPI database" width="1350" height="459" srcset="https://www.osradar.com/wp-content/uploads/2019/07/10-1.png 1350w, https://www.osradar.com/wp-content/uploads/2019/07/10-1-300x102.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/10-1-768x261.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/10-1-1024x348.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/10-1-696x237.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/10-1-1068x363.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/10-1-1235x420.png 1235w" sizes="(max-width: 1350px) 100vw, 1350px" /><figcaption id="caption-attachment-12758" class="wp-caption-text">10.- GLPI database</figcaption></figure></p>
<p>Next, you will see this.</p>
<p><figure id="attachment_12759" aria-describedby="caption-attachment-12759" style="width: 816px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12759" src="https://www.osradar.com/wp-content/uploads/2019/07/11-1.png" alt="11.- GLPI setup" width="816" height="332" srcset="https://www.osradar.com/wp-content/uploads/2019/07/11-1.png 816w, https://www.osradar.com/wp-content/uploads/2019/07/11-1-300x122.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/11-1-768x312.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/11-1-696x283.png 696w" sizes="(max-width: 816px) 100vw, 816px" /><figcaption id="caption-attachment-12759" class="wp-caption-text">11.- GLPI setup</figcaption></figure></p>
<p>Afterward, a screen will appear asking if you want to collaborate by sending information to the project. Finally, you will see this screen.</p>
<p><figure id="attachment_12760" aria-describedby="caption-attachment-12760" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12760" src="https://www.osradar.com/wp-content/uploads/2019/07/12.png" alt="12.- Everything is OK with GLPI on Debian 10" width="840" height="401" srcset="https://www.osradar.com/wp-content/uploads/2019/07/12.png 840w, https://www.osradar.com/wp-content/uploads/2019/07/12-300x143.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/12-768x367.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/12-696x332.png 696w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-12760" class="wp-caption-text">12.- Everything is OK with GLPI on Debian 10</figcaption></figure></p>
<p>As you can see in the image, there you have the login and password information according to the profiles.</p>
<p>Next, log in.</p>
<p><figure id="attachment_12761" aria-describedby="caption-attachment-12761" style="width: 561px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12761" src="https://www.osradar.com/wp-content/uploads/2019/07/13-1.png" alt="13.- Log in screen" width="561" height="464" srcset="https://www.osradar.com/wp-content/uploads/2019/07/13-1.png 561w, https://www.osradar.com/wp-content/uploads/2019/07/13-1-300x248.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/13-1-508x420.png 508w" sizes="(max-width: 561px) 100vw, 561px" /><figcaption id="caption-attachment-12761" class="wp-caption-text">13.- Login screen</figcaption></figure></p>
<p>And finally, you will see the dashboard.</p>
<p><figure id="attachment_12762" aria-describedby="caption-attachment-12762" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12762" src="https://www.osradar.com/wp-content/uploads/2019/07/14-1.png" alt="14.- GLPI dashboard" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2019/07/14-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/14-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/14-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/14-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/14-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/14-1-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/14-1-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12762" class="wp-caption-text">14.- GLPI dashboard</figcaption></figure></p>
<p>And that is it.</p>
<h2>Conclusion</h2>
<p>In this post, you have learned to install GLPI on Debian 10. GLPI is an application to control the informatics equipment of your company. It is an administrative tool, more than anything. It is created in PHP and uses MariaDB as a database manager.</p>
<p>Please share this post with your friends. And join <a href="https://t.me/osradar" target="_blank" rel="noopener noreferrer">our Telegram channel</a>.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-glpi-on-debian-10-buster/">How to install GLPI on Debian 10 Buster?</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-glpi-on-debian-10-buster/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install GLPI on Ubuntu Server 18.04?</title>
		<link>https://www.osradar.com/how-to-install-glpi-on-ubuntu-server-18-04/</link>
					<comments>https://www.osradar.com/how-to-install-glpi-on-ubuntu-server-18-04/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 28 Sep 2018 11:08:45 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[GLPI]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu server]]></category>
		<category><![CDATA[web application]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=5994</guid>

					<description><![CDATA[<p>GLPi is a web application that helps companies with the management of their information system. Among its features, this solution is able to build an inventory of all resources of the organization and manage administrative and financial tasks. GLPI stands for Gestionnaire Libre de Parc Informatique is a Free Asset and IT Management Software package, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-glpi-on-ubuntu-server-18-04/">How to Install GLPI on Ubuntu Server 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><a href="https://glpi-project.org/" target="_blank" rel="noopener">GLPi</a> is a web application that helps companies with the management of their information system. Among its features, this solution is able to build an inventory of all resources of the organization and manage administrative and financial tasks. GLPI stands for <em>Gestionnaire Libre de Parc Informatique</em> is a Free Asset and IT Management Software package, that provides ITIL Service Desk features, licenses tracking and software auditing. In other words, it&#8217;s a good idea install GLPI in your company.</p>
<p>The tool is build for Apache-PHP-MySQL environments, so you can install it on both windows and linux servers.</p>
<h2>GLPI features:</h2>
<ul>
<li>Inventory of computers, peripherals, network printers and any associated components through an interface, with inventory tools such as: FusionInventory or OCS Inventory.</li>
<li>Data Center Infrastructure Management (DCIM).</li>
<li>Item lifecycle management.</li>
<li>Licenses management (ITIL compliant).</li>
<li>Management of warranty and financial information (purchase order, warranty and extension, damping).</li>
<li>Management of contracts, contacts, documents related to inventory items.</li>
</ul>
<p>In addition, like any open source project, it is possible to modify and examine its source code.</p>
<p>In this article, i will show you how to install GLPI on Ubuntu Server 18.04.</p>
<h2>What you need</h2>
<p>The installation of GLPI is really simple, but you must have a previous knowledge in the use of the terminal. Besides installing LAMP stack and of course a computer with Ubuntu Server 18.04.</p>
<p>Let&#8217;s get to work.</p>
<h1>1. Upgrade the system</h1>
<p>First you have to update the system. Doing this will ensure you have the latest package news, as well as the latest security patches. Open a terminal and run.</p>
<pre class="">:~$ sudo -i</pre>
<p>When you enter the password, you will be root. Then run:</p>
<pre class="">:~# apt update &amp;&amp; apt upgrade</pre>
<p><figure id="attachment_6075" aria-describedby="caption-attachment-6075" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6075" src="https://www.osradar.com/wp-content/uploads/2018/09/1-19.png" alt="1.- Upgrading the system" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/09/1-19.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/1-19-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/1-19-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/1-19-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/1-19-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/1-19-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/1-19-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6075" class="wp-caption-text">1.- Upgrading the system</figcaption></figure></p>
<p>And with this done, you&#8217;ll have your system up to date.</p>
<h2>2. Install LAMP Stack</h2>
<p>GLPI is a web-based application, i.e. you need an installed and fully functional web server. For this tutorial, I will use apache2. It is the most popular web server and is available easily and directly from the Ubuntu repositories. Run:</p>
<pre class="">:~# apt install apache2</pre>
<p><figure id="attachment_6076" aria-describedby="caption-attachment-6076" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6076" src="https://www.osradar.com/wp-content/uploads/2018/09/2-18.png" alt="2.- Installing apache" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/09/2-18.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/2-18-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/2-18-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/2-18-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/2-18-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/2-18-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/2-18-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6076" class="wp-caption-text">2.- Installing apache</figcaption></figure></p>
<p>Now enable it to start the service as soon as you load the system and initialize the service as well.</p>
<pre class="">:~# systemctl enable apache2
:~# systemctl start apache2</pre>
<p><figure id="attachment_6077" aria-describedby="caption-attachment-6077" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6077" src="https://www.osradar.com/wp-content/uploads/2018/09/3-18.png" alt="3.- Enabling apache service" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/09/3-18.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/3-18-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/3-18-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/3-18-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/3-18-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/3-18-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/3-18-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6077" class="wp-caption-text">3.- Enabling apache service</figcaption></figure></p>
<p>Now if you go to your web browser and access <code>http://IP_SERVER</code> you will see this.</p>
<p><figure id="attachment_6078" aria-describedby="caption-attachment-6078" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6078" src="https://www.osradar.com/wp-content/uploads/2018/09/4-23.png" alt="4.- Apache Ubuntu Default page" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2018/09/4-23.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/4-23-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/4-23-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/4-23-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/4-23-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/4-23-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/4-23-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6078" class="wp-caption-text">4.- Apache Ubuntu Default page</figcaption></figure></p>
<p>It&#8217;s PHP&#8217;s turn.</p>
<p>PHP is a programming language in which GLPI is built. You have to install it to run it.</p>
<pre class="">:~# apt install php7.2 php7.2-curl php7.2-gd php7.2-intl php-pear php-imagick php7.2-imap php-memcache php7.2-pspell php7.2-recode php7.2-tidy php7.2-xmlrpc php7.2-xsl php7.2-mbstring php-gettext php7.2-ldap php-cas php7.2-apcu libapache2-mod-php7.2 php7.2-mysql</pre>
<p><figure id="attachment_6079" aria-describedby="caption-attachment-6079" style="width: 1366px" class="wp-caption aligncenter"><img loading="lazy" class="size-full wp-image-6079" src="https://www.osradar.com/wp-content/uploads/2018/09/5-19.png" alt="5.- Installing PHP from ubuntu official repositories " width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/09/5-19.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/5-19-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/5-19-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/5-19-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/5-19-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/5-19-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/5-19-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6079" class="wp-caption-text">5.- Installing PHP from ubuntu official repositories</figcaption></figure></p>
<p>Finally install MariaDB. Type on a terminal:</p>
<pre class="">:~# apt install mariadb-server</pre>
<p><figure id="attachment_6080" aria-describedby="caption-attachment-6080" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6080" src="https://www.osradar.com/wp-content/uploads/2018/09/6-16.png" alt="6.- Installing MariaDB" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/09/6-16.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/6-16-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/6-16-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/6-16-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/6-16-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/6-16-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/6-16-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6080" class="wp-caption-text">6.- Installing MariaDB</figcaption></figure></p>
<p>Now run the configuration script to define password and other options.</p>
<pre class="">:~# mysql_secure_installation</pre>
<p><figure id="attachment_6082" aria-describedby="caption-attachment-6082" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6082" src="https://www.osradar.com/wp-content/uploads/2018/09/7-14.png" alt="7.- mysql_secure_installation" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/09/7-14.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/7-14-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/7-14-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/7-14-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/7-14-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/7-14-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/7-14-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6082" class="wp-caption-text">7.- mysql_secure_installation</figcaption></figure></p>
<p>After defining the password, you will be asked about other things. Answer <strong>Y N Y Y</strong>.</p>
<p>Now you have to create a database dedicated to GLPI and a new MariaDB user.</p>
<pre class="">:~# mysql -u root -p</pre>
<p>And then creates the database and the new user.</p>
<pre class="">CREATE DATABASE glpidb;
USE glpidb;
GRANT ALL PRIVILEGES ON glpidb.* TO 'glpiuser'@'localhost' IDENTIFIED BY 'glpipss';
FLUSH PRIVILEGES;
exit;</pre>
<p>Of course, you&#8217;re free to change the names to whatever you want.</p>
<p><figure id="attachment_6083" aria-describedby="caption-attachment-6083" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6083" src="https://www.osradar.com/wp-content/uploads/2018/09/8-13.png" alt="8.- Creating a database for glpi" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/09/8-13.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/8-13-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/8-13-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/8-13-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/8-13-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/8-13-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/8-13-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6083" class="wp-caption-text">8.- Creating a database for glpi</figcaption></figure></p>
<h2>3. Download and install GLPI</h2>
<p>Now it&#8217;s time to install GLPI. First, download it.</p>
<pre class="">:~# cd /tmp/
wget https://github.com/glpi-project/glpi/releases/download/9.3.1/glpi-9.3.1.tgz</pre>
<p><figure id="attachment_6084" aria-describedby="caption-attachment-6084" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6084" src="https://www.osradar.com/wp-content/uploads/2018/09/9-14.png" alt="9.- Download and install GLPI" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/09/9-14.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/9-14-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/9-14-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/9-14-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/9-14-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/9-14-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/9-14-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6084" class="wp-caption-text">9.- Download and install GLPI</figcaption></figure></p>
<p>Afterwards, you have to extract it, move it to <code>/var/www/html</code> and assign permissions to it.</p>
<pre class="">:~# tar -xvf glpi-9.3.1.tgz
:~# mv glpi /var/www/html/
:~# chmod 755 -R /var/www/html/
:~# chown www-data:www-data -R /var/www/html/</pre>
<p><figure id="attachment_6085" aria-describedby="caption-attachment-6085" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6085" src="https://www.osradar.com/wp-content/uploads/2018/09/10-12.png" alt="10.- Installing GLPI" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/09/10-12.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/10-12-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/10-12-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/10-12-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/10-12-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/10-12-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/10-12-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6085" class="wp-caption-text">10.- Installing GLPI</figcaption></figure></p>
<p>Now go to your browser and access GLPI to complete the installation <code>http://IP_SERVER/glpi</code></p>
<p><figure id="attachment_6086" aria-describedby="caption-attachment-6086" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6086" src="https://www.osradar.com/wp-content/uploads/2018/09/11-11.png" alt="11.- Completing GLPI setup" width="840" height="287" srcset="https://www.osradar.com/wp-content/uploads/2018/09/11-11.png 840w, https://www.osradar.com/wp-content/uploads/2018/09/11-11-300x103.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/11-11-768x262.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/11-11-696x238.png 696w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-6086" class="wp-caption-text">11.- Completing GLPI setup</figcaption></figure></p>
<p>Then you have to accept the license terms.</p>
<p><figure id="attachment_6087" aria-describedby="caption-attachment-6087" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6087" src="https://www.osradar.com/wp-content/uploads/2018/09/12-9.png" alt="12.- License terms" width="840" height="585" srcset="https://www.osradar.com/wp-content/uploads/2018/09/12-9.png 840w, https://www.osradar.com/wp-content/uploads/2018/09/12-9-300x209.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/12-9-768x535.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/12-9-100x70.png 100w, https://www.osradar.com/wp-content/uploads/2018/09/12-9-696x485.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/12-9-603x420.png 603w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-6087" class="wp-caption-text">12.- License terms</figcaption></figure></p>
<p>On the next screen you will be asked if it is an installation or an upgrade.</p>
<p><figure id="attachment_6088" aria-describedby="caption-attachment-6088" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6088" src="https://www.osradar.com/wp-content/uploads/2018/09/13-7.png" alt="13.- Install GLPI" width="840" height="345" srcset="https://www.osradar.com/wp-content/uploads/2018/09/13-7.png 840w, https://www.osradar.com/wp-content/uploads/2018/09/13-7-300x123.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/13-7-768x315.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/13-7-696x286.png 696w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-6088" class="wp-caption-text">13.- Install GLPI</figcaption></figure></p>
<p>Afterwards, the system will make an inspection of the dependencies in need.</p>
<p><figure id="attachment_6089" aria-describedby="caption-attachment-6089" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6089" src="https://www.osradar.com/wp-content/uploads/2018/09/14-4.png" alt="14.- Install GLPI on the system" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2018/09/14-4.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/14-4-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/14-4-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/14-4-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/14-4-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/14-4-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/14-4-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6089" class="wp-caption-text">14.- Install GLPI on the system</figcaption></figure></p>
<p>On the next screen, you will be prompted to enter the MariaDB for GLPI information.</p>
<p><figure id="attachment_6090" aria-describedby="caption-attachment-6090" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6090" src="https://www.osradar.com/wp-content/uploads/2018/09/15-3.png" alt="15.- MariaDB credentials" width="840" height="501" srcset="https://www.osradar.com/wp-content/uploads/2018/09/15-3.png 840w, https://www.osradar.com/wp-content/uploads/2018/09/15-3-300x179.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/15-3-768x458.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/15-3-696x415.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/15-3-704x420.png 704w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-6090" class="wp-caption-text">15.- MariaDB credentials</figcaption></figure></p>
<p>And at the end, you have select the database created.</p>
<p><figure id="attachment_6091" aria-describedby="caption-attachment-6091" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6091" src="https://www.osradar.com/wp-content/uploads/2018/09/16-2.png" alt="16.- Completing the installation" width="840" height="452" srcset="https://www.osradar.com/wp-content/uploads/2018/09/16-2.png 840w, https://www.osradar.com/wp-content/uploads/2018/09/16-2-300x161.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/16-2-768x413.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/16-2-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/16-2-781x420.png 781w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-6091" class="wp-caption-text">16.- Completing the installation</figcaption></figure></p>
<p>It will then initialize the database.</p>
<p><figure id="attachment_6092" aria-describedby="caption-attachment-6092" style="width: 816px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6092" src="https://www.osradar.com/wp-content/uploads/2018/09/17-2.png" alt="17.- Initialization of the database" width="816" height="332" srcset="https://www.osradar.com/wp-content/uploads/2018/09/17-2.png 816w, https://www.osradar.com/wp-content/uploads/2018/09/17-2-300x122.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/17-2-768x312.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/17-2-696x283.png 696w" sizes="(max-width: 816px) 100vw, 816px" /><figcaption id="caption-attachment-6092" class="wp-caption-text">17.- Initialization of the database</figcaption></figure></p>
<p>The following screens show that the installation is on the right way.</p>
<p><figure id="attachment_6093" aria-describedby="caption-attachment-6093" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6093" src="https://www.osradar.com/wp-content/uploads/2018/09/18-1.png" alt="18.- Collecting data for GLPI" width="840" height="547" srcset="https://www.osradar.com/wp-content/uploads/2018/09/18-1.png 840w, https://www.osradar.com/wp-content/uploads/2018/09/18-1-300x195.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/18-1-768x500.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/18-1-696x453.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/18-1-645x420.png 645w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-6093" class="wp-caption-text">18.- Collecting data for GLPI</figcaption></figure></p>
<p><figure id="attachment_6094" aria-describedby="caption-attachment-6094" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6094" src="https://www.osradar.com/wp-content/uploads/2018/09/19.png" alt="19.- Installing GLPI" width="840" height="425" srcset="https://www.osradar.com/wp-content/uploads/2018/09/19.png 840w, https://www.osradar.com/wp-content/uploads/2018/09/19-300x152.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/19-768x389.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/19-696x352.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/19-830x420.png 830w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-6094" class="wp-caption-text">19.- Installing GLPI</figcaption></figure></p>
<p><figure id="attachment_6095" aria-describedby="caption-attachment-6095" style="width: 840px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6095" src="https://www.osradar.com/wp-content/uploads/2018/09/20.png" alt="20.- The installation is finished" width="840" height="401" srcset="https://www.osradar.com/wp-content/uploads/2018/09/20.png 840w, https://www.osradar.com/wp-content/uploads/2018/09/20-300x143.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/20-768x367.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/20-696x332.png 696w" sizes="(max-width: 840px) 100vw, 840px" /><figcaption id="caption-attachment-6095" class="wp-caption-text">20.- The installation is finished</figcaption></figure></p>
<p>And finally you will see the log in screen.</p>
<p><figure id="attachment_6096" aria-describedby="caption-attachment-6096" style="width: 561px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6096" src="https://www.osradar.com/wp-content/uploads/2018/09/21.png" alt="21.- GLPI log in screen" width="561" height="464" srcset="https://www.osradar.com/wp-content/uploads/2018/09/21.png 561w, https://www.osradar.com/wp-content/uploads/2018/09/21-300x248.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/21-508x420.png 508w" sizes="(max-width: 561px) 100vw, 561px" /><figcaption id="caption-attachment-6096" class="wp-caption-text">21.- GLPI log in screen</figcaption></figure></p>
<p>When you enter the password, you&#8217;ll see something like this.</p>
<p><figure id="attachment_6097" aria-describedby="caption-attachment-6097" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-6097" src="https://www.osradar.com/wp-content/uploads/2018/09/22.png" alt="22.- Main screen of glpi" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2018/09/22.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/22-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/22-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/22-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/22-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/22-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/22-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-6097" class="wp-caption-text">22.- Main screen of glpi</figcaption></figure></p>
<h2>Conclusion</h2>
<p>GLPI is a great system that allows us to obtain computer solutions for our company. You can modify and take inventory, tracking incidents and so on.</p>
<p>We want to know about you, have you used GLPI? How did you like the installation?</p>
<p>Please share this article through your social networks</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-glpi-on-ubuntu-server-18-04/">How to Install GLPI on Ubuntu Server 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-glpi-on-ubuntu-server-18-04/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>How to install GLPI on CentOS 7?</title>
		<link>https://www.osradar.com/how-to-install-glpi-on-centos-7/</link>
					<comments>https://www.osradar.com/how-to-install-glpi-on-centos-7/#comments</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Tue, 19 Jun 2018 17:17:41 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[GLPI]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=4196</guid>

					<description><![CDATA[<p>We are in the era of process automation with the aim of minimizing costs and maximizing the efficiency with which they are carried out. In computer science, control of equipment assets is vital for a company and especially if it relies heavily on centralized systems. With the goal of solving part of these problems there [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-glpi-on-centos-7/">How to install GLPI on CentOS 7?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>We are in the era of process automation with the aim of minimizing costs and maximizing the efficiency with which they are carried out.</p>
<p>In computer science, control of equipment assets is vital for a company and especially if it relies heavily on centralized systems. With the goal of solving part of these problems there is GLPi.</p>
<p><a href="http://glpi-project.org/"><strong>GLPi</strong></a> is a free IT service management solution, an incident tracking system and a service desk solution. Published in PHP and distributed under a GPL license.</p>
<h2>GLPI more than just a tool</h2>
<p>The tool is developed for Apache-PHP-MySQL environments, so it can be installed on both Windows and Linux servers and its easy installation and management allows managing all the support and maintenance of a company in a quick and easy way, so the deployment and implementation are quite small.</p>
<p>&nbsp;</p>
<h2>Installing GLPI Prerequisites</h2>
<p>As mentioned above, GLPI works with a LAMP server. The first thing we need to install is Apache:</p>
<p><strong>              sudo -i</strong></p>
<p><figure id="attachment_4197" aria-describedby="caption-attachment-4197" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4197" src="https://www.osradar.com/wp-content/uploads/2018/06/1-14.png" alt="1.- Getting root privileges" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/1-14.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/1-14-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/1-14-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/1-14-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/1-14-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/1-14-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/1-14-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4197" class="wp-caption-text">1.- Getting root privileges</figcaption></figure></p>
<p>When you enter the password, you will be a root user.</p>
<p>First of all we must have the system updated and the SELinux security module disabled:</p>
<p><strong>             nano /etc/selinux/config</strong></p>
<p>To avoid confusion, the first editable line should be modified, leaving it this way:</p>
<p><strong>             SELINUX=disabled</strong></p>
<p>&nbsp;</p>
<p><figure id="attachment_4228" aria-describedby="caption-attachment-4228" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4228" src="https://www.osradar.com/wp-content/uploads/2018/06/88-1.png" alt="0.-Editing selinux conf" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/88-1.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/88-1-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/88-1-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/88-1-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/88-1-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/88-1-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/88-1-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4228" class="wp-caption-text">0.-Editing selinux conf</figcaption></figure></p>
<p><strong>Or  Allow Http  on firewalld</strong></p>
<pre>firewall-cmd --add-service=http --permanent
firewall-cmd --reload</pre>
<p>Then we will proceed to the installation:</p>
<p><strong>            yum install httpd</strong></p>
<p><figure id="attachment_4198" aria-describedby="caption-attachment-4198" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4198" src="https://www.osradar.com/wp-content/uploads/2018/06/2-15.png" alt="2.- Installing apache" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/2-15.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/2-15-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/2-15-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/2-15-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/2-15-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/2-15-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/2-15-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4198" class="wp-caption-text">2.- Installing apache</figcaption></figure></p>
<p>Then we enable it to start the service automatically.</p>
<p><strong>              systemctl enable httpd.service</strong></p>
<p><figure id="attachment_4199" aria-describedby="caption-attachment-4199" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4199" src="https://www.osradar.com/wp-content/uploads/2018/06/3-15.png" alt="3.- Enabling apache service" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/3-15.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/3-15-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/3-15-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/3-15-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/3-15-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/3-15-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/3-15-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4199" class="wp-caption-text">3.- Enabling apache service</figcaption></figure></p>
<p>The next step is to start the apache service and go to the browser to test that the server is running.</p>
<p><strong>             systemctl start httpd.service</strong></p>
<p><figure id="attachment_4200" aria-describedby="caption-attachment-4200" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4200" src="https://www.osradar.com/wp-content/uploads/2018/06/4-13.png" alt="4.- Starting apache service" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/4-13.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/4-13-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/4-13-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/4-13-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/4-13-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/4-13-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/4-13-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4200" class="wp-caption-text">4.- Starting apache service</figcaption></figure></p>
<p>In our web browser we go to the ip address of the server:</p>
<p><strong>            http://ip_server</strong></p>
<p>If we see this message, then we&#8217;re good.</p>
<p><figure id="attachment_4201" aria-describedby="caption-attachment-4201" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4201" src="https://www.osradar.com/wp-content/uploads/2018/06/5-14.png" alt="5.-Testing apache" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/06/5-14.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/5-14-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/5-14-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/5-14-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/5-14-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/5-14-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/5-14-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4201" class="wp-caption-text">5.-Testing apache</figcaption></figure></p>
<h2>Installing MariaDB and PHP</h2>
<p>Now it&#8217;s MariaDB&#8217;s turn:</p>
<p><strong>             yum install maridb-server mariadb</strong></p>
<p><figure id="attachment_4202" aria-describedby="caption-attachment-4202" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4202" src="https://www.osradar.com/wp-content/uploads/2018/06/6-14.png" alt="6.- Installing MariaDB" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/6-14.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/6-14-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/6-14-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/6-14-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/6-14-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/6-14-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/6-14-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4202" class="wp-caption-text">6.- Installing MariaDB</figcaption></figure></p>
<p>After that, we have to enable the service and start it.</p>
<p><strong>             systemctl enable mariadb.service</strong></p>
<p><strong>             systemctl start mariadb.service</strong></p>
<p><figure id="attachment_4203" aria-describedby="caption-attachment-4203" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4203" src="https://www.osradar.com/wp-content/uploads/2018/06/7-13.png" alt="7.- Starting mariadb service" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/7-13.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/7-13-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/7-13-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/7-13-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/7-13-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/7-13-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/7-13-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4203" class="wp-caption-text">7.- Starting mariadb service</figcaption></figure></p>
<p>Next, we have to execute the configuration script of MariaDB. We say Y,N,Y,Y.</p>
<p><strong>             mysql_secure_installation</strong></p>
<p><figure id="attachment_4204" aria-describedby="caption-attachment-4204" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4204" src="https://www.osradar.com/wp-content/uploads/2018/06/8-11.png" alt="8.- Mysql_secure_installation" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/8-11.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/8-11-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/8-11-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/8-11-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/8-11-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/8-11-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/8-11-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4204" class="wp-caption-text">8.- Mysql_secure_installation</figcaption></figure></p>
<p>GLPI requires a more up-to-date version of php than the one in the official CentOS repositories. Then we must add two repositories: EPEL and REMI.</p>
<p><strong>              wget http://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm</strong></p>
<p>And:</p>
<p><strong>             wget http://rpms.famillecollet.com/enterprise/remi-release-7.rpm</strong></p>
<p><figure id="attachment_4205" aria-describedby="caption-attachment-4205" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4205" src="https://www.osradar.com/wp-content/uploads/2018/06/9-9.png" alt="9.-Adding additionals repos" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/9-9.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/9-9-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/9-9-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/9-9-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/9-9-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/9-9-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/9-9-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4205" class="wp-caption-text">9.-Adding additionals repos</figcaption></figure></p>
<p>Next we proceed to install both packages.</p>
<p><strong>               rpm -Uvh remi-release-7*.rpm epel-release-7*.rpm</strong></p>
<p><figure id="attachment_4206" aria-describedby="caption-attachment-4206" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4206" src="https://www.osradar.com/wp-content/uploads/2018/06/10-8.png" alt="10.- Adding repositories" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/10-8.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/10-8-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/10-8-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/10-8-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/10-8-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/10-8-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/10-8-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4206" class="wp-caption-text">10.- Adding repositories</figcaption></figure></p>
<p><em>Note: If we already have EPEL added, then skip the installation of that package.</em></p>
<p>Now we must enable the REMI repo that by default is not.</p>
<p><strong>             yum install yum-utils</strong></p>
<p>Next we enable the php 7.2 repository:</p>
<p><strong>             yum-config-manager &#8211;enable remi-php72</strong></p>
<p><figure id="attachment_4209" aria-describedby="caption-attachment-4209" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4209" src="https://www.osradar.com/wp-content/uploads/2018/06/14-5.png" alt="14.-Enabling PHP7.2 repo" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/14-5.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/14-5-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/14-5-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/14-5-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/14-5-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/14-5-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/14-5-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4209" class="wp-caption-text">11.-Enabling PHP7.2 repo</figcaption></figure></p>
<p>Next we can install PHP</p>
<p><strong>              yum install php php-gd php-mysql php-mcrypt php-apcu php-xmlrpc php-pecl-zendopcache php-ldap php-imap php-mbstring php-simplexml php-xml</strong></p>
<p><figure id="attachment_4210" aria-describedby="caption-attachment-4210" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4210" src="https://www.osradar.com/wp-content/uploads/2018/06/15-5.png" alt="15.- Installing php" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/15-5.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/15-5-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/15-5-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/15-5-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/15-5-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/15-5-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/15-5-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4210" class="wp-caption-text">12.- Installing php</figcaption></figure></p>
<p>Then we&#8217;ll enable ports 80 and 443 in the firewall.</p>
<p><strong>           firewall-cmd &#8211;permanent &#8211;zone=public &#8211;add-service=http</strong></p>
<p><strong>           firewall-cmd &#8211;permanent &#8211;zone=public &#8211;add-service=https</strong></p>
<p>And Finally:</p>
<p><strong>          firewall-cmd &#8211;reload</strong></p>
<p><figure id="attachment_4211" aria-describedby="caption-attachment-4211" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4211" src="https://www.osradar.com/wp-content/uploads/2018/06/16-5.png" alt="16.- Enabling Ports" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/16-5.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/16-5-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/16-5-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/16-5-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/16-5-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/16-5-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/16-5-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4211" class="wp-caption-text">13.- Enabling Ports</figcaption></figure></p>
<p>In order for it all to take effect, we must restart the Apache service:</p>
<p><strong>systemctl restart httpd.service</strong></p>
<h2>Downloading and installing GLPI</h2>
<p>From the <a href="https://github.com/glpi-project/glpi/releases/">project&#8217;s GitHub website</a> we can download the latest stable version and then write the following on the terminal</p>
<p><strong>              wget https://github.com/glpi-project/glpi/releases/download/9.2.3/glpi-9.2.3.tgz</strong></p>
<p><figure id="attachment_4212" aria-describedby="caption-attachment-4212" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4212" src="https://www.osradar.com/wp-content/uploads/2018/06/17-4.png" alt="17.- Downloading GLPI" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/17-4.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/17-4-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/17-4-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/17-4-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/17-4-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/17-4-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/17-4-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4212" class="wp-caption-text">14.- Downloading GLPI</figcaption></figure></p>
<p>We move it to the apache directory /var/wwww/html/</p>
<p><strong>             mv glpi-9.2.3.tgz /var/www/html/</strong></p>
<p><figure id="attachment_4213" aria-describedby="caption-attachment-4213" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4213" src="https://www.osradar.com/wp-content/uploads/2018/06/18-4.png" alt="18.- Moving glpi to apache directory" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/18-4.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/18-4-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/18-4-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/18-4-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/18-4-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/18-4-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/18-4-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4213" class="wp-caption-text">15.- Moving glpi to apache directory</figcaption></figure></p>
<p><strong>cd /var/www/html/</strong></p>
<p>Now we decompress it:</p>
<p><strong>            tar xvf /var/www/html/glpi-9.2.3.tgz</strong></p>
<p><figure id="attachment_4214" aria-describedby="caption-attachment-4214" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4214" src="https://www.osradar.com/wp-content/uploads/2018/06/19-5.png" alt="19.- Decompressing the glpi file" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/19-5.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/19-5-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/19-5-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/19-5-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/19-5-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/19-5-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/19-5-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4214" class="wp-caption-text">16.- Decompressing the glpi file</figcaption></figure></p>
<p>Then, we must change the permissions and the owner of the directory:</p>
<p><strong>             chmod 755 /var/www/html/glpi -R</strong></p>
<p>And:</p>
<p><strong>             chown apache:apache /var/www/html/glpi -R</strong></p>
<p><figure id="attachment_4215" aria-describedby="caption-attachment-4215" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4215" src="https://www.osradar.com/wp-content/uploads/2018/06/20-5.png" alt="20.- Setting owner" width="1368" height="738" srcset="https://www.osradar.com/wp-content/uploads/2018/06/20-5.png 1368w, https://www.osradar.com/wp-content/uploads/2018/06/20-5-300x162.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/20-5-768x414.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/20-5-1024x552.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/20-5-696x375.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/20-5-1068x576.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/20-5-779x420.png 779w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-4215" class="wp-caption-text">17.- Setting owner</figcaption></figure></p>
<h2>Completing the installation from the browser</h2>
<p>We must access from the browser to complete the initial configuration of the GLPI.</p>
<p><strong>            http://IP_SERVER/glpi</strong></p>
<p>And we&#8217;ll see this:</p>
<p><figure id="attachment_4216" aria-describedby="caption-attachment-4216" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4216" src="https://www.osradar.com/wp-content/uploads/2018/06/21-5.png" alt="21.- GLPI" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/06/21-5.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/21-5-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/21-5-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/21-5-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/21-5-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/21-5-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/21-5-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4216" class="wp-caption-text">18.- GLPI</figcaption></figure></p>
<p>Choose the installation language and click on the ok button.</p>
<p>He then refers us to the license agreement. Accept and click on continue button</p>
<p><figure id="attachment_4217" aria-describedby="caption-attachment-4217" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4217" src="https://www.osradar.com/wp-content/uploads/2018/06/22-4.png" alt="license terms" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/06/22-4.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/22-4-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/22-4-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/22-4-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/22-4-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/22-4-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/22-4-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4217" class="wp-caption-text">19.-License terms</figcaption></figure></p>
<p>Then it shows us two options to make an installation from scratch (our case) or to upgrade from a previous version.</p>
<p><figure id="attachment_4218" aria-describedby="caption-attachment-4218" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4218" src="https://www.osradar.com/wp-content/uploads/2018/06/23-3.png" alt="20.-Installing glpi" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/06/23-3.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/23-3-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/23-3-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/23-3-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/23-3-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/23-3-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/23-3-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4218" class="wp-caption-text">20.-Installing glpi</figcaption></figure></p>
<p>Subsequently give us a summary of compatibility with our system, review and click on next. If there is an error, it is convenient to fix it. If you have followed all these steps, you should get perfect results.</p>
<p><figure id="attachment_4219" aria-describedby="caption-attachment-4219" style="width: 745px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4219" src="https://www.osradar.com/wp-content/uploads/2018/06/24-3.png" alt="21.- Glpi setup" width="745" height="575" srcset="https://www.osradar.com/wp-content/uploads/2018/06/24-3.png 745w, https://www.osradar.com/wp-content/uploads/2018/06/24-3-300x232.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/24-3-696x537.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/24-3-544x420.png 544w" sizes="(max-width: 745px) 100vw, 745px" /><figcaption id="caption-attachment-4219" class="wp-caption-text">21.- Glpi setup</figcaption></figure></p>
<p>The next step is to enter the connection parameters for MariaDB:</p>
<p><figure id="attachment_4220" aria-describedby="caption-attachment-4220" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4220" src="https://www.osradar.com/wp-content/uploads/2018/06/25-1.png" alt="22.- MariaDB parameters" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/06/25-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/25-1-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/25-1-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/25-1-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/25-1-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/25-1-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/25-1-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4220" class="wp-caption-text">22.- MariaDB parameters</figcaption></figure></p>
<p>Click on continue button. And now we are going to test the mariadb connection <strong>creating a new database for glpi</strong>. For example glpi.</p>
<p><figure id="attachment_4221" aria-describedby="caption-attachment-4221" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4221" src="https://www.osradar.com/wp-content/uploads/2018/06/26-1.png" alt="23.- testing mariadb instance" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/06/26-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/26-1-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/26-1-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/26-1-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/26-1-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/26-1-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/26-1-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4221" class="wp-caption-text">23.- testing mariadb instance</figcaption></figure></p>
<p>And we&#8217;ll see this:</p>
<p><figure id="attachment_4222" aria-describedby="caption-attachment-4222" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4222" src="https://www.osradar.com/wp-content/uploads/2018/06/27.png" alt="24.-Database created!" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/06/27.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/27-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/27-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/27-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/27-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/27-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/27-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4222" class="wp-caption-text">24.-Database created!</figcaption></figure></p>
<p>The next screen is to send data to GLPI to help with its maintenance.</p>
<p><figure id="attachment_4223" aria-describedby="caption-attachment-4223" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4223" src="https://www.osradar.com/wp-content/uploads/2018/06/28.png" alt="25.-Send &quot;usage statistics&quot;" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/06/28.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/28-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/28-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/28-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/28-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/28-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/28-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4223" class="wp-caption-text">25.-Send &#8220;usage statistics&#8221;</figcaption></figure></p>
<p>And Finally: installation finished</p>
<p><figure id="attachment_4224" aria-describedby="caption-attachment-4224" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4224" src="https://www.osradar.com/wp-content/uploads/2018/06/29.png" alt="26.- Installation finished" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/06/29.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/29-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/29-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/29-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/29-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/29-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/29-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4224" class="wp-caption-text">26.- Installation finished</figcaption></figure></p>
<p>And we can use it now. The first screen to use is the login screen. <strong>glpi/glpi </strong>to enter as admin user.</p>
<p><figure id="attachment_4225" aria-describedby="caption-attachment-4225" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4225" src="https://www.osradar.com/wp-content/uploads/2018/06/30.png" alt="27.- login screen" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/06/30.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/30-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/30-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/30-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/30-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/30-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/30-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4225" class="wp-caption-text">27.- login screen</figcaption></figure></p>
<p>Finally, we have the main screen of the GLPI.</p>
<p><figure id="attachment_4226" aria-describedby="caption-attachment-4226" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-4226" src="https://www.osradar.com/wp-content/uploads/2018/06/31.png" alt="28.- GLPI main screen" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/06/31.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/31-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/31-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/31-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/31-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/31-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/31-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-4226" class="wp-caption-text">28.- GLPI main screen</figcaption></figure></p>
<p>GLPI is a great application for IT organizations that can be extended thanks to plugins and a large development team that keeps the program active.</p>
<p>Please post this article on your social networks.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-glpi-on-centos-7/">How to install GLPI on CentOS 7?</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-glpi-on-centos-7/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
