Instale o pacote libnagios-object-perl
, bem como o pacote librrds-perl
.
Isto está assumindo que você está executando o Debian.
Estou tentando instalar o nagiosgraph onde meu sistema nagios funciona perfeitamente bem.
Transferiu nagiosgraph-1.5.0.tar.gz
, descompactou e emitiu ./install.pl --check-prereq
Isso me dá
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!
Eu verifiquei a configuração nagios /usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg
e não tive erros
Instale o pacote libnagios-object-perl
, bem como o pacote librrds-perl
.
Isto está assumindo que você está executando o Debian.
Se você estiver usando o CentOS, siga estas etapas:
Instale o CPAN, caso ainda não o tenha instalado.
yum -y install perl-CPAN
O instale o módulo com o cpan
cpan Nagios::Config
Pressione sim quando pedir para instalar dependências.
É isso aí que você tem o módulo 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
Minha solução é:
Apenas instalando yum install perl-Nagios-Object
Antes: Nagios :: Config ... FAIL
depois: Nagios :: Config ... 36
boa sorte
Obteve o mesmo erro ao fazer a pré-verificação para instalar o nagiosgraph (./install.pl --check-prereq)
/root/nagiosgraph/nagiosgraph-1.5.2 # ./install.pl --check-prereq
checking required PERL modules
Carp...1.3301
CGI...4.13
Data::Dumper...2.124
Digest::MD5...2.54
File::Basename...2.77
File::Find...1.14
MIME::Base64...3.15
POSIX...1.17
RRDs...1.3008
Time::HiRes...1.9721
checking optional PERL modules
GD...2.44
Nagios::Config... ***FAIL*** <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
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
Mesmo depois de instalar todos os pré-requisitos que encontrei na net:
yum install perl-rrdtool perl-GD
yum -y install perl-GD php-gd rrdtool-perl rrdtool-php rrdtool perl-CGI perl-Time-HiRes
yum install perl-Nagios-Plugin
Olhando, cheguei a esta página: link Mas quando seguiu o passo para corrigir o erro:
1) perl -MCPAN -e shell
2) install Nagios::Config
recebi outro erro:
Checking prerequisites...
- ERROR: Test::Exception is not installed
- ERROR: List::Compare is not installed
ERRORS/WARNINGS FOUND IN PREREQUISITES. You may wish to install the versions
of the modules indicated above before proceeding with this installation
Creating new 'Build' script for 'Nagios-Object' version '0.21.20'
Could not read '/root/.cpan/build/Nagios-Object-0.21.20-BbpgLp/META.yml'. Falling back to other methods to determine prerequisites
CPAN: Module::Build loaded ok (v0.35)
---- Unsatisfied dependencies detected during ----
---- DUNCS/Nagios-Object-0.21.20.tar.gz ----
Test::Exception [build_requires]
List::Compare [build_requires]
Shall I follow them and prepend them to the queue of modules we are processing right now? [yes]
Aqui, eu digitei "sim" e depois pedi mais dependências no caminho, para as quais eu respondi "sim" a todas elas.
Finalmente chegamos a:
Installing /usr/local/bin/statusdat_demo.pl
DUNCS/Nagios-Object-0.21.20.tar.gz
./Build install -- OK
Warning (usually harmless): 'YAML' not installed, will not store persistent state
cpan[2]> exit
Terminal does not support GetHistory.
Lockfile removed.
/root/nagiosgraph/nagiosgraph-1.5.2 # ./install.pl --check-prereq
checking required PERL modules
Carp...1.3301
CGI...4.13
Data::Dumper...2.124
Digest::MD5...2.54
File::Basename...2.77
File::Find...1.14
MIME::Base64...3.15
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
/root/nagiosgraph/nagiosgraph-1.5.2 #
Então, eu estou pronto para continuar instalando o nagiosgraph. Espero que ajude.