Procedimentos aplicados durante instalação do GLPI
https://releases.ubuntu.com/14.04/ubuntu-14.04.6-server-amd64.iso
https://glpi-install.readthedocs.io/en/latest/prerequisites.html
apt-get install apache2 php php-curl php-gd php-cli php-mbstring php-mysql php-xml -y
apt-get install mariadb-server -y
apt-get install php-cli php-cas php-imap php-ldap php-xmlrpc php-soap php-snmp php-apcu -y
apt-get install zip unzip bzip2 unrar-free vim -y
memory_limit = 64M ; // max memory limit
file_uploads = on ;
max_execution_time = 600 ; // not mandatory but adviced
register_globals = off ; // not mandatory but adviced
magic_quotes_sybase = off ;
session.auto_start = off ;
session.use_trans_sid = 0 ; // not mandatory but adviced
cd /tmp
wget https://github.com/glpi-project/glpi/releases/download/9.4.3/glpi-9.4.3.tgz
tar -xvzf glpi-9.4.3.tgz
cp -Rf glpi /var/www/html
chmod 775 /var/www/html/* -Rf
chown www-data. /var/www/html/* -Rf
chmod 777 /var/www/html/glpi/files
chmod 777 /var/www/html/glpi/config
chmod 777 /var/www/html/glpi/files/_dumps
chmod 777 /var/www/html/glpi/files/_sessions
chmod 777 /var/www/html/glpi/files/_cron
chmod 777 /var/www/html/glpi/files/_cache
chmod 777 /var/www/html/glpi/files/_log
chmod 777 /var/www/html/glpi/files/_lock
chmod 777 /var/www/html/glpi/files/_graphs
chmod 777 /var/www/html/glpi/files/_pictures
chmod 777 /var/www/html/glpi/files/_rss
chmod 777 /var/www/html/glpi/files/_tmp
chmod 777 /var/www/html/glpi/files/_uploads
chmod 777 /var/www/html/glpi/files/_plugins
mysql -u root -p
mysql> create database glpi;
mysql> create user 'glpi'@'localhost' identified by '123456';
mysql> grant all on glpi.* to glpi identified by '123456';
mysql> quit;
vim /etc/apache2/conf-available/glpi.conf
a2enconf glpi.conf
service apache2 restart
http://www.thiagopassamani.com.br/glpi/tabelas-nao-migradas-para-o-mecanismo-innodb.html
Configurar - geral - valores padrão
Alterar formato de nome, número
Videos do Youtube sobre notificação e abertura por email
- Faça o fork do projeto (https://github.com/yourname/yourproject/fork)
- Crie uma branch para sua modificação (
git checkout -b feature/fooBar
) - Faça o commit (
git commit -am 'Add some fooBar'
) - Push (
git push origin feature/fooBar
) - Crie um novo Pull Request
Apresentação Gestão de Ativos - George Maia
Apresentação Instalação GLPI no Debian 9 - Halexsandro de Freitas Sales
https://www.arthurschaefer.com.br/2019/01/29-instalando-o-glpi-9-3-3-no-debian-9/
http://www.thiagopassamani.com.br/glpi/abertura-de-chamados-no-glpi-via-e-mail.html