Glpi: Difference between revisions
m (udpated to use lighttpd template) |
(replace /etc/init.d with rc-service) |
||
(10 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
{{draft|This article needs to be updated with apks for recent versions of PHP that are compatible with glpi-10.0.9}} | |||
GLPI is the Information Resource-Manager with an additional Administration- Interface. You can use it to build up a database with an inventory for your company (computer, software, printers...). It has enhanced functions to make the daily life for the administrators easier, like a job-tracking-system with mail-notification and methods to build a database with basic information about your network-topology. | GLPI is the Information Resource-Manager with an additional Administration- Interface. You can use it to build up a database with an inventory for your company (computer, software, printers...). It has enhanced functions to make the daily life for the administrators easier, like a job-tracking-system with mail-notification and methods to build a database with basic information about your network-topology. | ||
Line 8: | Line 8: | ||
2) management and the history of the maintenance actions and the bound procedures. This application is dynamic and is directly connected to the users who can post requests to the technicians. An interface thus authorizes the latter with if required preventing the service of maintenance and indexing a problem encountered with one of the technical resources to which they have access. | 2) management and the history of the maintenance actions and the bound procedures. This application is dynamic and is directly connected to the users who can post requests to the technicians. An interface thus authorizes the latter with if required preventing the service of maintenance and indexing a problem encountered with one of the technical resources to which they have access. | ||
== | == Install lighttpd, PHP, and MySql == | ||
{{:Setting Up Lighttpd With FastCGI}} | |||
== Install Mysql server packages == | |||
{{Cmd|apk add mysql mysql-client php5-mysql php5-mysqli}} | |||
== Configuring MySql == | == Configuring MySql == | ||
/usr/bin/mysql_install_db --user=mysql | /usr/bin/mysql_install_db --user=mysql | ||
rc-service mariadb start && rc-update add mariadb default | |||
/usr/bin/mysqladmin -u root password 'password' | /usr/bin/mysqladmin -u root password 'password' | ||
Line 33: | Line 26: | ||
Note: you can create the database from command line or from the GLPI web page later. | Note: you can create the database from command line or from the GLPI web page later. | ||
{{Cmd|mysql -u root -p}} | |||
{{Cmd|CREATE DATABASE glpi; | |||
GRANT ALL PRIVILEGES ON glpi.* TO "root"; | |||
FLUSH PRIVILEGES; | |||
EXIT}} | |||
== Installing GLPI == | == Installing GLPI == | ||
Create a folder named {{Path|webapps}} | |||
{{Cmd|mkdir -p /usr/share/webapps/}} | |||
Download the source code archive | |||
{{Cmd|cd /usr/share/webapps/ | |||
wget https://fossies.org/linux/misc/glpi-10.0.9.tgz/}} | |||
wget | |||
Unpack and delete tar file | Unpack and delete tar file | ||
{{Cmd|tar zxvf glpi-10.0.9.tgz | |||
rm glpi-10.0.9.tgz}} | |||
Change | Change the folder permissions | ||
{{Cmd|chmod -R 777 /usr/share/webapps/glpi/}} | |||
Create a symlink to the {{Path|glpi}} folder | |||
{{Cmd|ln -s /usr/share/webapps/glpi/ /var/www/localhost/htdocs/glpi}} | |||
== Configuring GLPI == | == Configuring GLPI == | ||
Browse to: http://WEBSERVER_IP_ADDRESS/glpi and | Browse to: <nowiki>http://WEBSERVER_IP_ADDRESS/glpi</nowiki> and install GLPI by completing the information as appropriate from the web browser. | ||
GLPI Installation steps: | GLPI Installation steps: | ||
Note | {{Note|After select each option, pres "Ok" or "Continue" button.}} | ||
GLPI SETUP | GLPI SETUP | ||
* Select your language | |||
* Licence | |||
: I have read and ACCEPT the terms of the license written above. | |||
* Beginning of the installation - Installation or update of GLPI | |||
:* Choose 'Install' for a completely new installation of GLPI. | |||
:* Select 'Update' to update your version of GLPI from an earlier version | |||
* Checking of the compatibility of your environment with the execution of GLPI | |||
:* Continue ? | |||
* Choose 'Install' for a completely new installation of GLPI. | * Database connection setup | ||
* Select 'Update' to update your version of GLPI from an earlier version | :* Mysql server: ''localhost'' | ||
:* Mysql user: ''root'' | |||
:* Mysql password : ''password'' | |||
* Test of the connection at the database | |||
* Continue ? | : Database connection successful | ||
: Create a new database or use an existing one: ''glpi'' | |||
* Database created | |||
* Mysql server: ''localhost'' | |||
* Mysql user: ''root'' | |||
* Mysql password : ''password'' | |||
Database connection successful | |||
OK - database was initialized | OK - database was initialized | ||
Line 111: | Line 88: | ||
Upon first connection you can use the login ''glpi'' and the password ''glpi'' in order to access the application with administrator rights | Upon first connection you can use the login ''glpi'' and the password ''glpi'' in order to access the application with administrator rights | ||
After click on "continue" you will see ''The installation is finished'' | After click on "continue" you will see ''The installation is finished''. | ||
Congratulations, you installed GLPI! | Congratulations, you installed GLPI! | ||
Line 117: | Line 94: | ||
You can delete or modify these accounts as well as the first entries in the database. '''Use GLPI'''. | You can delete or modify these accounts as well as the first entries in the database. '''Use GLPI'''. | ||
Browse to <nowiki>http://WEBSERVER_IP_ADDRESS/glpi</nowiki> now | |||
[[Category:SQL]] |
Latest revision as of 10:11, 17 November 2023
This material is work-in-progress ... This article needs to be updated with apks for recent versions of PHP that are compatible with glpi-10.0.9 |
GLPI is the Information Resource-Manager with an additional Administration- Interface. You can use it to build up a database with an inventory for your company (computer, software, printers...). It has enhanced functions to make the daily life for the administrators easier, like a job-tracking-system with mail-notification and methods to build a database with basic information about your network-topology.
The principal functionalities of the application are :
1) the precise inventory of all the technical resources. All their characteristics will be stored in a database. 2) management and the history of the maintenance actions and the bound procedures. This application is dynamic and is directly connected to the users who can post requests to the technicians. An interface thus authorizes the latter with if required preventing the service of maintenance and indexing a problem encountered with one of the technical resources to which they have access.
Install lighttpd, PHP, and MySql
Basic Installation
For installing the additional packages first activate community packages and update the package index
Install the required packages:
# apk add lighttpd php82 fcgi php82-cgi
Configure Lighttpd
Edit lighttpd.conf (/etc/lighttpd/lighttpd.conf) and uncomment the line:
Contents of /etc/lighttpd/lighttpd.conf
Edit mod_fastcgi.conf (/etc/lighttpd/mod_fastcgi.conf), find and change /usr/bin/php-cgi to /usr/bin/php-cgi82.
Contents of /etc/lighttpd/mod_fastcgi.conf
Start lighttpd
service and add it to default runlevel
# rc-service lighttpd start # rc-update add lighttpd default
Install Mysql server packages
apk add mysql mysql-client php5-mysql php5-mysqli
Configuring MySql
/usr/bin/mysql_install_db --user=mysql rc-service mariadb start && rc-update add mariadb default /usr/bin/mysqladmin -u root password 'password'
Create the GLPI database
Note: you can create the database from command line or from the GLPI web page later.
mysql -u root -p
CREATE DATABASE glpi; GRANT ALL PRIVILEGES ON glpi.* TO "root"; FLUSH PRIVILEGES; EXIT
Installing GLPI
Create a folder named webapps
mkdir -p /usr/share/webapps/
Download the source code archive
cd /usr/share/webapps/ wget https://fossies.org/linux/misc/glpi-10.0.9.tgz/
Unpack and delete tar file
tar zxvf glpi-10.0.9.tgz rm glpi-10.0.9.tgz
Change the folder permissions
chmod -R 777 /usr/share/webapps/glpi/
Create a symlink to the glpi folder
ln -s /usr/share/webapps/glpi/ /var/www/localhost/htdocs/glpi
Configuring GLPI
Browse to: http://WEBSERVER_IP_ADDRESS/glpi and install GLPI by completing the information as appropriate from the web browser.
GLPI Installation steps:
GLPI SETUP
- Select your language
- Licence
- I have read and ACCEPT the terms of the license written above.
- Beginning of the installation - Installation or update of GLPI
- Choose 'Install' for a completely new installation of GLPI.
- Select 'Update' to update your version of GLPI from an earlier version
- Checking of the compatibility of your environment with the execution of GLPI
- Continue ?
- Database connection setup
- Mysql server: localhost
- Mysql user: root
- Mysql password : password
- Test of the connection at the database
- Database connection successful
- Create a new database or use an existing one: glpi
- Database created
OK - database was initialized Default values have been entered, feel free to delete them if you want Upon first connection you can use the login glpi and the password glpi in order to access the application with administrator rights
After click on "continue" you will see The installation is finished.
Congratulations, you installed GLPI!
You can delete or modify these accounts as well as the first entries in the database. Use GLPI.
Browse to http://WEBSERVER_IP_ADDRESS/glpi now