<?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>serverblock Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/serverblock/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sat, 07 Sep 2019 15:34:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.13</generator>
	<item>
		<title>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>
<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>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>
<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>Then, choose the language of the installation and accept the license terms.</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>Then, you can either update a previous installation or start a clean one. Choose the install option.</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>Then, the installer will check the server for any problems.</p>
<p>&nbsp;</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>Now, you will have to write the MariaDB credentials. Click on the Next option.</p>
<p>&nbsp;</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>Then, if the connection to the database has been successful, you will see the following:</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>Finally, if everything went well, you will see a message like this:</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>To enter the GLPI dashboard use glpi as user and glpi password.</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>This is the main screen of the application.</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>
<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>
	</channel>
</rss>
