Installation de GLPI sur Debian
De wikiGite
Révision datée du 7 décembre 2011 à 15:27 par Nicolas (discussion | contributions) (→Téléchargement des fichiers)
Pré-requis
- Apache
- Php
- mysql
Téléchargement des fichiers
cd /var/www wget https://forge.indepnet.net/attachments/download/995/glpi-0.80.5.tar.gz tar xvzf glpi-0.80.2.tar.gz mv glpi-0.80.2 glpi rm glpi-0.80.2.tar.gz
Installation
Créer un fichier dans /etc/apache2/sites-enabled (par exemple 003-glpi) :
vi /etc/apache2/sites-enabled/003-glpi
Avec le contenu suivant :
<VirtualHost *:80> ServerName glpi.domaine.fr DocumentRoot /var/www/glpi/ <Directory /var/www/glpi> AllowOverride All Order allow,deny Options Indexes Allow from all </Directory> </VirtualHost>
Appliquer les droits sur le répertoire web :
chown -R www-data:www-data /var/www/glpi
Redémarrer Apache :
/etc/init.d/apache2 restart
Lancer la page web d'installation et suivre les instructions :
http://localhost/glpi
Default logins / passwords are:
- glpi/glpi for the administrator account
- tech/tech for the technician account
- normal/normal for the normal account
- post-only/postonly for the postonly account