That is correct!
username - nagiosadmin
password - admin
Default username and password for Nagios Web UI
-
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
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
then
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;
\qCode: Select all
cd /usr/local/nagiosxi/scripts
./reset_nagiosadmin_password.php --password=adminRe: Default username and password for Nagios Web UI
From which folder should I run the psql command?
Re: Default username and password for Nagios Web UI
Looks like that fixed the problem!