Page 1 of 1

Nagios XI 2014R1.2 Upgrade Error

Posted: Mon Jul 07, 2014 1:42 pm
by highness
Tried to upgrade from Nagios XI 2014R1.1 to Nagios XI 2014R1.2 and got this error message at the end of the install:

configure: creating ./config.status
config.status: creating gl/Makefile
config.status: creating nagios-plugins.spec
config.status: creating Makefile
config.status: creating tap/Makefile
config.status: creating lib/Makefile
config.status: creating plugins/Makefile
config.status: creating lib/tests/Makefile
config.status: creating plugins-root/Makefile
config.status: creating plugins-scripts/Makefile
config.status: creating plugins-scripts/subst
config.status: creating plugins-scripts/utils.pm
config.status: creating plugins-scripts/utils.sh
config.status: creating perlmods/Makefile
config.status: creating test.pl
config.status: creating pkg/solaris/pkginfo
config.status: creating po/Makefile.in
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
--with-apt-get-command:
--with-ping6-command: /bin/ping6 -n -U -w %d -c %d %s
--with-ping-command: /bin/ping -n -U -w %d -c %d %s
--with-ipv6: yes
--with-mysql: /usr/bin/mysql_config
--with-openssl: yes
--with-gnutls: no
--enable-extra-opts: yes
--with-perl: /usr/bin/perl
--enable-perl-modules: no
--with-cgiurl: /nagios/cgi-bin
--with-trusted-path: /bin:/sbin:/usr/bin:/usr/sbin
--enable-libtap: no

real 0m44.270s
user 0m21.593s
sys 0m17.064s
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /usr/local/nagiosxi/tmp/nagiosxi/subcomponents/nagiosplugins/nagios-plugins-2.0.2/build-aux/missing --run aclocal-1.11 -I gl/m4 -I m4
/usr/local/nagiosxi/tmp/nagiosxi/subcomponents/nagiosplugins/nagios-plugins-2.0.2/build-aux/missing: line 52: aclocal-1.11: command not found
WARNING: `aclocal-1.11' is missing on your system. You should only need it if
you modified `acinclude.m4' or `configure.ac'. You might want
to install the `Automake' and `Perl' packages. Grab them from
any GNU archive site.
cd . && /bin/sh /usr/local/nagiosxi/tmp/nagiosxi/subcomponents/nagiosplugins/nagios-plugins-2.0.2/build-aux/missing --run automake-1.11 --gnu
/usr/local/nagiosxi/tmp/nagiosxi/subcomponents/nagiosplugins/nagios-plugins-2.0.2/build-aux/missing: line 52: automake-1.11: command not found
WARNING: `automake-1.11' is missing on your system. You should only need it if
you modified `Makefile.am', `acinclude.m4' or `configure.ac'.
You might want to install the `Automake' and `Perl' packages.
Grab them from any GNU archive site.
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /usr/local/nagiosxi/tmp/nagiosxi/subcomponents/nagiosplugins/nagios-plugins-2.0.2/build-aux/missing --run autoconf
configure:49746: error: possibly undefined macro: gl_IDPRIV
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
make: *** [configure] Error 1

I see the part about needing aclocal-1.11, but if that is a new package, shouldn't the install have picked that up? Along with automake?

Re: Nagios XI 2014R1.2 Upgrade Error

Posted: Mon Jul 07, 2014 1:57 pm
by slansing
This is a known issue due to requiring automake and autoconf with the new plugins package and should be fixed in the next release, for the time being please run the following and attempt the upgrade again:

Code: Select all

yum install -y automake autoconf

Re: Nagios XI 2014R1.2 Upgrade Error

Posted: Mon Jul 07, 2014 2:18 pm
by highness
That worked. Thanks!