Can not login to OBIEE 11g

Hi,
I have installed OBIEE 11g last evening. I was able to connect to the dashboard and run a simple report also - all before shut down. Now when I try to access OBIEE 11g thru port :9704 after starting the BI services, I am getting the following error.
"Error 404--Not Found
From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
10.4.5 404 Not Found
The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
Any idea. Anyone is having any exp on this type of issue. Can anyone guide to resolve this issue.
Thanks a lot.

Since you just installed last night I assume that you are just dev'ing on your laptop or something.
Be sure that on the machine which you installed on that you are entering http://localhost:9704/analytics/ to test the browser is hitting the correct server.
Also ensure that your Web Logic server is up and running and that all of your System Components via enteprise manager fusion control are "up" and running.
Also, when you start up the BI Services, i.e.: Programs > OBI > Start BI Services you must ensure that you enter the username and password correctly for the user/pass credentials that you created during the installation - typically this is the "weblogic" user by default.
For further help please post any actually log warning/error messages in your reply if the above does not work.
Let me know if that helps,
Christian

Similar Messages

  • Can't login to obiee 11g analytics

    Hi Guys,
    Client has installed obiee 11g in a server sitting at different place. We have deployed our own repository and catalog. Now we can't login to obiee analytics. It does not accept any username or password created in weblogic console. But if we deploy oracle's default SampleSales repository, then we could login. Can't understand what's the problem!
    It's throwing the following error:
    [OBIPS] [ERROR:31] [] [saw.security.odbcuserpopulationimpl.searchidentities] [ecid: 004tnN1tfkXFw0XpLs_Aie0004ds000000,0:162] [tid: 3327710976] Error retrieving user/group data from Oracle BI Server's User Population API.
    Unable to create a system user connection to BI Server while running user population queries
    Odbc driver returned an error (SQLDriverConnectW).
    State: HY000.  Code: 10058.  [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred.
    [nQSError: 73006] Cannot obtain Oracle BI Servers from either the primary Cluster Controller (aaobiee.mm.co.za) or the secondary Cluster Controller () specified for the clustered DSN. (HY000)[[
    File:odbcuserpoploaderimpl.cpp
    Line:726
    Location:
            saw.security.odbcuserpopulationimpl.searchidentities
            saw.security.userpopulationmanagerimpl.searchidentities
            saw.catalog.dirCache.getAllSharedFolders
            saw.CatalogAttributes.cache.cleanup
            saw.taskScheduler.processJob
            taskscheduler
            saw.threads
    ecid: 004tnN1tfkXFw0XpLs_Aie0004ds000000,0:162
    ThreadID: 3327710976
    task: Cache/CatalogAttributes
    Please help how do I resolve!!
    Thanks,
    BK.

    Hi,
    This is the exact format how my tnsnames.ora file looks. sorry, I can ping it in command prompt now. In my connection pool i tried first DSN =  ab.bc.xy.zx, did not work. Then I saw oracle's default repository and changed my DSN to your suggested format starting from "DESCRPTION" to rest. Still no luck Do you think, i should put the same TNS in my local machine??
    ab.bc.xy.zx =
    (DESCRIPTION =
        #(ADDRESS = (PROTOCOL = TCP)(HOST = 10.20.30.110)(PORT = 1521))
        #(ADDRESS = (PROTOCOL = TCP)(HOST = 10.20.30.120)(PORT = 1521))
        (ADDRESS = (PROTOCOL = TCP)(HOST = 10.20.30.130)(PORT = 1521))
        (LOAD_BALANCE = yes)
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SID = cap2)
    thanks,
    BK.

  • Issue - BI content server(11.1.1.1) not starting in obiee 11g:

    Hello All,
    BI content server(11.1.1.1) is not starting in obiee 11g after making OBIEE 11g services as windows service.
    Services are starting when we do a Start BI Services from All Programs >> OBIEE. On the contrary, when we start from windows service "bi content server(11.1.1.1) not starting in obiee 11g" is not starting.
    Can someone help me on this. In case if you need any more info, please let me know.
    Thank you,
    Bimal

    Below is the BI Script I used. Everything is in this script so no need to edit the installsvc file. Just edit the location/variables used as well as at the bottom change the name of the script and the log location. The BI_ORACLE_HOME variable needs to be set in the script.
    SETLOCAL
    set DOMAIN_NAME=bifoundation_domain
    set USERDOMAIN_HOME=D:\oracle\Middleware\user_projects\domains\bifoundation_domain
    set SERVER_NAME=bi_server1
    set PRODUCTION_MODE=true
    set ADMIN_URL=http://djaxwapp9608.common.ecamericas:7001
    set JAVA_HOME=D:\Oracle\Middleware\Oracle_BI1\jdk
    set DOMAIN_HOME=D:\oracle\Middleware\user_projects\domains\bifoundation_domain
    set WLS_HOME=D:\Oracle\Middleware\wlserver_10.3
    set INSTANCE_HOME=D:\oracle\Middleware\instances\instance1
    set BI_ORACLE_HOME=D:\oracle\Middleware\Oracle_BI1
    set ANT_HOME=%MW_HOME\modules\org.apache.ant_1.7.1
    set DOMAIN_NAME=bifoundation_domain
    Call "D:\Oracle\Middleware\user_projects\domains\bifoundation_domain\bin\setDomainEnv.cmd"
    set WL_HOME=D:\Oracle\Middleware\wlserver_10.3
    call "%WL_HOME%\common\bin\commEnv.cmd"
    @rem Check that the WebLogic classes are where we expect them to be
    :checkWLS
    if exist "%WL_HOME%\server\lib\weblogic.jar" goto checkJava
    echo The WebLogic Server wasn't found in directory %WL_HOME%\server.
    echo Please edit your script so that the WL_HOME variable points
    echo to the WebLogic installation directory.
    goto finish
    @rem Check that java is where we expect it to be
    :checkJava
    if exist "%JAVA_HOME%\bin\java.exe" goto runWebLogic
    echo The JDK wasn't found in directory %JAVA_HOME%.
    echo Please edit your script so that the JAVA_HOME variable
    echo points to the location of your JDK.
    goto finish
    :runWebLogic
    if not "%JAVA_VM%" == "" goto noResetJavaVM
    if "%JAVA_VENDOR%" == "BEA" set JAVA_VM=-jrocket
    if "%JAVA_VENDOR%" == "HP" set JAVA_VM=-server
    if "%JAVA_VENDOR%" == "Sun" set JAVA_VM=-server
    :noResetJavaVM
    if not "%MEM_ARGS%" == "" goto noResetMemArgs
    set MEM_ARGS=-Xms32m -Xmx200m
    :noResetMemArgs
    @echo on
    set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%
    @echo ***************************************************
    @echo * To start WebLogic Server, use the password *
    @echo * assigned to the system user. The system *
    @echo * username and password must also be used to *
    @echo * access the WebLogic Server console from a web *
    @echo * browser. *
    @echo ***************************************************
    rem *** Set Command Line for service to execute within created JVM
    @echo off
    set MEM_ARGS=-Xms256m -Xmx512m -XX:MaxPermSize=512m -XX:-UseSSE42Intrinsics
    if "%ADMIN_URL%" == "" goto runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.management.server=\"%ADMIN_URL%\" -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    goto finish
    :runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    :finish
    rem *** Set up extrapath for win32 and win64 platform separately
    if "%WL_USE_X86DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\32;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\32\oci920_8
    if "%WL_USE_IA64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\64\oci920_8
    if "%WL_USE_AMD64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\x64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\x64\oci920_8
    rem *** Install the service
    "%WL_HOME%\server\bin\beasvc" -install -svcname:"3.Oracle BI 11g BI Server" -javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%" -maxconnectretries:"%MAX_CONNECT_RETRIES%" -host:"%HOST%" -port:"%PORT%" -extrapath:"%EXTRAPATH%" -password:"%WLS_PW%" -cmdline:%CMDLINE% -log:"D:\Oracle\Middleware\ServiceStartLogs\BIServer-stdout.txt"
    ENDLOCAL
    Edited by: J.A.M on Mar 31, 2012 8:51 AM

  • Other user can't access to OBIEE 11G installed on a server

    Hello,
    We have installed OBIEE 11G on a server ( windows sever 2008 r2) with admin account, and it works fine, But others users can't access to obiee 11g ( administration icons are white in their sessions) even they have admin rights.
    Can anyone tell me what should we do??
    Thank you.

    Hi,
    This is the exact format how my tnsnames.ora file looks. sorry, I can ping it in command prompt now. In my connection pool i tried first DSN =  ab.bc.xy.zx, did not work. Then I saw oracle's default repository and changed my DSN to your suggested format starting from "DESCRPTION" to rest. Still no luck Do you think, i should put the same TNS in my local machine??
    ab.bc.xy.zx =
    (DESCRIPTION =
        #(ADDRESS = (PROTOCOL = TCP)(HOST = 10.20.30.110)(PORT = 1521))
        #(ADDRESS = (PROTOCOL = TCP)(HOST = 10.20.30.120)(PORT = 1521))
        (ADDRESS = (PROTOCOL = TCP)(HOST = 10.20.30.130)(PORT = 1521))
        (LOAD_BALANCE = yes)
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SID = cap2)
    thanks,
    BK.

  • Can not login access manager

    mail server version is JES messaging Server 6 2005Q4 :
    My Access Manager:http://hostname:8080/amserver
    last week, i login access manager, under the web label or configuration label�F
    in "ldap" item�Ci add new dc=xx,dc=xx,dc=xx�C
    then save configuration.
    but after that i can not login access manager.
    when i user admin login,it print:"
    Authentication failed".
    what should i do to restore access manage?
    thanks!

    javatoall wrote:
    Hi,
    I login Access Manager, access sample "realm" -> Authentication->
    Advance Properties -> User profiles and then I choiced "Dynamic with user Alias".
    Then I only configure JDBC authentication with mysql database that I don't used ldapservice.
    When I created a one new user in MySQL, I can login into web application that i security as "sample.war" successfull but new user don't right access resource that i protected before.
    When i login access manager with amdmin user, I can not find user that i has been created it in MySQL database. t
    When the users are created through the dynamic profile, the default cn/sn are set to "default" , after creation you need to login to amconsole as amadmin and change/add proper values for these attributes.
    Alternatively you can set the protected resource's policy subject to Authenticated users. This will work but not sure will meet your requirement
    >
    When i login access manager console with new user, it login successful, and view Profile of new user that I has been created.
    Can you tell me How to manage new user that I has been new in MySQL by Access manager console ?
    I want to configure access proteced resourse for that user. How to configure that ?
    read above use the authenticated users subject
    Thank for every help.
    VinhND.

  • Can not login to Oracle Application Express after upgrade to 3.2

    I installed oracle database express and then I upgrade APEX to 3.2 on it. I got the login page but I can not login by using any account, like SYS, SYSTEM. From the document, internal ADMIN account should exist but I did not see it from dba_users table.
    Thanks,
    Julie

    HI Don,
    I did run apxchpwd.sql to change the Application Express ADMIN user password. Then I invoked http://mymachine:8080/apex and got the Application Express login page. I put ADMIN in workspace and ADMIN in Username and the new password. But I still cannot login. I also tried http://mymachine:8080/apex/apex_admin page login. I typed ADMIN as username and the new password. Then I clicked on Login button. Nothing happened. No error message.
    Any idea?
    By the way, what does apxxepwd.sql do?
    Thanks,
    Julie

  • Apple tv 2 problem: I can not login with my ID account!!!!!

    apple tv does not login with my ID! Do you have a solution? Since a few weeks I can not login in with my password...
    I tried everything:
    - re-starting apple tv.
    - login on macbook with my apple ID with new password

    Signal Strengh on WiFi was great (its a new Apple Time Capsule and has to be reset often).  Checked the internet connectivity on other machines too (incase that was inop).   I checked the network first as that is typically a impediment to all other things working prior to my previous comment.  I logged in to iTunes and MobleMe to see that my password was correct and working.  hmmm.
    I reset the Apple TV next and again changed my iTunes password on my laptop, then ran a network test (which needs a itunes password to work).  Network check was successful and I am logged back in.
    Now it says...."Netflix is currently unavailable. Try again later".
    geez.

  • I have an apple id but ı can not use it for sign in to itunes connect account while publishing my ibook document. Why ı can not login? What can ı do to figure out this problem?

    I have an apple id but ı can not use it for sign in to itunes connect account while publishing my ibook document. Why ı can not login? What can ı do to figure out this problem?

    As note already on the iBA forum [ AppleID for ibooks publishing ], you need two IDs. You can't use your developer ID.
    If you already signed up for books with that ID, you need to talk to Apple to straighten things out.

  • My computer is off and set up on Japanese. I can not login anymore because I type the password in English but the keyboard was set up last in Japanese language.how can I change the language by using the keyboard only so that I can write in English my pass

    Hi
    My computer was shut down. It was set on Japanese Hiragana language before shutting down. Now I want to login with my password in English. Yet, teh keyboard was set in Japanese and thus, I can not login anymore. How can I reset/change from Hiragana Japanese mode to Englsih ( US) with some shortcuts on my keyboard?
    thank you

    Try Apple/Command + space.
    For the future, go to system prefs/accounts/login items and check the box for Show Input Menu on Login Screen.

  • I changed my Apple ID (other email address and password) and now I can not login to my account in the iPhone iCloud. When I open the tab iCloud displayed my old Apple ID (it was in the iCloud) and asks for a password, but neither the old nor the new passw

    I changed my Apple ID (other email address and password) and now I can not login to my account in the iPhone iCloud. When I open the tab iCloud displayed my old Apple ID (it was in the iCloud) and asks for a password, but neither the old nor the new password does not match. What to do?

    If you want to change your iCloud ID or password on your phone go to Settings>iCloud and tap Delete Account, then sign back in with your updated information.  Note: this only deletes the account and any synced data from your phone, not from iCloud.  Provided you are signing back into the same account and not changing accounts it will be synced back to your device when you sign back in.

  • 11g - is disconnected analytics not included in obiee 11g?

    11g - is disconnected analytics not included in obiee 11g?

    Nope, it´s expected to be in the next patch update.

  • I can not login in my Mac Pro with my new apple ID?

    I installed 10.8.5 but I can not login as administrator with my new(confirmed)password:the new password is not accepted. So what can be the reason but more important: how to solve this nasty problem?
    TIA

    The password for logging into your computer is not the same as your Apple ID password. These Apple documents tell how to reset your password for you computer:
    OS X Mountain Lion: If you forget your login password
    OS X Mountain Lion: Reset a login password
    OT

  • I created an Apple ID on my iPhone, but I can not download any application because a message appears saying that iTunes can not login.

    I created an Apple ID on my iPhone, but I can not download any application because a message appears saying that iTunes store can not login. The strange thing is that my Apple ID works perfectly when I try to access my icloud browser on my iMac and even I join this forum. I login with my ID system icloud without problems! Why can not I download applications? What relationship has between iTunes store and iCloud?

    You cannot download the same Apps that you have on your iPhone. They are two seperate stores.
    The store you have on your iPhone is the same for any iDevice (iPad, iPhone and iPod)
    The store on your MacBook is only for Macs.

  • I can not login to a certain account due to an error stating cookie not enabled, however my 3rd party cookies are enabled. How do I correct this?

    I can not login to a certain account due to an error stating cookie not enabled, however my 3rd party cookies are enabled. How do I correct this?

    COOKIE_DOMAIN=.hackers
    I think this is the problem. .hackers is no valid cookie domain. You have to use something like:
    .xy.ab
    (two points)
    I fear it is not possible to correct this easiely. First change the hostname to something allowed e.g. hackers.com
    Then open an ldap browser and edit ou=iplanetamplatformservice,ou=services,dc=hackers
    There is an entry with an xml. Copy the xml to an editor, search for .hackers, change it to a valid domainname.
    Im not sure if a restart of the webserver is necessary here.
    Another idea: You could also try to set the cookie domain to solnce.hackers, maybe this is accepted, even if it is not a cookie domain. But I dont know if this works...
    hth
    Chris

  • After install oracle 10g, enterprise manager web version, can not login

    Hi Guru,
    I have installed oracle 10g on windows xp pro sp2 successfully, can use sqlplus to connect to DB, but when using IE to login enterprise manager web version port 1158, it failed. The login page came out, but when I keyed in the right userid/password ie sysman/pwd1234, the login screen just refreshed, nothing happen. but if I purposely key in wrong userid or password, the message "invalid userid or password" comes out.
    Another "interesting" thing is, I can login web version isqlplus successfully using the same userid/password. but can not connect to web version isqlplus/dba, even I use user sys, also can not login.
    Need your urgent help to solve this problem.

    Hi.
    What does the log say?
    From %ORACLE_HOME%\opmn\logs folder.
    rgds
    Kjell

Maybe you are looking for

  • ASK THE EXPERTS : High Density Wireless Deployments and CleanAir Technology

    with Welcome to the Cisco Support Community Ask the Expert conversation. This is an opportunity to get an update on High Density Wireless Deployments and CleanAir technology with Cisco expert Fred Niehaus. Fred is a technical marketing engineer for t

  • ASA5505 - Setting up a LAN to access Internet

    Hi there, I am new to the Networking and CISCO world, although I used to play around iptables and Untangle firewalls. Unfortunately my laptop does not have a serial port and until I get a USB-to-RS232 adapter I am going to use ASDM for the setup of m

  • Problem with 4:3 resolutions in Widescreen

    Hello. My problem is this, I have a notebook dell with an intel x3100 and widescreen. I have the driver xf86-video-intel and everything works just fine, except for this little thing. I have some games that only work with 4:3 resolution, and I want th

  • Requirement : delivery Quantity should be same as Order Qty

    The person entering the delivery qty shuold not be able to change the qty as entered in Sales order. how do we keep this control?

  • Requested delivery date is not filled on the header

    Hi everyone! I'm trying to configure the system to automatically calculate delivery date in sales order based on the other date and duration. I'm working with standalone CRM 7.0 and I've configured date profile for sales order that uses REQ_DLV_DATE