Bi_server1 is not starting in obiee 11.1.1.7.0

Hi All,
I have installed OBIEE latest version 11.1.1.7.0.
when restarting all the services, I checked in weblogic console. The Admin Server is running but the bi_server1 does not want to start because of the following error.
ERROR: weblogic.servlet.jsp.CompilationException: Failed to compile JSP /jsp/com/oracle/workspace/Repository.jsp
Please suggest some clues how to resolve the issues.
Thanks,
BK.

Hi,
Please check this once....
http://onlineappsdba.com/index.php/2011/06/21/unable-to-login-to-obiee-anylytics-after-oid-integration-user-was-authenticated-but-could-not-be-located-within-the-identity-store/
Please mark if it helps you......

Similar Messages

  • 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

  • Bi_server1 is not starting in OBIEE11g.

    Hi All,
    bi_server1 is not starting in OBIEE11g.
    All the services are alive except the bi_server1.
    While doing restarting in console getting a message called
    Failed to instantiate logViewer class
    Any help is highly appreciated.
    Thanks,
    Praveen.
    Edited by: Praveen on Sep 16, 2011 4:59 AM

    Hi,
    I didnt changed any thing in config files.
    In console when i am trying to restart the bi_server1 we are getting a message called FAILED_NOT_RESTARTABLE.
    Can any one say what is the cause for this error.
    In my error log file these are the errors which i got
    <txt>Invalid Remote Targets: [Target Name: /Farm_bifoundation_domain/bifoundation_domain/bi_server1, Target Type: weblogic_j2eeserver, Display Name: bi_server1 => com.bea:Name=bi_server1,Type=Server]</txt>
    <txt>failed to instantiate logViewer class for /Farm_bifoundation_domain/bifoundation_domain/bi_server1</txt>
    <txt>Unable to communicate with the remote mbean: oracle.logging:type=LogQuery,name=bi_server1,Location=bi_server1. Check if the managed server is up and running</txt>
    <txt>Invalid Remote Targets: [Target Name: /Farm_bifoundation_domain/bifoundation_domain/bi_server1, Target Type: weblogic_j2eeserver, Display Name: bi_server1 => com.bea:Name=bi_server1,Type=Server]</txt>
    Any help is highly appreciated.
    Thanks,
    Praveen.

  • BI Server not starting in OBIEE 11g

    hi,
    While starting the BI server from Enterprise Manager in OBIEE 11g I am facing this issue.
    the details in the error log says.
    [2010-09-15T05:45:58.000+00:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 00hvhkOQB^r0Vsk_Kxx0ie0001F^000000] [tid: 14d8] [43065] The connection with Cluster Controller SJRH-011:9706 was lost.
    Could you please let me know how to solve this issue. Also the other components are also not starting.
    Any pointers would be useful .
    Thanks,
    Bhavik

    go to <middleware>/instance/../bin folder in the command prompt and try
    opmnctl statusProcesses in Instance: instance1
    --------------------------------------------------------------+---------
    ias-component | process-type | pid | status
    --------------------------------------------------------------+---------
    coreapplication_obiccs1 | OracleBIClusterCo~ | 2668 | Alive
    coreapplication_obisch1 | OracleBIScheduler~ | 3252 | Alive
    coreapplication_obijh1 | OracleBIJavaHostC~ | 1584 | Alive
    coreapplication_obips1 | OracleBIPresentat~ | 4420 | Alive
    coreapplication_obis1 | OracleBIServerCom~ | 4996 | Alive
    see whether the cluster control is alive.. if the status is other than Alive.. try to restart the BI cluster controls from http://localhost:7001/em/
    check the status, then start the BI presentation servers...
    hopefully this should start the servers to 100%

  • Managed server is not starting -  Upgrading OBIEE from 11.1.1.6.2 to 11.1.1.7

    We are in the final stage of the installation.
    We are following the steps mentioned in http://www.rittmanmead.com/2013/04/upgrading-obiee-to-11-1-1-7/ .
    while running the  'Configuration Assistant' to update the BI domain the Managed server is not getting started.
    We are getting issue with SSL hand shake...Can any one help us to resolve this.
    ===========================
    Configuration Assistant Log
    ===========================
    BI Configuration
    Log
    Config Action BI Configuration started
    Executing: opmnctl stopall
    Log
    Step Executing: opmnctl stopall started
    Step Executing: opmnctl stopall ended successfully
    Stopping Managed Server: bi_server1
    Log
    Step Stopping Managed Server: bi_server1 started
    Step Stopping Managed Server: bi_server1 ended successfully
    Upgrading JRF Shared Libraries
    Log
    Step Upgrading JRF Shared Libraries started
    Step Upgrading JRF Shared Libraries ended successfully
    Upgrading OPSS Code Grants
    Log
    Step Upgrading OPSS Code Grants started
    Step Upgrading OPSS Code Grants ended successfully
    Upgrading Oracle Business Intelligence Code Grants
    Log
    Step Upgrading Oracle Business Intelligence Code Grants started
    Step Upgrading Oracle Business Intelligence Code Grants ended successfully
    Upgrading Non-J2EE Management EAR
    Log
    Step Upgrading Non-J2EE Management EAR started
    Step Upgrading Non-J2EE Management EAR ended successfully
    Deploying BI Content Server JEE application
    Log
    Step Deploying BI Content Server JEE application started
    Step Deploying BI Content Server JEE application ended successfully
    Deploying BI Composer JEE application
    Log
    Step Deploying BI Composer JEE application started
    Step Deploying BI Composer JEE application ended successfully
    Deploying JBIPS JEE application
    Log
    Step Deploying JBIPS JEE application started
    Step Deploying JBIPS JEE application ended successfully
    Restarting AdminServer
    Log
    Step Restarting AdminServer started
    Step Restarting AdminServer ended successfully
    Starting Managed Server: bi_server1
    Error
    Failed to achieve state RUNNING in 3600seconds.   The server is currently in state SHUTDOWN
    Step Starting Managed Server: bi_server1 failed
    Configuration Action 'Starting Managed Server: bi_server1' has failed. Please check logs for details.
    Step Starting Managed Server: bi_server1 failed
    Log
    Step Starting Managed Server: bi_server1 started
    Step Starting Managed Server: bi_server1 failed
    Configuration Action 'Starting Managed Server: bi_server1' has failed. Please check logs for details.
    Step Starting Managed Server: bi_server1 failed
    Executing: opmnctl startall
    Log
    Upgrading Oracle Business Intelligence Catalogs
    Log
    ===========================
    Dec 13, 2013 9:36:59 AM weblogic.nodemanager.server.Handler run
    WARNING: Uncaught exception in server handlerjavax.net.ssl.SSLKeyException: [Sec
    urity:090482]BAD_CERTIFICATE alert was received from botd-rptobapp2.devop.vertaf
    ore.com - 192.12.12.13. Check the peer to determine why it rejected the certif
    icate chain (trusted CA configuration, hostname verification). SSL debug tracing
    may be required to determine the exact reason the certificate was rejected.
    javax.net.ssl.SSLKeyException: [Security:090482]BAD_CERTIFICATE alert was receiv
    ed from botd.devop.com - 192.12.12.13. Check the peer to d
    etermine why it rejected the certificate chain (trusted CA configuration, hostna
    me verification). SSL debug tracing may be required to determine the exact reaso
    n the certificate was rejected.
    Nodemanger.log
    <Oct 7, 2013 10:28:35 AM> <INFO> <Loading domains file: c:\oracle\wlserver_10.3\common\nodemanager\nodemanager.domains>
    <Oct 7, 2013 10:28:38 AM> <INFO> <Loading identity key store: FileName=c:/oracle/WLSERV~1.3/server\lib\DemoIdentity.jks, Type=jks, PassPhraseUsed=true>
    <Oct 7, 2013 10:28:38 AM> <INFO> <Loaded node manager configuration properties from 'c:\oracle\WLSERV~1.3\common\nodemanager\nodemanager.properties'>
    <Oct 7, 2013 10:28:38 AM> <INFO> <bifoundation_domain> <bi_server1> <Startup configuration properties loaded from "C:\oracle\user_projects\domains\bifoundation_domain\servers\bi_server1\data\nodemanager\startup.properties">
    <Oct 7, 2013 10:28:42 AM> <INFO> <Secure socket listener started on port 9556>
    <Oct 7, 2013 10:35:51 AM> <WARNING> <Uncaught exception in server handlerjavax.net.ssl.SSLKeyException: [Security:090482]BAD_CERTIFICATE alert was received from botd.devop.com - 192.12.12.13. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.>
    javax.net.ssl.SSLKeyException: [Security:090482]BAD_CERTIFICATE alert was received from botd.devop.com - 192.12.12.13. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireException(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertReceived(Unknown Source)
    at com.certicom.tls.record.alert.AlertHandler.handle(Unknown Source)
    at com.certicom.tls.record.alert.AlertHandler.handleAlertMessages(Unknown Source)
    at com.certicom.tls.record.MessageInterpreter.interpretContent(Unknown Source)
    at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Source)
    at com.certicom.tls.record.ReadHandler.processRecord(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readUntilHandshakeComplete(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.completeHandshake(Unknown Source)
    at com.certicom.tls.record.ReadHandler.read(Unknown Source)
    at com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
    at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:264)
    at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:306)
    at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:158)
    at java.io.InputStreamReader.read(InputStreamReader.java:167)
    at java.io.BufferedReader.fill(BufferedReader.java:136)
    at java.io.BufferedReader.readLine(BufferedReader.java:299)
    at java.io.BufferedReader.readLine(BufferedReader.java:362)
    at weblogic.nodemanager.server.Handler.run(Handler.java:71)
    at java.lang.Thread.run(Thread.java:662)
    Admin server Log
    for protocols iiop, t3, ldap, snmp, http.>
    <Dec 15, 2013 4:59:29 AM PST> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure" is now listening on 192.12.12.13
    :7002 for protocols iiops, t3s, ldaps, https.>
    <Dec 15, 2013 4:59:29 AM PST> <Notice> <WebLogicServer> <BEA-000329> <Started WebLogic Admin Server "AdminServer" for do
    main "bifoundation_domain" running in Production Mode>
    <Dec 15, 2013 4:59:29 AM PST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Dec 15, 2013 4:59:29 AM PST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    <Dec 15, 2013 5:00:12 AM PST> <Notice> <LoggingService> <BEA-320400> <The log file C:\oracle\user_projects\domains\bifou
    ndation_domain\servers\AdminServer\logs\AdminServer.log will be rotated. Reopen the log file if tailing has stopped. Thi
    s can happen on some platforms like Windows.>
    <Dec 15, 2013 5:00:12 AM PST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\oracle\user_pr
    ojects\domains\bifoundation_domain\servers\AdminServer\logs\AdminServer.log00002. Log messages will continue to be logge
    d in C:\oracle\user_projects\domains\bifoundation_domain\servers\AdminServer\logs\AdminServer.log.>
    CertPathTrustManagerUtils.certificateCallback: certPathValStype = 0
    CertPathTrustManagerUtils.certificateCallback: validateErr = 16
    CertPathTrustManagerUtils.certificateCallback: chain[0] = Serial number: -157025747728280783581574168894965558517
    Issuer:C=US, ST=MyState, L=MyTown, O=MyOrganization, OU=FOR TESTING ONLY, CN=CertGenCAB
    Subject:C=US, ST=MyState, L=MyTown, O=MyOrganization, OU=FOR TESTING ONLY, CN=BOTD-RPTOBAPP2
    Not Valid Before:Sun Aug 12 11:27:29 PDT 2012
    Not Valid After:Fri Aug 13 11:27:29 PDT 2027
    Signature Algorithm:MD5withRSA
    ==============
    Narendar Reddy

    Hi Folks,
    Any inputs in the above issue is highly appreciated.
    "Error
    Failed to achieve state RUNNING in 3600seconds.   The server is currently in state SHUTDOWN
    Step Starting Managed Server: bi_server1 failed
    Configuration Action 'Starting Managed Server: bi_server1' has failed."
    Regards,
    Aj

  • OBIEE Presentation Services Service Does not Start

    I am unable to start OBIEE Presentation Services ,
    i am getting the following error: The Oracle BI Presentation Server service terminated with service-specific error 4294967295 (0xFFFFFFFF).
    i tried some of the solutions posted in these forums, Still i am not able to start my OBIEE Presentation Server service. except the presentation services, i am able to start all other OBIEE services.
    i have my OBIEE installed on a Windows 2003 Server. i was able to start presentation services before configuring OBIEE Scheduler, but after configuring the OBIEE Scheduler i am not able to start the presentation services.
    Please Help me, what should i do ?
    Thanks in Advance
    Venkatesh.
    Edited by: user10283863 on Nov 10, 2008 11:16 AM

    Hi Venkatesh,
    Thanks for the points,
    hmmm... it's better once you send me the instanceconfig.xml file to my mail you find in my profile.
    if you want you can remove you hostname instead of that you keep any word xxx :)
    As per my knowledge you might have added the <SubjectAreaMetadata> tag if not, in 9th step of venkat's blog http://oraclebizint.wordpress.com/2007/09/13/oracle-bi-ee-10133-configuring-delivers-ibots/ you might have done wrong...
    Check the spelling once again with that and path you are mentioning in this tag also important. Please make sure that you have put this tag before
    +</ServerInstance>+
    +</WebConfig>+ .....tags
    And also try start of presentation server by removing this tag you added in instanceconfig.xml, if it's running then this is the problem...
    Thanks & Regards
    Kishore Guggilla
    Edited by: Kishore Guggilla on Nov 11, 2008 11:08 AM

  • OBIEE 11g OPMNCTL not starting

    Hi All,
    When I'm trying to start my OBIEE services, all the services are starting, but the OPMNCTL status is not starting.
    When I'm trying to start it manually, It is giving me the below error message.
    Cannot resolve My-PC for instance any
    opmnctl Status: OPMN is not running
    At that time internet is not connected. But after I connected the net it didn't give this message. OPMNCTL started.
    Is it necessary to have internet to start my services.
    If not necessary how can I resolve my error when not connected to net.
    Thanks in advance.

    Hi,
    Make sure static ip r u using? If u used to installed dynamic
    Ip it throw this kind off issue . I have face this same issue in obiee11.1.1.3 with dynamic ip address
    Note: u shoud use static ip ( configure look back adopter )
    Thanks
    Deva

  • OBIEE presentation services not starting

    HI,
    i downloaded samplesales OBIEE 11.1.1.6 bp2 virtual box image but presentation services are not starting ..giving 5 errors as follows
    #SEARCH_CRITERIA
    #     START_TIME: 2012-10-16T23:06:55.391+03:00
    #     END_TIME: 2012-10-16T23:11:55.391+03:00
    #     MESSAGE_TYPES:ERROR, UNKNOWN
    #     ecid [OP_IS_IGNORE_CASE] 11d1def534ea1be0:5841315a:13a6b2c4365:-8000-00000000000000ef
    #SELECTED_TARGETS_LIST
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer:weblogic_j2eeserver
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/ActionSamples:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/DMS Application(11.1.1.1.0):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/ESSAPP:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/EssbaseCalc:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/FMW Welcome Page Application(11.1.0.0.0):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/NonJ2EEManagement(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/OracleRTD(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/adminservice(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/analytics(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/analyticsRes:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/apex:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/biadminservices(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/biadminutils(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/bicontentserver(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/bilocaladmin(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/bimiddleware(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/bioffice(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/biofficeclient(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/bipublisher(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/bisearch(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/em:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/i:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/mapviewer(11.1.1):j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/metadatadict:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/wsil-wls:j2ee_application
    #     /Farm_bifoundation_domain/bifoundation_domain/AdminServer/wsm-pm:j2ee_application
    #     /Farm_bifoundation_domain/instance1/coreapplication_obiccs1:oracle_bi_cluster_controller
    #     /Farm_bifoundation_domain/instance1/coreapplication_obijh1:oracle_bi_java_host
    #     /Farm_bifoundation_domain/instance1/coreapplication_obips1:oracle_bi_presentation_services
    #     /Farm_bifoundation_domain/instance1/coreapplication_obis1:oracle_bi_server
    #     /Farm_bifoundation_domain/instance1/coreapplication_obisch1:oracle_bi_scheduler
    [2012-10-16T23:10:49.092+03:00] [AdminServer] [ERROR] [] [oracle.bi.management.sysmancommon] [host: obieesampleapp.us.oracle.com] [nwaddr: 127.0.0.1] [tid: Thread-183] [userId: weblogic] [ecid: 11d1def534ea1be0:5841315a:13a6b2c4365:-8000-00000000000000ef,0] [APP: biadminservices#11.1.1] [TARGET: /Farm_bifoundation_domain/bifoundation_domain/AdminServer/biadminservices(11.1.1)] [TARGET_TYPE: j2ee_application] Operation Failed: start; OracleInstance: instance1; Component: coreapplication_obips1; msg: 0 of 1 processes started.
    [2012-10-16T23:10:49.112+03:00] [AdminServer] [ERROR] [OBI-SYSMAN-1249] [oracle.bi.management.sysmancommon] [host: obieesampleapp.us.oracle.com] [nwaddr: 127.0.0.1] [tid: Thread-148] [userId: weblogic] [ecid: 11d1def534ea1be0:5841315a:13a6b2c4365:-8000-00000000000000ef,1:29115] [APP: biadminservices#11.1.1] [TARGET: /Farm_bifoundation_domain/bifoundation_domain/AdminServer/biadminservices(11.1.1)] [TARGET_TYPE: j2ee_application] Processing Event: SEVERE: Element Type: PROCESS, Element Id: instance1:coreapplication_obips1, Operation Result: FAILED_TO_START, Detail Message: Operation Failed: start; OracleInstance: instance1; Component: coreapplication_obips1; msg: 0 of 1 processes started.
    [2012-10-16T23:10:51.384+03:00] [AdminServer] [ERROR] [OBI-SYSMAN-1249] [oracle.bi.management.sysmancommon] [host: obieesampleapp.us.oracle.com] [nwaddr: 127.0.0.1] [tid: Thread-148] [userId: weblogic] [ecid: 11d1def534ea1be0:5841315a:13a6b2c4365:-8000-00000000000000ef,1:29115] [APP: biadminservices#11.1.1] [TARGET: /Farm_bifoundation_domain/bifoundation_domain/AdminServer/biadminservices(11.1.1)] [TARGET_TYPE: j2ee_application] Processing Event: SEVERE: Element Type: BI_INSTANCE, Element Id: coreapplication, Operation Result: FAILED_TO_START, Detail Message: Error in starting one or more components of BI Instance; Please check the server log files for detailed message.
    [2012-10-16T23:10:51.386+03:00] [AdminServer] [ERROR] [EM-02694] [oracle.sysman.emai.view.bi.impl.ProgressDialogHelper] [host: obieesampleapp.us.oracle.com] [nwaddr: 127.0.0.1] [tid: Thread-148] [userId: weblogic] [ecid: 11d1def534ea1be0:5841315a:13a6b2c4365:-8000-00000000000000ef,1:29115] [APP: em] [TARGET: /Farm_bifoundation_domain/bifoundation_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Supplementary information regarding operation: PROCESS:instance1:coreapplication_obips1;FAILED_TO_START;Operation Failed: start; OracleInstance: instance1; Component: coreapplication_obips1; msg: 0 of 1 processes started.
    [2012-10-16T23:10:51.387+03:00] [AdminServer] [ERROR] [EM-02694] [oracle.sysman.emai.view.bi.impl.ProgressDialogHelper] [host: obieesampleapp.us.oracle.com] [nwaddr: 127.0.0.1] [tid: Thread-148] [userId: weblogic] [ecid: 11d1def534ea1be0:5841315a:13a6b2c4365:-8000-00000000000000ef,1:29115] [APP: em] [TARGET: /Farm_bifoundation_domain/bifoundation_domain/AdminServer/em] [TARGET_TYPE: j2ee_application] Supplementary information regarding operation: BI_INSTANCE:coreapplication;FAILED_TO_START;Error in starting one or more components of BI Instance; Please check the server log files for detailed message.
    #MESSAGE_COUNT: 5
    i have already tried below mentioned things but still issue persists,
    RESOLUTION:
    Connect to WebLogic Server (WLS) Console -> Deployments. Ensure that all deployed components are in ‘Active’ state.
    Use the command prompt to verify the opmn status, as the EM console will not always reflect the correct status.
    If any of the components is in ‘Prepared’ state, select that application and then click on “start servicing all requests”.
    Restart BI Server and Presentation Services
    If this does not resolve the issue please follow the steps below:
    In some cases, the following additional step might be needed to resolve the issue.
    Access the Enterprise Manager Fusion Middleware control: http://<host.domain>:port/em
    Navigate to Business Intelligence -> coreapplication
    ‘Capacity Management’ tab -> ‘Scalability’ sub-tab
    Click on ‘Lock and Edit Configuration’ button
    Enter the IP address in the ‘Listen Address’ field
    Click on ‘Activate Changes’ followed by ‘Release Configuration’ buttons.
    Restart BI Server and Presentation Services
    Please guide.
    log file is as below,
    [2012-10-16T23:10:38.000+03:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.6.2 (Build 120605.2000 BP1 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:455
    Location:
         saw.sawserver
    ecid:
    [2012-10-16T23:10:39.000+03:00] [OBIPS] [ERROR:31] [] [saw.connectionPool.getConnection] [ecid: ] [tid: ] Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:connection.cpp
    Line:395
    Location:
         saw.connectionPool.getConnection
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2012-10-16T23:10:39.000+03:00] [OBIPS] [ERROR:10] [] [saw.security.odbcuserpopulationimpl.initialize] [ecid: ] [tid: ] Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:odbcuserpoploaderimpl.cpp
    Line:316
    Location:
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2012-10-16T23:10:39.000+03:00] [OBIPS] [ERROR:31] [] [saw.security.odbcuserpopulationimpl.initialize] [ecid: ] [tid: ] 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).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:odbcuserpoploaderimpl.cpp
    Line:319
    Location:
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2012-10-16T23:10:39.000+03:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:713
    Location:
         saw.sawserver
    ecid:
    [2012-10-16T23:10:45.000+03:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.6.2 (Build 120605.2000 BP1 32-bit) are starting up.[[
    File:sawserver.cpp
    Line:455
    Location:
         saw.sawserver
    ecid:
    [2012-10-16T23:10:47.000+03:00] [OBIPS] [ERROR:31] [] [saw.connectionPool.getConnection] [ecid: ] [tid: ] Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:connection.cpp
    Line:395
    Location:
         saw.connectionPool.getConnection
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2012-10-16T23:10:47.000+03:00] [OBIPS] [ERROR:10] [] [saw.security.odbcuserpopulationimpl.initialize] [ecid: ] [tid: ] Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:odbcuserpoploaderimpl.cpp
    Line:316
    Location:
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2012-10-16T23:10:47.000+03:00] [OBIPS] [ERROR:31] [] [saw.security.odbcuserpopulationimpl.initialize] [ecid: ] [tid: ] 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).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:odbcuserpoploaderimpl.cpp
    Line:319
    Location:
         saw.security.odbcuserpopulationimpl.initialize
         saw.catalog.local.loadCatalog
         saw.subsystems.catalogbootstrapper.loadcatalog
         saw.webextensionbase.init
         saw.sawserver
    ecid:
    [2012-10-16T23:10:47.000+03:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:713
    Location:
         saw.sawserver
    ecid:
    Edited by: 948856 on Oct 16, 2012 1:24 PM

    hi Christian,
    tried it.still same error. going to download fresh VMs from oracle.hoping same issue will not come again.
    thanks,

  • OBIEE Scheduler & Presentation Services do not start

    Hi all,
    OBIEE installation on my laptop was working fine, until recently there was some vista update, i know Oracle does not support Vista, but for some reason it stopped working, any help would be really apprciated.
    For Scheduler I get the 1064 error
    For presentation services i get the error code -1
    Note: My Javahost and BI Server is running fine.
    I am all for reinstalling, but I dont think that is the solution, so I am trying my best to trouble shoot this, as i dont think re installation will be a very appropriate solution on a client's server.
    Thanks.
    Rgds,
    SB

    ok i din see a clear soution here so i am posting this here ..
    The reason why i got that error was because my catalog file for the demo that i was doing was corrupt, How why i dont know ..
    So here is what i did,
    I created a new directory in Drive:\OracleBIData\web\catalog\newcatalog
    I started catalog manager from Start> Programs > OBIEE > Catalog Manager
    Select Offline
    Select Tools > Upgrade Catalog
    I merged the old corrupt catalog with this new one
    Went to the Instanceconfig.xml file Drive:\OracleBIData\web\config
    Carefully replace the Catalog tag:
    <CatalogPath>C:/OracleBIData/web/catalog/newcatalog</CatalogPath>
    Checked on the Java Home Tag just to make sure it is correct:
    <JavaHome>C:\Program Files\Java\jdk1.5.0_10</JavaHome>
    (Some of you may see your 'Oracle Java Host' working and the main reason is this path is not correct.
    also if possible check if the credential tag is in place, it did not cause a problem for me tho..
    <CredentialStore>
    <CredentialStorage type="file" path="C:\OracleBIData\web\config\credentialstore.xml" />
    </CredentialStore>
    Go back to services and start presentation services and it should work!
    Have fun.
    Goodnight.

  • OBIEE Answers not starting

    Hello,
    I installed obiee 10.1.3.4 on windows 7. The installation was successfull. All the services are starting. I was able to open the default rpd. But I am not able to open the presentation services.
    It gives page not found. I have restarted the services and also rebooted the system. Also I have turned down the windows firewall. But still the presentation services doesn't start.
    I am not sure what is wrong. Please help me out figure it out.
    Thanks
    DS

    Hi,
    just figure out three things if presentation server is not running,in most cases it will be solved
    step 1: check whether OBI presentation server service is running or not.?if not, start it
    step 2: check whether your webserver/OC4J running?? if not start it
    step 3: check whether this file ->'analytics.ear' is present or not? if not, you create a new presentation service.
    regards,
    Niranjan K

  • BI Server is not starting in 11g

    Hi All,
    I have updated OBIEE 11.1.1.5 to 11.1.1.6.
    I started all the servers. But BI server is not starting. I got the below error.
    nqsserver: symbol lookup error: /data/obiee11g/3287/fmw_home1/Oracle_BI1/bifound ation/server/bin/libnqssimutility64.so: undefined symbol: _ZN15InactiveSchemas21                                                                              globalInactiveSchemasE
    Please suggest.

    seems like u're upgrade dint go clean , did you face any error or issue while upgrade ?

  • Opmn service does not start when try to start Oracle BI Services

    Hi ,
    I was able to install OBIEE 11g on my laptop and it worked fine for two days. Today when I try to login to rpd and type my user name and password I get the error that my user name and password is not correct. I tried to restart the machine and now I am not able to start opmn service.
    When I do Start>Oracle Business Intelligence (1)>Start BI Services, the script run and two command line windows open and about 10 minutes later get the last line that server started in RUNNING mode, but some how Oracle Process Manager (instance) service does not start. It started two days ago when I was able to login to OBIEE 11g.
    If I try to go to OBIEE 11g Home page I get this error "Error 500- Internal server error from RFC 2068 Hypertext Transfer Protocol- HTTP/1.1: 10.5.1 500 Internal server error
    Any Idea how to fix this one.
    Thanks

    Maybe you need to tick the "use fully qualified names" check box and make sure that you have the schema object created (as a "folder" between the database and the tables in the physical layer).

  • Usage tracking problem : not started due to non-existent Usage Tracking tab

    Hello,
    I need some help after following the necessary steps to setup 'Usage Tracking'.
    My table S_NQ_ACCT stays empty.
    The structure in the rpd files looks like
    * OBI Usage Tracking
    Connection Pool
    Usage Tracking Writer Connection Pool
    Catalog
    dbo
    S_NQ_ACCT
    My nqsconfig has the following entries related to usage tracking
    # Usage Tracking Section
    # Collect usage statistics on each logical query submitted to the
    # server.
    [ USAGE_TRACKING ]
    ENABLE = YES;
    DIRECT_INSERT = YES;
    PHYSICAL_TABLE_NAME = "OBI Usage Tracking"."Catalog"."dbo"."S_NQ_ACCT";
    CONNECTION_POOL = "OBI Usage Tracking"."Usage Tracking Writer Connection Pool" ;
    BUFFER_SIZE = 10 MB ;
    BUFFER_TIME_LIMIT_SECONDS = 5 ;
    NUM_INSERT_THREADS = 5 ;
    MAX_INSERTS_PER_TRANSACTION = 1 ;
    When making queries on the Usage Tracking SA, I still receive the following error in the NQServer.log File
    +[59049] Usage Tracking not started due to non-existent Usage Tracking table "<Database>"."<Catalog>"."<Schema>"."<Table>".+
    What am I doing wrong??
    Txs for your quick help on this!
    Kr,
    A.

    Can you post your entire NQSConfig.INI file?
    According to the message guide (http://download.oracle.com/docs/cd/E12103_01/books/AnyMsg/AnyMsg_Messages.html#wp1007961) the error you're getting specifies the table that OBIEE is trying to use, so the fact that yours reports literally "<Database>"."<Catalog>"."<Schema>"."<Table>" makes me think maybe the wrong config is being picked up. Also your comment that using a file instead of DB doesn't work either.

  • Oracle Process Manager(instance1) Service does not start

    Hello Friends,
    My Oracle Process Manger (instance1) windows service is not starting up.Due to which my presentation service is also down.
    Kindly suggest any solution. I am using OBIEE 11.1.1.7

    Thank you Reddy for your reply.
    I am getting below error message in presentation server log, as well I cannot open rpd in ONLINE mode.
    [2013-11-14T12:07:40.000+05:30] [OBIPS] [ERROR:31] [] [saw.security.odbcuserpopulationimpl.initialize] [ecid: ] [tid: ] 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).
    State: 08004.  Code: 10018.  [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:odbcuserpoploaderimpl.cpp

  • After restarting server BI Publisher is not started automatically

    Hi all,
    I am new in BI Publisher and have a problem. When I installed BI everything works OK. So I have logged on Publisher URL, authentication was successful and etc.
    After restarting the server (I have Oracle DB and Publisher in one server, but in different home) I tried to log on to the Publisher console (http://oraclebi.mycompany.ge:9704/xmlpserver) and url is not responding,seems that service is not started.
    Configurationdetails:
    Installation Details
    Middleware Home: /u01/app/oracle/bi
    BI Oracle Home: /u01/app/oracle/bi/Oracle_BI1
    WebLogic Server Home: /u01/app/oracle/bi/wlserver_10.3
    BI Domain Home: /u01/app/oracle/bi/user_projects/domains/bifoundation_domain
    BI Domain Name: bifoundation_domain
    Instance Home: /u01/app/oracle/bi/instances/instance1
    Instance Name: instance1
    Configure Components
    WebLogic Console
    http://oraclebi.mycompany.ge:7001/console
    Oracle Enterprise Manager
    http://oraclebi.mycompany.ge:7001/em
    Business Intelligence Enterprise Edition
    http://oraclebi.mycompany.ge:9704/analytics
    Business Intelligence Publisher
    http://oraclebi.mycompany.ge:9704/xmlpserver
    Could anyone help me how to start this service or how to setup to start it automatically?
    Thank in advance
    Edited by: zmachavariani on 17.01.2011 2:27

    Hi,
    There are many version of BI Publisher and also it can be deployed in many app servers. But from your log messages
    I can see you are trying to use BIP 11g in Weblogic Server (besides 11g only allows -as of today- to install in WLS).
    You should be aware that BIP11g after default installation uses a repository which is part of the BIEE Catalog and also
    uses FUSION as security Mode (i.e. users and pwds are no longer controled in BIEE Admin but in OEM).
    Therefore for BIP11g to work as default installation you also need BIEE11g to be running. For this i recommend you
    to first take a look at one of my posts:
    http://oraclebiblog.blogspot.com/2010/10/obiee-11g-architecture.html
    and then follow the guidelines to start it all:
    http://oraclebiblog.blogspot.com/2010/11/starting-and-stopping-biee-from-command.html
    Now, if you only want to use BIP11g there is a workaround. Make a backup of xmlp-server-config.xml
    and update the SECURITY mode from FUSION to XDO. Set a Local user for BIP and
    Restart BIP11g from within OEM and login as Local User.
    regards
    Jorge A.

Maybe you are looking for

  • Please help me urgently (Problem in using delete statement)

    Hello, I want to run delete query where table name should come from a variable .I have written the following procedure but its not working .Could you please help me DECLARE processtemplatename VARCHAR2(64); CURSOR T1Cursor IS select Process_template_

  • My i phone got ran over (smashed) cant power up at all,when i plug into a laptop its asks to verify my phone how can i get round this help!!!!!

    I phone 4   32 gb my phone got ran over by a car completely smashed it I need to retrieve data from it, I cant power up but when I plug it into a laptop it asks to verify the phone how can I do this with no front screen,I cant even replace the screen

  • How to get these Wiki's to work?

    I've been trying all evening to get these Wiki's on Leopard Server to work... They are turned on, but when accessing this standard webpage at xserve.local it says: "Group Wikis and Blogs are currently disabled. Use Server Preferences or Server Admin

  • Problem with pypanel and rgb

    Hi all, Been running OpenBox with pypanel for a while and everything has been running smooth, but then I updated and had to comment the rgb in xorg.conf. Now pypanel doesn't display any text or the clock, just the icons. What can I do in order to get

  • [SOLVED] Vim search history inserts A

    Hello, I have the following problem with Vim: when I press the up arrow in search mode (/<Up>), Vim switches to the insert mode and enters the letter A in a new line above the cursor. When I press /<Down>, the same happens, only the letter is B. Surp