On 03/24/2014 08:38 PM, Gunnar Beutner wrote:
Am 24.03.2014 07:05, schrieb Simon Walter:
I've updated to v0.0.8-101-gd46ba3e from the snapshot repositories.

I see some progress, but it's not yet working correctly for some
reason. The progress I see is that when looking at the results of
"SELECT * FROM icinga_objects WHERE objecttype_id = '2'", is_active =
0. So it looks like something might be working now. However, it still
remains on the web UI (pkg: icinga-web). I noticed that the service
I've removed is still in the icinga_services table.
This is intentional. The latest icinga-web version should only show
objects where 'is_active' is 1. In fact, using the Icinga 2 Vagrant VM I
can't reproduce your problem.

Are you sure you're using the latest version of icinga-web?

I suppose the packaged version is not the latest, because that is what I have installed: Version icinga-web/v1.10.0

<setting name="version.copyright"><![CDATA[&#169; 2009-2013 Icinga Developer Team]]></setting> <setting name="version.homeref"><![CDATA[<a href="http://www.icinga.org/";>www.icinga.org</a>]]></setting>
<setting name="version.major">1</setting>
<setting name="version.minor">10</setting>
<setting name="version.patch">0</setting>
<setting name="version.extension"></setting>
<setting name="version.releasedate"><![CDATA[2013-10-24]]></setting>
<setting name="version.name">icinga-web</setting>

I compared the code to the 1.11.1 version from a tar ball. There are changes to that part of the code. I suppose I should try the backports...

Yup, that was it. This is fixed in icinga-web version 1.11.0.

For anyone trying to install icinga2 on wheezy, here is a short howto. Hopefully it finds it's way via some scrapper onto some search engine. Feel free to re-publish etc.
---
// Standard disclaimer: This may destroy your computer, cause data loss, and ruin your life. You have been warned.
// After you've installed a Debian wheezy minimal install...
// disable recommends
# echo 'APT::Install-Recommends "0";' > /etc/apt/apt.conf.d/02local
// add the repositories
# echo 'deb http://packages.icinga.org/debian icinga-wheezy-snapshots main
deb-src http://packages.icinga.org/debian icinga-wheezy-snapshots main
deb http://ftp.debian.org/debian wheezy-backports main' >> /etc/apt/sources.list
# wget -O - http://packages.icinga.org/icinga.key | apt-key add -
# apt-get update && apt-get upgrade
// install some packages
# apt-get install default-mta
# dpkg-reconfigure exim4-config
# apt-get install mysql-server
// install icinga2
# apt-get install icinga2-ido-mysql icinga2
// enable some necessary features
# icinga2-enable-feature ido-mysql
# icinga2-enable-feature command
// create the icinga2 DB
# mysql -u root -p
mysql> CREATE DATABASE icinga;
mysql> GRANT SELECT, INSERT, UPDATE, DELETE, DROP, CREATE VIEW, INDEX, EXECUTE ON icinga.* TO 'icinga'@'localhost' IDENTIFIED BY 'icinga';
mysql> quit;
// populate the icinga2 DB
# cp /usr/share/icinga2-ido-mysql/schema/mysql.sql .
# sed -i "1iuse icinga;" mysql.sql
# mysql -u root -p < mysql.sql
// restart icinga2
# service icinga2 restart
// install icinga-web
# apt-get -t wheezy-backports install icinga-web
// You probably want to do:
# apt-get install nagios-plugins nagios-nrpe-plugin nagios-plugins-contrib
# chmod u+s /usr/lib/nagios/plugins/check_dhcp
// and maybe:
# apt-get install nagios-plugins-contrib
// If you want to control icinga2 from the web UI, you need to correct the file path:
// look for "icinga_pipe" in /etc/icinga-web/conf.d/access.xml
// <resource name="icinga_pipe">/var/run/icinga2/cmd/icinga2.cmd</resource> //<!-- <resource name="icinga_pipe">/var/lib/icinga/rw/icinga.cmd</resource> -->
// Then:
# /usr/lib/icinga-web/bin/clearcache.sh
// restart some daemons:
# service icinga2 restart && service apache2 restart
// Have a look at http://server/icinga-web/
---
Notes:
If you use a different username and password for the icinga2 database, you have to configure it yourself in: /etc/icinga2/features-enabled/ido-mysql.conf
It would be good if icinga2-ido-mysql was dependent on mysql-server.
The icinga-web database gets created by dbconfig upon install. icinga2 does not create a database upon install. So you have to create and "import the schema" yourself. When trying to upgrade to the version in the snapshot repository, I found that it did seem to try to update the database. Though this fails because of existing indexes. I noticed this was the same with the upgrade for the icinga-web package. I think different SQL needs to be supplied for upgrades.

If some of those packaging issues were sorted out, then it would merely be configuring apt and installing packages. Pretty nice!

I'm happy to redo any of this and file bugs, but they probably already exist. Please let me know if I can be of help.

Thank you,

Simon
_______________________________________________
icinga-users mailing list
icinga-users@lists.icinga.org
https://lists.icinga.org/mailman/listinfo/icinga-users

Reply via email to