web-dev-qa-db-ja.com

nagiosgraphのインストールエラー

私のnagiosシステムが完全に正常に機能するnagiosgraphをインストールしようとしています。ダウンロードしたnagiosgraph-1.5.0.tar.gz、それを開梱して発行しました./install.pl --check-prereqそれは私に与える

checking required Perl modules
  Carp...1.04
  CGI...3.15
  Data::Dumper...2.121_08
  Digest::MD5...2.36
  File::Basename...2.74
  File::Find...1.10
  MIME::Base64...3.07
  POSIX...1.09
  RRDs... ***FAIL***
  Time::HiRes...1.9717
checking optional Perl modules
  Gd...2.30
  Nagios::Config... ***FAIL***
checking nagios installation
  found nagios exectuable at /usr/local/nagios/bin/nagios
  found nagios init script at /etc/init.d/nagios
checking web server installation
  found Apache executable at /usr/sbin/httpd
  found Apache init script at /etc/init.d/httpd

*** one or more problems were detected!

Nagiosの構成を確認しました/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfgそして私にエラーを与えませんでした

1
ivcode

パッケージをインストールしますlibnagios-object-Perlおよびパッケージlibrrds-Perl

これは、Debianを実行していることを前提としています。

2
Mike

CentOSを使用している場合は、次の手順に従ってください。

CPANをまだインストールしていない場合は、インストールしてください。

yum -y install Perl-CPAN

Cpanでモジュールをインストールします

cpan Nagios::Config

依存関係のインストールを要求する場合は、[はい]を押します。

これで、Perlモジュールを入手できました。

# ./install.pl --check-prereq
checking required Perl modules
  Carp...1.11
  CGI...3.51
  Data::Dumper...2.124
  Digest::MD5...2.39
  File::Basename...2.77
  File::Find...1.14
  MIME::Base64...3.08
  POSIX...1.17
  RRDs...1.3008
  Time::HiRes...1.9721
checking optional Perl modules
  Gd...2.44
  Nagios::Config...36
checking nagios installation
  found nagios exectuable at /usr/sbin/nagios
  found nagios init script at /etc/init.d/nagios
checking web server installation
  found Apache executable at /usr/sbin/httpd
  found Apache init script at /etc/init.d/httpd
1
user169015

私の解決策は;

Yum installPerl-Nagios-Objectのみをインストールします

前:Nagios :: Config ... [〜#〜] fail [〜#〜]

後:Nagios :: Config ... 36

幸運を

0
Robert