Showing posts with label obiee. Show all posts
Showing posts with label obiee. Show all posts

Thursday, December 29, 2011

OBIEE 11G: Unable to login to OBIEE 11G Analytics due to error: WSM-06162

After installation of OBIEE 11G, I had trouble logging into Analytics using WebLogic credentials. Thankfully the friendly folks at OTN forum helped me out.

Once you have OBIEE 11G installed, you should be able to open up

http://host-port/analytics

and access Analytics with your WebLogic credentials. In case you can't, check your WebLogic console (running on command prompt) and see if you get WSM-06162 error which looks like:


WSM-06162 The policy referenced by URI "oracle/wss_username_token_service_policy" could not be retrieved as connection to Policy Manager cannot be established at "t3://AI-PC:7001" due to invalid configuration or inactive state


Please note, its assumed that your WebLogic credential is working on http://host:port/console and http://host:port/em.

1) Login to Oracle Enterprise Manager OEM by going to: http://host:port/em

2) Login with your WebLogic credential.

3) Expand the Internal Applications and check the status of wsm-pm.




4) If its a red down arrow, right-click on wsm-pm.

5)  Select Control >> Start Up to start it up.



6) wsm-pm should start up. Just note, it may require database access. Ensure your database is running. In my case my OracleXEClrAgent wasn't running.

7) Try restarting BI Services.

8) You should be able to login in now.

SOURCE:
https://forums.oracle.com/forums/thread.jspa?threadID=2327340&tstart=0

 http://docs.oracle.com/cd/E21764_01/core.1111/e10113/chapter_wsm_messages.htm#sthref26556


OBIEE 11G: weblogic.security.SecurityInitializationException

Recently I installed OBIEE 11G in my laptop (simple install) with Windows 7. When I start BI Services from START, my weblogic throws this error before shutting down:  

weblogic.security.SecurityInitializationException: Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.  

First Weblogic log file is located at:
C:\BI11g\user_projects\domains\bifoundation_domain\servers\AdminServer\logs

During installation I configured to put all my BI stuff in BI11g folder in C: drive. Hence this is the root folder of my BI installation. Anyway, this log files tells the errors above in bold, in more readable format than digging through tonnes of lines in command prompt.

I Googled around and came across someone in OTN forum who had the same issues. Turns out there may be something wrong in some boot.properties file.

The boot.properties is located at:  
C:\BI11g\user_projects\domains\bifoundation_domain\servers\AdminServer\security

This file only has 3 lines the 2nd and 3rd being the weblogic username and password. I had a stray "/" in password which I removed.

Then I restarted the BI Services and it works now. If you go back to your boot.properties files again, you'll notice that your Weblogic username and password is now hashed.

SOURCE:
https://forums.oracle.com/forums/thread.jspa?threadID=2241882