New Setup

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
ccyre
Posts: 1
Joined: Mon Jan 31, 2011 12:38 pm

New Setup

Post by ccyre »

Got the vim installed in vmware, powered it on, set the DNS and IP settings down and up the NIC, it pings, go to the web page type in the admin name email and password, hit install and get an NSP Sorry can't do that dave. Is the time/date set wrong on the vm? What CentOS commands are needed to do that? Thanks
mguthrie
Posts: 4380
Joined: Mon Jun 14, 2010 10:21 am

Re: New Setup

Post by mguthrie »

Yeah that's probably just a date/time issue. I believe the command is:

ntpdate <timeserver url>

but you might have to install ntpdate. After doing that, hold shift and hit the refresh button on your browser to reload the javascript cache.
robertferguson
Posts: 5
Joined: Mon Mar 14, 2011 11:53 am

Re: New Setup

Post by robertferguson »

I attempted this and received this error '-bash: ntpdate: command not found'. How do I install NTP?

Thanks,
rdedon
Posts: 578
Joined: Sat Nov 20, 2010 4:51 pm

Re: New Setup

Post by rdedon »

Managing Nagios Time

The correct time on a server is critical, especially for Nagios. Synchronized time with other servers is important to
coordinate tasks and discover problems. One easy way to perform this task is to install ntp (Network Time Protocol)
and then manually have the system check time once a day in order to manage time.

yum install ­y ntp

Manually update your time. Here you can see the system is off by 12 seconds so it will be corrected gradually with
each check.

ntpdate pool.ntp.org
11 Mar 12:09:55 ntpdate[24725]: step time server 192.168.*.* offset 10900.806712 sec
12 sec

Create a cron entry so that each day your system is brought up to date.
crontab ­e

45 23 * * * /usr/sbin/ntpdate pool.ntp.org
Rene deDon
Technical Team
___
Nagios Enterprises, LLC
Web: http://www.nagios.com
Locked