Default username and password for Nagios Web UI

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
sanket
Posts: 10
Joined: Tue Jul 10, 2012 11:49 am

Re: Default username and password for Nagios Web UI

Post by sanket »

That is correct!
username - nagiosadmin
password - admin
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: Default username and password for Nagios Web UI

Post 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
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
sanket
Posts: 10
Joined: Tue Jul 10, 2012 11:49 am

Re: Default username and password for Nagios Web UI

Post by sanket »

From which folder should I run the psql command?
sanket
Posts: 10
Joined: Tue Jul 10, 2012 11:49 am

Re: Default username and password for Nagios Web UI

Post by sanket »

Looks like that fixed the problem!
Locked