Good morning,
We are in the process of planning to upgrade from Nagios xi R1.1 to the latest available version, Nagios xi R1.6.
What do you consider to be the biggest benefits in making this upgrade?
My management team is interested in improved/enhanced reporting. Also, will there be a way to poll network devices such as UPS devices to battery life and load capacity.
If there is existing documentation that I should be reviewing, please point me in the right direction.
Regards & thank you,
Mark Frew
Atlantic Broadband
Benefits of upgrading to Nagios xi R1.6
-
- Posts: 32
- Joined: Tue Mar 01, 2011 10:03 am
Re: Benefits of upgrading to Nagios xi R1.6
All of the changes to xi since 2011R1.1 to 2011R1.6 can be found here: http://assets.nagios.com/downloads/nagi ... S-2011.TXT
The majority of the changes are bugfixes.
There is an upgrade article here: http://assets.nagios.com/downloads/nagi ... ctions.pdf
I have followed the upgrade instructions a few times and it works perfectly.
Both of the above links are on the main xi download page.
If the UPS devices support SNMP you should be able to monitor them. There may also be a wizard/plugin for your specific model of UPS on the nagios exchange.
Regards
The majority of the changes are bugfixes.
There is an upgrade article here: http://assets.nagios.com/downloads/nagi ... ctions.pdf
I have followed the upgrade instructions a few times and it works perfectly.
Both of the above links are on the main xi download page.
If the UPS devices support SNMP you should be able to monitor them. There may also be a wizard/plugin for your specific model of UPS on the nagios exchange.
Regards
-
- Posts: 1040
- Joined: Wed May 11, 2011 8:54 am
Re: Benefits of upgrading to Nagios xi R1.6
There have been a a lot of under the hood bug fixes, so I'll just post some of the bigger changes:
- Fixed a database maintenance cron that could cause table corruption for some users.
- Created a new performance graph API that fixes several known issues related to performance graphs
- Complete SSL support
- Fixed XSS vulnerability from certain AJAX calls
These are what has been done to up to 1.6. There are many more. Also, have you looked on the library under the user only downloads? We have that jam packed with components that add some very nice features.
http://library.nagios.com/library/produ ... s/customer
and htel, thanks for the input!
- Fixed a database maintenance cron that could cause table corruption for some users.
- Created a new performance graph API that fixes several known issues related to performance graphs
- Complete SSL support
- Fixed XSS vulnerability from certain AJAX calls
These are what has been done to up to 1.6. There are many more. Also, have you looked on the library under the user only downloads? We have that jam packed with components that add some very nice features.
http://library.nagios.com/library/produ ... s/customer
and htel, thanks for the input!
Nicholas Scott
Former Nagios employee
Former Nagios employee
-
- Posts: 354
- Joined: Sat Apr 30, 2011 10:24 am
Re: Benefits of upgrading to Nagios xi R1.6
hi ,
I see support for complete ssl , has anything been documented yet ?
arnab
I see support for complete ssl , has anything been documented yet ?
arnab
-
- Posts: 1040
- Joined: Wed May 11, 2011 8:54 am
Re: Benefits of upgrading to Nagios xi R1.6
Nicholas Scott
Former Nagios employee
Former Nagios employee
-
- Posts: 354
- Joined: Sat Apr 30, 2011 10:24 am
Re: Benefits of upgrading to Nagios xi R1.6
HI After,
Following the instructions and changing the line items in ssl.conf apache is no longer starting up, hence I reverted it back. The nagiosxi.conf on my system doesnt look like what has been mentioned in the doc. Can this be double checked I tried this after upgrading from r1.2 -> r1.6
Cheers
Arnab
Following the instructions and changing the line items in ssl.conf apache is no longer starting up, hence I reverted it back. The nagiosxi.conf on my system doesnt look like what has been mentioned in the doc. Can this be double checked I tried this after upgrading from r1.2 -> r1.6
Cheers
Arnab
-
- Posts: 1040
- Joined: Wed May 11, 2011 8:54 am
Re: Benefits of upgrading to Nagios xi R1.6
Arnab,
Could you post your nagiosxi.conf ? If there is sensitive info in there then email it, otherwise I would like to see your .conf file to further advise your course of action.
Could you post your nagiosxi.conf ? If there is sensitive info in there then email it, otherwise I would like to see your .conf file to further advise your course of action.
Nicholas Scott
Former Nagios employee
Former Nagios employee
-
- Posts: 354
- Joined: Sat Apr 30, 2011 10:24 am
Re: Benefits of upgrading to Nagios xi R1.6
Hi ,
Here you go my config file,
<Directory "/usr/local/nagiosxi/html">
# SSLRequireSSL
Options None
AllowOverride None
Order allow,deny
Allow from all
# Order deny,allow
# Deny from all
# Allow from 127.0.0.1
# AuthName "Nagios xi"
# AuthType Basic
# AuthUserFile /usr/local/nagiosxi/etc/htpasswd.users
# Require valid-user
</Directory>
Alias /nagiosxi "/usr/local/nagiosxi/html"
Cheers
Arnab
Here you go my config file,
<Directory "/usr/local/nagiosxi/html">
# SSLRequireSSL
Options None
AllowOverride None
Order allow,deny
Allow from all
# Order deny,allow
# Deny from all
# Allow from 127.0.0.1
# AuthName "Nagios xi"
# AuthType Basic
# AuthUserFile /usr/local/nagiosxi/etc/htpasswd.users
# Require valid-user
</Directory>
Alias /nagiosxi "/usr/local/nagiosxi/html"
Cheers
Arnab
-
- Posts: 1040
- Joined: Wed May 11, 2011 8:54 am
Re: Benefits of upgrading to Nagios xi R1.6
Arnab,
It looks like your nagiosxi.conf is pretty much stock. You should be able to replace it with this: [make a backup of it of course]
Now when httpd failed to start before, what was the error code? From your description, it sounds like it failed after you edited the ssl.conf. Since the only thing we changed in there was where it was going to look for a SSL certificate, can you verify that you moved the ca.crt and ca.key to the place that the doc specifies?
ls /etc/pki/tls/certs/
ls /etc/pki/tls/private/
And then double check that is what is entered under the SSLCertificateFile and SSLCertificateKeyFile entry in the ssl.conf.
It looks like your nagiosxi.conf is pretty much stock. You should be able to replace it with this: [make a backup of it of course]
Code: Select all
#NameVirtualHost *:443
<VirtualHost *:80>
<Directory "/usr/local/nagiosxi/html">
# SSLRequireSSL
Options None
AllowOverride None
Order allow,deny
Allow from all
# Order deny,allow
# Deny from all
# Allow from 127.0.0.1
# AuthName "Nagios xi"
# AuthType Basic
# AuthUserFile /usr/local/nagiosxi/etc/htpasswd.users
# Require valid-user
</Directory>
</VirtualHost>
<VirtualHost *:443>
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/ca.crt
SSLCertificateKeyFile /etc/pki/tls/private/ca.key
<Directory "/usr/local/nagiosxi/html">
AllowOverride All
</Directory>
</VirtualHost>
Alias /nagiosxi "/usr/local/nagiosxi/html"
ls /etc/pki/tls/certs/
ls /etc/pki/tls/private/
And then double check that is what is entered under the SSLCertificateFile and SSLCertificateKeyFile entry in the ssl.conf.
Nicholas Scott
Former Nagios employee
Former Nagios employee
-
- Posts: 354
- Joined: Sat Apr 30, 2011 10:24 am
Re: Benefits of upgrading to Nagios xi R1.6
Hi ,
Are you sure you have typed in the whole code as I cant see the alias and closing tag for the Directory </>
Are you sure you have typed in the whole code as I cant see the alias and closing tag for the Directory </>