En UseGuide » History » Version 2
tsmr, 09/07/2009 02:01 PM
1 | 2 | tsmr | h2. The centreon plugin |
---|---|---|---|
2 | 2 | tsmr | |
3 | 2 | tsmr | This plugin allows you to link items to the GLPI host's centreon installation |
4 | 2 | tsmr | |
5 | 2 | tsmr | h2. Installation |
6 | 2 | tsmr | |
7 | 2 | tsmr | After decompressing the archive into the plugin folder of GLPI GLPI log on as administrator: |
8 | 2 | tsmr | |
9 | 2 | tsmr | Menu: Configuration / Plugins / Centreon / Installation |
10 | 2 | tsmr | |
11 | 2 | tsmr | This will create the tables used by the plugin. |
12 | 2 | tsmr | |
13 | 2 | tsmr | h2. Rights Management |
14 | 2 | tsmr | |
15 | 2 | tsmr | Menu: Configuration / Plugins / Centreon / Management rights profile |
16 | 2 | tsmr | |
17 | 2 | tsmr | This step allows you to define user profiles that can use the plugin. |
18 | 2 | tsmr | |
19 | 2 | tsmr | h2. Known Issues |
20 | 2 | tsmr | |
21 | 2 | tsmr | The pie chart is not displayed |
22 | 2 | tsmr | |
23 | 2 | tsmr | The GD is a library that allows you to create and manipulate images in many formats (GIF, PNG, ...). |
24 | 2 | tsmr | |
25 | 2 | tsmr | When this library is coupled with PHP, it is possible to generate images directly in the browser, very helpful and gives very nice images! |
26 | 2 | tsmr | |
27 | 2 | tsmr | h3. Installing Windows (Xampp) |
28 | 2 | tsmr | |
29 | 2 | tsmr | php_gd2.dll must be activated in your php.ini extension. To activate it, delete the ";" in front of php_gd2.dll in your php.ini file. |
30 | 2 | tsmr | |
31 | 2 | tsmr | Remember also to copy the file php_gd2.dll in the c:\windows\system32. |
32 | 2 | tsmr | |
33 | 2 | tsmr | A small reconfiguration Apache is also required. |
34 | 2 | tsmr | |
35 | 2 | tsmr | h3. Installing Ubuntu |
36 | 2 | tsmr | |
37 | 2 | tsmr | * a) install gd2 |
38 | 2 | tsmr | |
39 | 2 | tsmr | <pre>sudo apt-get install libgd2</pre> |
40 | 2 | tsmr | |
41 | 2 | tsmr | * b) edit php.ini |
42 | 2 | tsmr | |
43 | 2 | tsmr | <pre>sudo gedit /etc/php5/apache2/php.ini</pre> |
44 | 2 | tsmr | |
45 | 2 | tsmr | Edit the file php.ini and uncoment or add extension=gd.so |
46 | 2 | tsmr | |
47 | 2 | tsmr | * c) php library |
48 | 2 | tsmr | |
49 | 2 | tsmr | <pre> |
50 | 2 | tsmr | sudo apt-get install php5-gd |
51 | 2 | tsmr | </pre> |
52 | 2 | tsmr | |
53 | 2 | tsmr | h3. Installation Centos 4.4 |
54 | 2 | tsmr | |
55 | 2 | tsmr | * a) install gd2 |
56 | 2 | tsmr | |
57 | 2 | tsmr | <pre>yum install php-gd</pre> |
58 | 2 | tsmr | |
59 | 2 | tsmr | * b) edit php.ini |
60 | 2 | tsmr | |
61 | 2 | tsmr | <pre>vi /etc/php.ini</pre> |
62 | 2 | tsmr | |
63 | 2 | tsmr | Edit the file php.ini and uncoment or add extension=gd.so |
64 | 2 | tsmr | |
65 | 2 | tsmr | * c) restart httpd |