Page 2 of 2

Re: Default username and password for Nagios Web UI

Posted: Wed Jul 11, 2012 12:18 pm
by sanket
That is correct!
username - nagiosadmin
password - admin

Re: Default username and password for Nagios Web UI

Posted: Wed Jul 11, 2012 12:23 pm
by scottwilkerson
The only other possibilities are leading/trailing spaces in the username or password fields, or postgres corruption.

If you are sure there are no "extra chars, you can try the following postgres repair and then reset the password again

Code: Select all

psql nagiosxi nagiosxi
 VACUUM;
 VACUUM ANALYZE;
 VACUUM FULL;
 \q
then

Code: Select all

cd /usr/local/nagiosxi/scripts
./reset_nagiosadmin_password.php --password=admin

Re: Default username and password for Nagios Web UI

Posted: Wed Jul 11, 2012 12:50 pm
by sanket
From which folder should I run the psql command?

Re: Default username and password for Nagios Web UI

Posted: Wed Jul 11, 2012 12:56 pm
by sanket
Looks like that fixed the problem!