<?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>Arquivos glpi - Remontti</title>
	<atom:link href="https://blog.remontti.com.br/tag/glpi/feed" rel="self" type="application/rss+xml" />
	<link>https://blog.remontti.com.br/tag/glpi</link>
	<description>rudimar@remontti</description>
	<lastBuildDate>Fri, 15 Jul 2022 15:53:17 +0000</lastBuildDate>
	<language>pt-BR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.remontti.com.br/wp-content/uploads/2024/09/icone-rr-80x80.png</url>
	<title>Arquivos glpi - Remontti</title>
	<link>https://blog.remontti.com.br/tag/glpi</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Instalação do GLPi &#8211; Software de gerenciamento de ativos e TI gratuito</title>
		<link>https://blog.remontti.com.br/1528</link>
					<comments>https://blog.remontti.com.br/1528#comments</comments>
		
		<dc:creator><![CDATA[Rudimar Remontti]]></dc:creator>
		<pubDate>Sat, 10 Sep 2016 19:59:42 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutoriais]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[glpi]]></category>
		<category><![CDATA[helpdesk]]></category>
		<category><![CDATA[passo a passo]]></category>
		<guid isPermaLink="false">http://blog.remontti.com.br/?p=1528</guid>

					<description><![CDATA[<p>GLPI é uma solução web Open-source completa para gestão de ativos e helpdesk. O mesmo gerência todos os seus problemas de inventário de ativos/hardwares e software e suporte ao usuário(helpdesk). É uma excelente ferramenta&#46;&#46;&#46;</p>
<p>O post <a href="https://blog.remontti.com.br/1528">Instalação do GLPi &#8211; Software de gerenciamento de ativos e TI gratuito</a> apareceu primeiro em <a href="https://blog.remontti.com.br">Remontti</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img fetchpriority="high" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_13.png" alt="" width="1852" height="962" class="alignnone size-full wp-image-6714" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_13.png 1852w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_13-300x156.png 300w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_13-1024x532.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_13-768x399.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_13-1536x798.png 1536w" sizes="(max-width: 1852px) 100vw, 1852px" /></p>
<p>GLPI é uma solução web Open-source completa para gestão de ativos e helpdesk. O mesmo gerência todos os seus problemas de inventário de ativos/hardwares e software e suporte ao usuário(helpdesk). É uma excelente ferramenta para gestão de TI, com integração com OCS Inventory. Este software open source é escrito em PHP e distribuído sob licença GPL</p>
<p>Como uma tecnologia de código aberto, qualquer pessoa pode executar, modificar ou desenvolver o código. Desta forma, contribuidores podem participar na evolução do software, cometendo livre e open source módulos suplementares no GitHub.</p>
<p>Distribuição utilizada: <a href="https://blog.remontti.com.br/5792" rel="noopener" target="_blank"><strong>Debian 11 Bullseye / Instalação Limpa</strong></a></p>
<p>Será necessário a instalação do Apache2, PHP, MySQL você pode seguir o tutorial: <a href="https://blog.remontti.com.br/5893" rel="noopener" target="_blank"><strong>Passo-a-passo como criar um servidor WEB Apache + PHP + MariaDB + phpMyAdmin + Let’s Encrypt no Debian 11 bullseye “LAMP”</strong></a></p>
<p>Agora vamos preparar o &#8220;terreno&#8221;, precisamos instalar alguns pacotes.</p>
<pre class="remontti-code"># apt update
# apt upgrade -y
# apt install wget curl unzip -y
# apt install php-imagick php-bz2 php-imap php-memcache php-pspell php-tidy\
 php-xmlrpc php-xsl php-imap php-ldap php-file-iterator php-json php-intl php-cas php-apcu</pre>
<p>Alguns ajustes no php.ini</p>
<pre class="remontti-code"># vim /etc/php/7.4/apache2/php.ini</pre>
<p>Altere:</p>
<pre class="remontti-code">max_execution_time = 600
session.auto_start = off</pre>
<p>Reinicie o Apache</p>
<pre class="remontti-code"># systemctl  restart apache2</pre>
<p>A última versão projeto GLPI pode ser encontrada no link: <a href="https://github.com/glpi-project/glpi/releases/" target="_blank" rel="noopener">https://github.com/glpi-project/glpi/releases/</a><br />
Hoje (jul/2022) a versão atual é 10.0.2, caso já tenha atualizado fique atento aos comandos informando a versão que você baixou.</p>
<p>Vou acessar o diretório padrão da instalacao do Apache2 /var/www/html, e fazer download, após extrair, renomear a pasta e em seguida dar as permissões necessárias.</p>
<pre class="remontti-code"># cd /var/www/html
# wget  --no-check-certificate https://github.com/glpi-project/glpi/releases/download/10.0.2/glpi-10.0.2.tgz
# tar -vxf glpi-10.0.2.tgz
# chown www-data. -R glpi/</pre>
<p>Antes de prosseguir vamos criar um banco de dados e um usuário no MySQL.</p>
<pre class="remontti-code"># mysql -p</pre>
<p>Informe a senha do seu usuário root do mysql.</p>
<pre class="remontti-code">CREATE DATABASE glpi;
GRANT ALL PRIVILEGES ON glpi.* TO &#039;glpi&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;SUA_SENHA&#039;;
FLUSH PRIVILEGES;
quit;</pre>
<p>Agora acesse em seu navegador <strong>http://IP-SERVIDOR/glpi/</strong></p>
<p>Seleciona o idioma Português do Brasil clique no botão OK<br />
<img decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_1.png" alt="" width="1572" height="697" class="alignnone size-full wp-image-6697" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_1.png 1572w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_1-300x133.png 300w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_1-1024x454.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_1-768x341.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_1-1536x681.png 1536w" sizes="(max-width: 1572px) 100vw, 1572px" /><br />
</a></p>
<p>Clique em continuar.<br />
<img decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_2.png" alt="" width="1571" height="630" class="alignnone size-full wp-image-6698" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_2.png 1571w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_2-300x120.png 300w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_2-1024x411.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_2-768x308.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_2-1536x616.png 1536w" sizes="(max-width: 1571px) 100vw, 1571px" /></p>
<p>Clique em instalar.<br />
<a href="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_3.png" data-rel="lightbox-gallery-5rDgyRNx" data-rl_title="" data-rl_caption="" title=""><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_3.png" alt="" width="1572" height="635" class="alignnone size-full wp-image-6700" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_3.png 1572w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_3-300x121.png 300w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_3-1024x414.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_3-768x310.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_3-1536x620.png 1536w" sizes="auto, (max-width: 1572px) 100vw, 1572px" /></a></p>
<p>Se tudo estiver certinho clique em Continuar.<br />
<a href="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_4.png" data-rel="lightbox-gallery-5rDgyRNx" data-rl_title="" data-rl_caption="" title=""><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_4.png" alt="" width="1572" height="1317" class="alignnone size-full wp-image-6701" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_4.png 1572w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_4-300x251.png 300w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_4-1024x858.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_4-768x643.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_4-1536x1287.png 1536w" sizes="auto, (max-width: 1572px) 100vw, 1572px" /></a></p>
<p>No primeiro campo informamo localhost pois estamos instalando ele no nosso servidor, e nos campos seguintes colocamos nosso usuário que criamos no mysql &#8220;glpi&#8221; e a nossa &#8220;SUA_SENHA&#8221;. E clique em Continuar.<br />
<a href="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_5.png" data-rel="lightbox-gallery-5rDgyRNx" data-rl_title="" data-rl_caption="" title=""><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_5.png" alt="" width="1572" height="635" class="alignnone size-full wp-image-6702" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_5.png 1572w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_5-300x121.png 300w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_5-1024x414.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_5-768x310.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_5-1536x620.png 1536w" sizes="auto, (max-width: 1572px) 100vw, 1572px" /></a></p>
<p>Como já criamos o banco glpi, selecione o mesmo e clique em Continuar.<br />
<a href="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_6.png" data-rel="lightbox-gallery-5rDgyRNx" data-rl_title="" data-rl_caption="" title=""><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_6.png" alt="" width="1572" height="635" class="alignnone size-full wp-image-6703" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_6.png 1572w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_6-300x121.png 300w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_6-1024x414.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_6-768x310.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_6-1536x620.png 1536w" sizes="auto, (max-width: 1572px) 100vw, 1572px" /></a></p>
<p>Aguarde a etapa 3 finalizar, Se a conexão tiver sucesso você irá receber uma mensagem de OK &#8211; banco de dado inicializado. Clique em Continuar.<br />
<a href="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_7.png" data-rel="lightbox-gallery-5rDgyRNx" data-rl_title="" data-rl_caption="" title=""><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_7.png" alt="" width="1572" height="635" class="alignnone size-full wp-image-6704" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_7.png 1572w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_7-300x121.png 300w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_7-1024x414.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_7-768x310.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_7-1536x620.png 1536w" sizes="auto, (max-width: 1572px) 100vw, 1572px" /></a></p>
<p>Se estiver de acordo com o envio de estatísticas clique em continuar ou desmarque e continue.<br />
<a href="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_8.png" data-rel="lightbox-gallery-5rDgyRNx" data-rl_title="" data-rl_caption="" title=""><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_8.png" alt="" width="1572" height="751" class="alignnone size-full wp-image-6705" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_8.png 1572w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_8-300x143.png 300w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_8-1024x489.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_8-768x367.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_8-1536x734.png 1536w" sizes="auto, (max-width: 1572px) 100vw, 1572px" /></a></p>
<p>Continuar<br />
<a href="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_9.png" data-rel="lightbox-gallery-5rDgyRNx" data-rl_title="" data-rl_caption="" title=""><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_9.png" alt="" width="1572" height="635" class="alignnone size-full wp-image-6706" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_9.png 1572w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_9-300x121.png 300w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_9-1024x414.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_9-768x310.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_9-1536x620.png 1536w" sizes="auto, (max-width: 1572px) 100vw, 1572px" /></a></p>
<p>Instalação concluída. Clique em usar GLPI<br />
<a href="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_10.png" data-rel="lightbox-gallery-5rDgyRNx" data-rl_title="" data-rl_caption="" title=""><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_10.png" alt="" width="1572" height="635" class="alignnone size-full wp-image-6707" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_10.png 1572w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_10-300x121.png 300w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_10-1024x414.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_10-768x310.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_10-1536x620.png 1536w" sizes="auto, (max-width: 1572px) 100vw, 1572px" /></a></p>
<p><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_11.png" alt="" width="1572" height="798" class="alignnone size-full wp-image-6709" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_11.png 1572w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_11-300x152.png 300w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_11-1024x520.png 1024w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_11-768x390.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_11-1536x780.png 1536w" sizes="auto, (max-width: 1572px) 100vw, 1572px" /></p>
<p>Por padrões serão criados os usuários/senhas: (não esqueça de alterar todas elas)<br />
Administrador: glpi/glpi<br />
Técnico: tech/tech<br />
Normal: normal/normal<br />
Postonly: post-only/postonly</p>
<p><img loading="lazy" decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_12.png" alt="" width="1572" height="1587" class="alignnone size-full wp-image-6710" srcset="https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_12.png 1572w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_12-297x300.png 297w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_12-1014x1024.png 1014w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_12-150x150.png 150w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_12-768x775.png 768w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_12-1521x1536.png 1521w, https://blog.remontti.com.br/wp-content/uploads/2016/09/GLPI_DEBIAN_12-80x80.png 80w" sizes="auto, (max-width: 1572px) 100vw, 1572px" /></p>
<p>Por segurança renomeie a pasta install.</p>
<pre class="remontti-code">
# cd /var/www/html/glpi/
# mv install/ install_X29122016</pre>
<p>Garanta que o apache seja dono da pasta glpi.</p>
<pre class="remontti-code"># chown www-data. -R  /var/www/html/glpi/</pre>
<p>Parabéns, seu GLPI está funcionando!!! </p>
<p><strong>Se quiser apoiar o blog e fazer uma doação para o café ficarei muito feliz pelo seu reconhecimento!</strong><br />
<a href="https://blog.remontti.com.br/doar"><img decoding="async" src="https://blog.remontti.com.br/wp-content/uploads/2019/07/quero-doar-remontti.png" /></a></p>
<p>Se não puder doar pode deixar seu agradecimento nos comentário também ficarei feliz em saber que ajudei. Se tiver qualquer pergunta deixe-a também. Se preferir entrar em Contato <a href="https://blog.remontti.com.br/meucontato" rel="noopener noreferrer" target="_blank">clique aqui.</a></p>
<p>Abraço!</p>
<p>Fonte:<br />
<a href="https://glpi-install.readthedocs.io/" rel="noopener" target="_blank">https://glpi-install.readthedocs.io/</a></p>
<p>O post <a href="https://blog.remontti.com.br/1528">Instalação do GLPi &#8211; Software de gerenciamento de ativos e TI gratuito</a> apareceu primeiro em <a href="https://blog.remontti.com.br">Remontti</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.remontti.com.br/1528/feed</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
	</channel>
</rss>
