My Environment: Windows
2008 R2, Oracle DB 11gR2, OBIEE 11.1.1.5.0
One fine day no user
even administrator was able to log in to OBI. We were receiving the following
errors:
Unable to Sign In- An
invalid User Name or Password was entered.
When trying to open the repository in online mode, following error messages are received:
nQSError: 43113, nQSError: 43126, nQSError: 37001
When trying to open the repository in online mode, following error messages are received:
nQSError: 43113, nQSError: 43126, nQSError: 37001
We tried everything
including redeploying rpd and catalog, refreshing GUIDs, creating new users
with Admin privileges, playing around with BI System User, etc. with no
success.
NQServer Log:
Error Message For
BISystemUser: User not authenticated.
Authentication failed:
invalid user/password.
NQ Admin Tool Log:
[nQSError: 43113]
Message returned from OBIS.
[nQSError: 43126]
Authentication failed: invalid user/password.
[nQSError: 37001] Could
not connect to the Oracle BI Server instance.
Presentation Log:
Could not create a
system user connection to Oracle BI Server during start-up. Please check the
error message and try again.
Authentication Failure.
Odbc driver returned an
error (SQLDriverConnectW).
[nQSError: 10018] Access
for the requested connection is refused.
[nQSError: 43113]
Message returned from OBIS.
[nQSError: 43126]
Authentication failed: invalid user/password.
After several hours of
debugging we found that our DB schemas/user MDS and BIPLATFORM got locked/
expired. It was a setting in Oracle DB which makes schemas or users lock after
a period of time. To check the status of account use:
SELECT USERNAME, ACCOUNT_STATUS FROM DBA_USERS;
You can use the following to unlock accounts:
SELECT USERNAME, ACCOUNT_STATUS FROM DBA_USERS;
You can use the following to unlock accounts:
ALTER USER MDS ACCOUNT
UNLOCK;
ALTER USER BIPLATFORM
ACCOUNT UNLOCK;
If the password has
expired make sure to revert it back to the password you used during
installation. Use the following:
ALTER USER MDS
IDENTIFIED BY Admin123;
ALTER USER BIPLATFORM
IDENTIFIED BY Admin123;
This did the trick and
we were able to login to OBI Presentation Services.
Cheers!
Deepak