GLPI est une solution libre et open-source de gestion de parc informatique et de service helpdesk administrable via son interface web.
Ce article décrit une installation pas à pas de GLPI à partir d’un serveur Debian 8 fraîchement installé.
Installation et configuration des pré-requis pour le serveur web de GLPI
- Installation des paquets qui composent le serveur web basée sur Nginx, Php5-fpm et MariaDB :
apt install nginx php5-fpm mariadb-server php5-curl php5-gd php5-mysql php5-xcache php5-cli
- Éditer
/etc/php5/fpm/pool.d/www.conf
:nano /etc/php5/fpm/pool.d/www.conf
- Changer :
listen = /var/run/php5-fpm.sock
- par :
listen = 127.0.0.1:9000
/etc/php5/fpm/php.ini
:nano /etc/php5/fpm/php.ini
cgi.fix_pathinfo=0
- Créer le serveur block pour GLPI :
nano /etc/nginx/site-enabled/glpi
- Le contenu :
server { listen 80 default_server; root /var/www/html; index index.php; server_name localhost; location / {try_files $uri $uri/;} #prise en charge 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; } }
systemctl restart nginx
systemctl restart php5-fpm
Installation de GLPI
- Téléchargement de l’archive GLPI :
cd /var/www/html/ wget https://github.com/glpi-project/glpi/releases/download/9.1/glpi-9.1.tar.gz
tar xzvf glpi-9.1.tar.gz
rm glpi-9.1.tar.gz
chown -R :www-data glpi/
Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.
Image may be NSFW.
Clik here to view.