5

So I've just installed Icinga and Icinga-Web. And everything looked ok when first inspecting the UI's on http://[server]/icinga/ and http://[server]/icinga-web/...

I went on and added some new hosts, services, commands, etc. and reloaded the icinga service, without problems. Then I flushed the icinga-web cache and restarted the apache2 service, again no problems.

After reloading the configuration, all of the new hosts and services shows up just fine, in the old icinga UI, and the checks are running perfectly, well almost ;) (see below).

Old Icinga UI Status

However, in the new icinga-web interface it's a completely different story. The icinga-web UI still shows the hosts from the initial configuration (a single 'localhost' host with 8 services). The UI also shows the 'default' instance as being 'down' in the header status, and that 'the data is X minutes old' (see below).

New Icinga-Web UI Status

I've tried retracing my steps, by re-reading the icinga-web installation guide, but I can't figure out what I've done wrong or how to correct it. I've also tried to fiddle with the access.xml and databases.xml configuration files.

What am I doing wrong and how do I fix it?

JohannesH
  • 369
  • 2
  • 5
  • 21
  • Which Version of Icinga do you use? Build from source? What about icinga-web? Recent (1.6.0?) Did you check the rights of your user? – shakalandy Dec 12 '11 at 21:56
  • I'm using icinga 1.5.1 with icinga-web 1.5.2. But I have fixed the problem. Turned out it was some service not running. – JohannesH Dec 13 '11 at 07:14
  • JohannesH, I realize it was quite a while ago that you dealt with this, but do you remember what service was not running? I'm having the same trouble. – bshacklett Oct 19 '12 at 13:17
  • I believe it was the database service. – JohannesH Oct 21 '12 at 00:30

1 Answers1

5

In my case, there were two changes that needed to be made.

1) /etc/default/icinga needs to be configured so that IDO2DB will run:

# start ido2db daemon (no/yes)
IDO2DB=yes

2) The IDO module needs to be defined in /etc/icinga/modules/

/etc/icinga/modules/idoutils.cfg:

define module {
    module_name    ido_mod
    path           /usr/lib/icinga/idomod.so
    module_type    neb
    args           config_file=/etc/icinga/idomod.cfg
    }

The previous config file will, of course, need to match how your system is configured. The above is being used on an Ubuntu 12.10 server.

bshacklett
  • 1,378
  • 4
  • 19
  • 37
  • thanks. installed icinga using this tut https://wiki.icinga.org/display/howtos/Setting+up+Icinga+Web+on+Ubuntu and i was missing these instructions to get it to work – ufk Sep 15 '13 at 11:34