web-dev-qa-db-fra.com

Quel est le meilleur moyen d'installer la bibliothèque graphique Gd pour Nagios?

En essayant d'installer Nagios 3.2.3, j'ai exécuté leur script ./configure et j'ai eu les erreurs suivantes:

checking for main in -liconv... no
checking for gdImagePng in -lgd (order 1)... no
checking for gdImagePng in -lgd (order 2)... no
checking for gdImagePng in -lgd (order 3)... no
checking for gdImagePng in -lgd (order 4)... no


*** Gd, PNG, and/or JPEG libraries could not be located... *********

Boutell's Gd library is required to compile the statusmap, trends
and histogram CGIs.  Get it from http://www.boutell.com/Gd/, compile
it, and use the --with-Gd-lib and --with-Gd-inc arguments to specify
the locations of the Gd library and include files.

NOTE: In addition to the Gd-devel library, you'll also need to make
      sure you have the png-devel and jpeg-devel libraries installed
      on your system.

NOTE: After you install the necessary libraries on your system:
      1. Make sure /etc/ld.so.conf has an entry for the directory in
         which the Gd, PNG, and JPEG libraries are installed.
      2. Run 'ldconfig' to update the run-time linker options.
      3. Run 'make clean' in the Nagios distribution to clean out
         any old references to your previous compile.
      4. Rerun the configure script.

NOTE: If you can't get the configure script to recognize the Gd libs
      on your system, get over it and move on to other things.  The
      CGIs that use the Gd libs are just a small part of the entire
      Nagios package.  Get everything else working first and then
      revisit the problem.  Make sure to check the nagios-users
      mailing list archives for possible solutions to Gd library
      problems when you resume your troubleshooting.

********************************************************************

Quel paquet est-ce que je veux? libgd2-xpm-dev? libgd2-noxpm-dev? php5-gd? Je ne cherche pas à traiter moi-même les images, je veux simplement que Nagios fonctionne.

3
coffee-grinder

Si vous consultez le guide de démarrage rapide sur site Web de nagios , vous remarquerez que le guide pour Ubuntu 7.10 et versions ultérieures vous demande d'installer libgd2-xpm-dev avec cette commande:

Sudo apt-get install libgd2-xpm-dev

Cela devrait le faire pour toi! Bien sûr, vous pouvez toujours suivre le guide du serveur Ubuntu et installer les paquets nagios au lieu de le construire vous-même.

6
Chad Stovern

J'ai utilisé des commandes comme celle-ci:

Sudo apt-get install php5-Gd
Sudo service Apache2 restart
1
Aret