aboutsummaryrefslogtreecommitdiff
path: root/www/glpi/pkg-message
blob: 6f34c1baf09325a7032c85de96f3461dd06dc186 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
*****************************************************************
First time installation notes:

Before using GLPI, you will need to configure your database.
Full installation instructions are available here:

	http://glpi-project.org/spip.php?article61

If you are using MySQL, here's the short version of the instructions:

  1. Create a new database:
  $ mysqladmin -uroot create glpi 

  2. Grant access to the database:
  $ mysql -uroot -e"GRANT ALL ON glpi.* TO USERNAME@localhost IDENTIFIED BY 'PASSWORD'" glpi
  (choose your own values for USERNAME and PASSWORD)

You will also need to configure Apache.  Consider adding the following
to your httpd.conf:

    <Directory %%PREFIX%%/%%GLPIDIR%%>
        AllowOverride Options FileInfo
    </Directory>

Then restart Apache: 'apachectl graceful'

Please visit 'http://{host.domain}/%%GLPIDIR%%/' in a
web-browser and follow the configuration instructions.
*****************************************************************