web-dev-qa-db-ja.com

Nagios用のGdグラフィックライブラリをインストールする最良の方法は何ですか?

Nagios 3.2.3をインストールしようとしたときに、。/ configureスクリプトを実行すると、次のエラーが発生しました。

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.

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

どのパッケージが必要ですか? libgd2-xpm-dev? libgd2-noxpm-dev? php5-gd?自分で画像処理を行うつもりはありません-Nagiosを動作させたいだけです。

3
coffee-grinder

nagios 'website のクイックスタートガイドを見ると、Ubuntu 7.10以降のガイドでは、このコマンドでlibgd2-xpm-devをインストールするよう求められていることがわかります。

Sudo apt-get install libgd2-xpm-dev

それはyaのためにそれをする必要があります!もちろん、Ubuntu Serverガイドに従って、自分でビルドする代わりに nagiosパッケージをインストールする を常に実行できます。

6
Chad Stovern

私はこのようなコマンドを使用しました:

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