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%

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

  • 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.

  • WebLogic admin server not starting.

    Hi all,
    I have a problem with my WebLogic Admin server not starting. Following a VM reboot last week our admin servers are no longer starting. On this particular server we have 3 admin servers serving 3 separate environments.
    Theserver seems to be getting stuck right at the very start. I have tried removing tmp, cache and ldap directories. Searched for and removed all .lok files. I have manually turned on full debug to try and flush some extra information through standard out but no luck. It is very peculiar. When we have exported the domain to another box and started the admin server it has come up successfully.
    This is the output from the logs - this is literally as far as it get before it hangs and does nothing. As far as I know the next thing WebLogic is doing is checking the version. Has anyone any ideas what the problem could be? It is server wide as all 3 admin servers on the same box are suffering the same problem.
    This is Weblogic 10.3.2 on a Solaris vm
    JAVA Memory arguments: -Xms256m -Xmx512m
    WLS Start Mode=Development
    CLASSPATH=/apps/Oracle/Middleware64/patch_wls1032/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/apps/Oracle/jrt/jrmc-4.0.1-1.6.0/lib/tools.jar:/apps/Oracle/Middleware64/utils/config/10.3/config-launch.jar:/apps/Oracle/Middleware64/wlserver_10.3/server/lib/weblogic_sp.jar:/apps/Oracle/Middleware64/wlserver_10.3/server/lib/weblogic.jar:/apps/Oracle/Middleware64/modules/features/weblogic.server.modules_10.3.2.0.jar:/apps/Oracle/Middleware64/wlserver_10.3/server/lib/webservices.jar:/apps/Oracle/Middleware64/modules/org.apache.ant_1.7.0/lib/ant-all.jar:/apps/Oracle/Middleware64/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar:/apps/Oracle/Middleware64/wlserver_10.3/common/eval/pointbase/lib/pbclient57.jar:/apps/Oracle/Middleware64/wlserver_10.3/server/lib/xqrl.jar
    PATH=/apps/Oracle/Middleware64/wlserver_10.3/server/bin:/apps/Oracle/Middleware64/modules/org.apache.ant_1.7.0/bin:/apps/Oracle/jrt/jrmc-4.0.1-1.6.0/jre/bin:/apps/Oracle/jrt/jrmc-4.0.1-1.6.0/bin:/usr/bin:/usr/sfw/bin
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://hostname:port/console *
    starting weblogic with Java version:
    Starting WLS with line:
    /apps/Oracle/jrt/jrmc-4.0.1-1.6.0/bin/java -jrockit -Xms256m -Xmx512m -Dweblogic.Name=AdminServer -Djava.security.policy=/apps/Oracle/Middleware64/wlserver_10.3/server/lib/weblogic.policy -Xverify:none -da -Dplatform.home=/apps/Oracle/Middleware64/wlserver_10.3 -Dwls.home=/apps/Oracle/Middleware64/wlserver_10.3/server -Dweblogic.home=/apps/Oracle/Middleware64/wlserver_10.3/server -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/apps/Oracle/Middleware64/patch_wls1032/profiles/default/sysext_manifest_classpath weblogic.Server
    <09-Jan-2013 18:32:06 o'clock GMT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Oracle JRockit(R) Version R28.0.1-21-133393-1.6.0_20-20100512-2127-solaris-sparcv9 from Oracle Corporation>

    Just a wild guess (as you have restarted the physical servers), it could be related to the entropy of the machine.
    What you can try to do is edit the java.security file in the $JAVA_HOME/jre/lib/security directory.
    Find the entry securerandom.source and edit the value to file:/dev/./urandom (instead of file:/dev/urandom)

  • Play video (http) works, stream video (rtmp) does not; edge server not starting

    However, I think the problem is the edge server not starting.
    I looked in the logs directory and found the core log, the master log.
    I also found /var/log/messages.
    Shouldn't there be an edge log?
    I did this from the readme:
    sudo ./fmsmgr server fms start
    udo ./fmsmgr adminserver start

    rats, hit the wrong button
    here is the rest of the report
    I did this
    sudo ./fmsmgr server fms start
    sudo ./fmsmgr adminserver start
    sudo ./server start
    The master.log: 
    #Date: 2011-07-21
    #Fields: date   time    x-pid   x-status        x-ctx   x-comment
    2011-07-21      16:34:35        26286   (i)2581173      FMS detected IPv6 protocol stack!       -
    2011-07-21      16:34:35        26286   (i)2581173      FMS config <NetworkingIPv6 enable=false>        -
    2011-07-21      16:34:35        26286   (i)2581173      FMS running in IPv4 protocol stack mode!        -
    2011-07-21      16:34:35        26286   (i)2581173      Host: bastet.cam.corp.google.com IPv4: 172.31.194.67    -
    2011-07-21      16:34:35        26286   (i)2571011      Server starting...      -
    2011-07-21      16:34:35        26286   (i)2581224      Edge (26306) started, arguments : -edgeports ":1935,80" -coreports "localhost:19350" -conf "/opt/adobe/fms/conf/Server.xml" -adaptor "_defaultRoot_" -name "_defaultRoot__edge1".      -
    2011-07-21      16:34:35        26286   (i)2571111      Server started (/opt/adobe/fms/conf/Server.xml).        -
    2011-07-21      16:34:40        26286   (i)2581226      Edge (26306) is no longer active.       -
    #Date: 2011-07-21
    #Fields: date   time    x-pid   x-status        x-ctx   x-comment
    2011-07-21      16:36:16        26713   (i)2581173      FMS detected IPv6 protocol stack!       -
    2011-07-21      16:36:16        26713   (i)2581173      FMS config <NetworkingIPv6 enable=false>        -
    2011-07-21      16:36:16        26713   (i)2581173      FMS running in IPv4 protocol stack mode!        -
    2011-07-21      16:36:16        26713   (i)2581173      Host: bastet.cam.corp.google.com IPv4: 172.31.194.67    -
    2011-07-21      16:36:16        26713   (i)2571011      Server starting...      -
    2011-07-21      16:36:16        26713   (e)2571122      Server aborted. -
    The /var/log/messages output shows "Server starting ..." messages.
    When I do the ps:
    ps auxww | grep adobe
    nobody   19178  0.0  0.0 203444 11124 pts/2    Sl   16:03   0:00 /opt/adobe/fms/fmscore -adaptor _defaultRoot_ -vhost _defaultVHost_ -app registry -inst registry -tag -console -conf /opt/adobe/fms/conf/Server.xml -name _defaultRoot_:_defaultVHost_:registry:registry:
    I expected to see the fmsedge binary.
    lsof doesn't show anybody listening on 1935 as I expected for an rtmp server.

  • System Landscape Directory server not started

    Hi,
    We are running Solution Manager 4.0 SP13.
    When I log ito the NWA get the message : System Landscape Directory server not started
    We are trying to configure CEN but only the Local System can be administered.
    If I goto the Central SLD and login - Administration - Server Started.
    If I look at the ABAP - Transaction  SLDAPICUST - save configuration - all ok
    I goto the Jco Connectors and ensure all Jco Connections are configured: SAPSLDAPI_SID
    ABAP RFCs; All configured
    ABAP - Transaction - sldcheck .. it returns with success.
    I login to the ABAP stack - smgw - logged in clients and all Jco Connections are available
    I go into the J2ee Admin - navigate to the SLD Data supplier - all tests return success.
    The SLD CIM is version 1.5.20
    The application com.sap.engine.class.download is started ( Note 1017526 )
    However when I login to with the J2ee_admin tool the following  is missing from the CIM Client:
    sap.com/tclmwebadminmainframewd/webdynpro/public/lib/app.jar
    sap.com/tclmwebadminsldwd/webdynpro/public/lib/app.jar
    Please help.

    Hi Anand,
    I verified the SLD Post Processing doc in case I missed something. The doc I used:
    https://websmp106.sap-ag.de/~sapidb/011000358700003772372006E
    I went through every point in the doc and verified that it was completed .
    If I open Monitoring Setup Guide for SAP NetWeaver 7.0 SP Stack 12 ( Can't find 13 ) I go to page 68 :
    6.5.2. Configuring the Connection Between CEN and the SLD ... I have followed all the steps without any error.:
    I followed it Step-by-Step.... however the following CIM Client Genearations do not exist:
    sap.com/tclmwebadminmainframewd/webdynpro/public/lib/app.jar
    sap.com/tclmwebadminsldwd/webdynpro/public/lib/app.jar
    What is available and Activated :
    sap.com/tclmwebadminmainframewd/webdynpro/public/lib/sap.comtclmwebadminmainframe~wd.jar
    sap.com/tclmwebadminsldwd/webdynpro/public/lib/sap.comtclmwebadminsld~wd.jar
    I alos Decided for the purpose of Troubleshooting to Activate All:
    sap.com/tclmwebadmin~mainframe.......
    sap.com/tclmwebadmin~sld..........
    When I go into NWA .. its still says SLD Not started.
    If I go inot the J2ee Admin Tool - SLD Data Supplier - Trigger Data Transfer OK
    I goto the SLD - Administration . SLD Started
    I Can see all the Techinical systems - ABAP and Java.
    All business Systems are there
    SLDCHECK works fine .. no errors !
    But I can't change the status of the NWA System Landscape Selectipon From Local to Central.
    Warning / Error :
    System Landscape Directory server not started
    and
    Only local system can be administered
    I maybe missing something but I can't see what it is....
    Further Help required !

  • Sql server not starting

    Hi I have only files from catalog DATA form my SQL Server 2008. After I installed sql server and replates file in katalog DATA server not starting.
    Where I have problem, what I need to do to work? thanks for any help
    best regards

    This Is my Error log
    2014-01-02 12:28:05.84 Server Microsoft SQL Server 2008 (RTM) - 10.0.1600.22 (X64)
    Jul 9 2008 14:17:44
    Copyright (c) 1988-2008 Microsoft Corporation
    Express Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: )
    2014-01-02 12:28:05.84 Server (c) 2005 Microsoft Corporation.
    2014-01-02 12:28:05.84 Server All rights reserved.
    2014-01-02 12:28:05.84 Server Server process ID is 6840.
    2014-01-02 12:28:05.84 Server System Manufacturer: 'Hewlett-Packard', System Model: 'HP ENVY Sleekbook 4 PC'.
    2014-01-02 12:28:05.84 Server Authentication mode is WINDOWS-ONLY.
    2014-01-02 12:28:05.84 Server Logging SQL Server messages in file 'F:\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\Log\ERRORLOG'.
    2014-01-02 12:28:05.84 Server This instance of SQL Server last reported using a process ID of 6948 at 2014-01-02 12:22:16 (local) 2014-01-02 11:22:16 (UTC). This is an informational message only; no user action is required.
    2014-01-02 12:28:05.84 Server Registry startup parameters:
    -d F:\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\master.mdf
    -e F:\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\Log\ERRORLOG
    -l F:\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\mastlog.ldf
    2014-01-02 12:28:05.92 Server SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2014-01-02 12:28:05.92 Server Detected 4 CPUs. This is an informational message; no user action is required.
    2014-01-02 12:28:05.97 Server Using dynamic lock allocation. Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node. This is an informational message only. No user action is required.
    2014-01-02 12:28:11.12 Server Node configuration: node 0: CPU mask: 0x000000000000000f Active CPU mask: 0x000000000000000f. This message provides a description of the NUMA configuration for this computer. This is an informational message only. No user action is required.
    2014-01-02 12:28:11.17 spid7s Starting up database 'master'.
    2014-01-02 12:28:11.36 spid7s FILESTREAM: effective level = 0, configured level = 0, file system access share name = 'SQLEXPRESS'.
    2014-01-02 12:28:11.37 spid7s SQL Trace ID 1 was started by login "sa".
    2014-01-02 12:28:11.37 spid7s Starting up database 'mssqlsystemresource'.
    2014-01-02 12:28:11.39 spid7s The resource database build version is 10.00.1600. This is an informational message only. No user action is required.
    2014-01-02 12:28:11.50 spid7s Error: 15466, Severity: 16, State: 1.
    2014-01-02 12:28:11.50 spid7s An error occurred during decryption.
    2014-01-02 12:28:11.53 spid10s Starting up database 'model'.
    2014-01-02 12:28:11.55 spid7s Server name is 'MACIEK\SQLEXPRESS'. This is an informational message only. No user action is required.
    2014-01-02 12:28:11.55 spid7s Informational: No full-text supported languages found.
    2014-01-02 12:28:11.55 spid7s Starting up database 'msdb'.
    2014-01-02 12:28:11.56 spid10s Error: 17204, Severity: 16, State: 1.
    2014-01-02 12:28:11.56 spid10s FCB::Open failed: Could not open file E:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\model.mdf for file number 1. OS error: 3(System nie może odnaleźć określonej ścieżki.).
    2014-01-02 12:28:11.56 spid10s Error: 5120, Severity: 16, State: 101.
    2014-01-02 12:28:11.56 spid10s Unable to open the physical file "E:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\model.mdf". Operating system error 3: "3(System nie może odnaleźć określonej ścieżki.)".
    2014-01-02 12:28:11.56 spid7s Error: 17204, Severity: 16, State: 1.
    2014-01-02 12:28:11.56 spid7s FCB::Open failed: Could not open file E:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\MSDBData.mdf for file number 1. OS error: 3(System nie może odnaleźć określonej ścieżki.).
    2014-01-02 12:28:11.56 spid7s Error: 5120, Severity: 16, State: 101.
    2014-01-02 12:28:11.56 spid7s Unable to open the physical file "E:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\MSDBData.mdf". Operating system error 3: "3(System nie może odnaleźć określonej ścieżki.)".
    2014-01-02 12:28:11.58 spid10s Error: 17207, Severity: 16, State: 1.
    2014-01-02 12:28:11.58 spid10s FileMgr::StartLogFiles: Operating system error 2(Nie można odnaleźć określonego pliku.) occurred while creating or opening file 'E:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\modellog.ldf'. Diagnose and correct the operating system error, and retry the operation.
    2014-01-02 12:28:11.58 spid10s File activation failure. The physical file name "E:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\modellog.ldf" may be incorrect.
    2014-01-02 12:28:11.58 spid10s Error: 945, Severity: 14, State: 2.
    2014-01-02 12:28:11.58 spid10s Database 'model' cannot be opened due to inaccessible files or insufficient memory or disk space. See the SQL Server errorlog for details.
    2014-01-02 12:28:11.58 spid10s Could not create tempdb. You may not have enough disk space available. Free additional disk space by deleting other files on the tempdb drive and then restart SQL Server. Check for additional errors in the event log that may indicate why the tempdb files could not be initialized.
    2014-01-02 12:28:11.58 spid10s SQL Trace was stopped due to server shutdown. Trace ID = '1'. This is an informational message only; no user action is required.
    2014-01-02 12:28:11.58 spid7s Error: 17207, Severity: 16, State: 1.
    2014-01-02 12:28:11.58 spid7s FileMgr::StartLogFiles: Operating system error 2(Nie można odnaleźć określonego pliku.) occurred while creating or opening file 'E:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\MSDBLog.ldf'. Diagnose and correct the operating system error, and retry the operation.
    2014-01-02 12:28:11.58 spid7s File activation failure. The physical file name "E:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\MSDBLog.ldf" may be incorrect.
    Any idea? 

  • The J2EE Server not starting.

    Hello,
    The J2EE Server not starting. (Not able to communicate with message server)
    The following is the description I got from SAP.
    " Most likely you did configurations on the instance properties, instead
    of the global properties, which is the one where the the configurations
    should be done. That is why now you did set local properties
    which are now false, for example : ume.ldap.access.server_port=[]
    This is the cause why the LDAP connection data cannot be retrieved.
    This is why the UME service cannot be started.
    This is why the J2ee engine is not comming up. "
    Pls help.

    Hi Karan
    1.Go to \usr\sap\SID\JCXX\j2ee\configtool and start the config tool.
    2.No go to instance -
    >server----->services--->com.sap.security.core.ume.services node.
    3.Look for ume.ldap.access.server_port=[]
    4.See if you have changed the value for the above parameter.If yes change the value to default and restart the engine.It will work
    If at all you want to change any configurations you should do it following the below steps:
    1.Go to \usr\sap\SID\JCXX\j2ee\configtool and start the config tool
    2.Go to Global Server Configurations-->Services--
    >
    Please award points:

  • I installed Crystal Reports server 2008, i'm geting server not started erro

    Hi,
        I'm getting error with server not started or not available error (FWM 01003). If i check in CCM, i don't see any entry for CMS server entry. How to start CMS server??? Please advise me. i installed trail version of crystal reports server 2008.
    thanks in advance!!!
    Ben.

    I am a consultant for Business Object products and experienced the same exact problem. We were installing Business Objects Edge, which is similar to Crystal Reports Server 2008, with MS SQL Server 2000 SP4 for the CMS System Database on a server that was named <Numbers>-<Letters>.
    We discovered that some scripts that the installation and CMS run fail when the Server Name of the Business Objects Edge Server start with a number. When the CMS System Database is setup, a table called CMS_IdNumbers6 is created. It should have three columns, NameId, IdName and third column that is named after the server where you are installing Crystal Reports Server 2008, Business Objects Edge or Business Objects Enterprise. This column is called <ServerName>_iad_intensive_int_6400.
    This column fails to get created when your server name starts with a number and subsequent scripts that insert records into this column fail. Renaming the server where we were installing Business Objects Edge to <Letters><Numbers> (no dashes either to be safe) solved the problem. We were successfully able to install Business Objects Edge. Please note: This is the server where you are installing Crystal Reports Server 2008 that needs to be renamed and NOT the MS SQL Server--just making a note because we had to go back and forth with our server team a couple of times on this point.

  • Message server not starting

    Hi
    When i started SAPMMC database getting up. but message server not starting. What will be the problem.
    Regards
    Basis Cons

    Hi Ganesh,
    First place to look is in the SAPMMC Console and see whats the status of the processes specially if they are yellow. Then you can go and check the work directory and check dev_ms for errors in the message server, dev_disp for errors in the dispatcher and dev_w* for errors in the workprocesses. the work directory is located at <drive>:\usr\sap\<sid>\<instance>\work.
    If the message server is not starting i will look first at the dev_ms and look for the error.
    Hope this help!
    Juan
    Please reward with points if helpful

  • 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

  • SOA server not starting: Due to change of hostname of SOA suite 11g

    Hi friends,
    My machine has been recently moved to a new location and hostname (ip address remains same) has changed. Hence, the soa server (admin server still running) on my machine is not starting up.
    Some details are:
    a.) Earlier hostname: CALTP8BB13
    b.) New hostname: CALTP8BB16
    From the soa server log files the details are as follows:
    ####<Jul 13, 2010 6:31:52 PM IST> <Info> <messaging.interception> <CALTP8BB16> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1279026112029> <BEA-400000> <Initializing message interception service>
    ####<Jul 13, 2010 6:31:54 PM IST> <Error> <Configuration Management> <CALTP8BB16> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1279026114342> <BEA-150000> <An error occurred while establishing a connection back to the adminstration server t3://CALTP8BB13:7001 during startup. Since bootstrap succeeded check that t3://CALTP8BB13:7001 uniquely identifies the administration server.
    javax.naming.ServiceUnavailableException [Root exception is java.net.UnknownHostException: CALTP8BB13]
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:34)
         at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:783)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialReference(WLInitialContextFactoryDelegate.java:411)
         at weblogic.jndi.Environment.getInitialReference(Environment.java:245)
         at weblogic.server.channels.RemoteChannelServiceImpl.registerInternal(RemoteChannelServiceImpl.java:173)
         at weblogic.server.channels.RemoteChannelServiceImpl.registerForever(RemoteChannelServiceImpl.java:146)
         at weblogic.protocol.ConnectMonitorFactory.registerForever(ConnectMonitorFactory.java:88)
         at weblogic.management.provider.MSIService.registerForReconnectToAdminServer(MSIService.java:173)
         at weblogic.management.mbeanservers.compatibility.internal.CompatibilityMBeanServerService.start(CompatibilityMBeanServerService.java:154)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Any pointers regarding the same will be helpful.
    Regards,
    Shomit

    Hi Shomit
    As far as I know, the Domains Hostname is stored only in config.xml file. So IP Address is same just Host name is changed CALTP8BB13 to CALTP8BB16. Check for some basic things.
    1. If on Windows OS, try adding this new Hostname and its IP address in hosts file located at C:\WINDOWS\system32\drivers\etc. If on Unix Env, I guess there should be a similar file to set the hostnames mapped with IP addresses.
    2. Since the machine is moved to a brand new location and incase kind of different network, check the firewall settings to see if firewall is blocking this new hostname.
    3. To make sure the domain is still good, I guess you already tested with old hostname after moving to new building. Try testing by giving the direct IP address also. This is just confirmation test to make sure domain is not messed up. If both of these works, it simply means issue is with Hostname and IP not getting mapped or new hostname getting blocked over the network. May be network folks can pitch in.
    Hostname or IP addresses should not be in any startup or env scripts. Domainname, servername will be definetly there in lot of files but not the hostname or ip address as far as I know.
    Thanks
    Ravi Jegga

  • 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

  • Column Sorting and Rowspanning not working in OBIEE 11g (worked in OBI 10)

    Hi all,
    i have a report with columns like this:
    Customer Nbr. | Customer Name | Salesorder | EBIT | EBIT (Total p. Customer)
    In the table view i have a total sum line at customer level.
    The column "EBIT (Total p. Customer)" is an Aggregate with Formula (SUM(Invoices.Ebit) BY Customer."Customer Nbr.") which is exactly the same value as in the report sum line (column EBIT).
    This Aggregate colum is only for sorting purposes and is hidden in the view.
    The business case is:
    "We want to see the EBIT per Salesorder for each customer, sorted from worst to best customer.
    So i sorted by "EBIT (Total p. Customer)" ascending in criteria tab and adviced answers to show the sum for each customer (column customer nbr.) in the table definition view.
    OBIEE 10 behaviour: Answers shows all customers sorted by EBIT (Total p. Customer), i see one line for each salesorder, the customer columns are rowspanned over all salesorder lines and there is exactly on sum line after each customer.
    OBIEE 11 behaviour: Answers shows all customers sorted by EBIT (Total p. Customer), i see one line for each salesorder BUT there is one sum line after each salesorder too. So there is no sum at customer level but on salesorder level
    Any idea how to solve this?
    BTW:
    1.) I still tried to place this column as the first (left) column in the report to get the right sorting ... with no success.
    2.) Sorting data at BI Server level is NO option since there are some other reports with different sorting requirements
    While searching in "Oracle Support" i found document ID: 1371247.1 "OBIEE 11g: How To Apply a Custom Sort in Answers" which says "... The functionality to custom sort in Answers does not currently exist There is an enhancement request for this functionality. For more information, see Bug 13261597 - be able to apply a custom sort in answers ..."

    Did you ever get an answer to your question? We are seeing the same issue.

  • Filter Grouping not working for OBIEE 11g

    Hello!
    I need some help on the below:
    I have built a simple report in OBIEE 11g with FILTER grouping on two dimensions as below:
              Operative Hierachy is equal to Europe, IMEA, APAC, China Focus Country, Americas, US and Canada
         and      Accounts is equal to Net Sales (i), Gross Margin (i), GM% (i)
    or
              Accounts is equal to Gross Margin, Net Sales, Gross Margin %
         and      Operative Hierachy is equal to / is in Organizations Total
    The report was working as expected; but now suddenly it's showing no results with the error "+The specified criteria didn't result in any data. This is often caused by applying filters and/or selections that are too restrictive or that contain incorrect values.+" - even though data is present ! - I have tested this by splitting it into two reports (with only the AND conditions)- which is then woking as expected.
    Points to note:
    --There had been no change on the Report, when it stopped showing results.
    --I have tested this filter grouping with other dimensions- & they are working fine.
    --The OBIEE reports are fetching data from ESSBASE cube.
    --Only thing which I can remember when it stopped working is that, there had been a data load on the ESSBASE cube. But other reports using these dimensions are working.
    Has anyone faced the same issue before. Please help.
    Edited by: Anu on Jan 22, 2013 12:31 AM

    Hi User, Vijay,
    Yes I have checked the generated SQL queries and the MDX queries as well. Both queries are generated as expected, but returns no result.
    But now I have found out how these two different dimensions are different from my other dimensions. Only these two dimensions have a SORT order logical column defined in the BMM layer- which I think is causing the problem, BI Server not able decide which column to sort. So, the sql gives result when I cimment out one of the SORTKEY
    SELECT
    0 s_0,
    "PSS Essbase"."Accounts"."Accounts" s_1,
    "PSS Essbase"."Operative Hierarchy"."Operative Hierachy" s_2,
    -- SORTKEY("PSS Essbase"."Accounts"."Accounts") s_3,
    SORTKEY("PSS Essbase"."Operative Hierarchy"."Operative Hierachy") s_4,
    "PSS Essbase"."Facts"."Measure" s_5
    FROM "PSS Essbase"
    WHERE
    ((("Operative Hierarchy"."Operative Hierachy" = 'Europe') AND ("Accounts"."Accounts" = 'Gross Margin'))
    OR (("Operative Hierarchy"."Operative Hierachy" = 'Russia Focus Country') AND ("Accounts"."Accounts" = 'Sales ASP')))
    ORDER BY 1, 5 ASC NULLS LAST, 4 ASC NULLS LAST
    FETCH FIRST 65001 ROWS ONLY
    Any views on what happens when we use two dimensions in the same report which have sort columns defined in the repository...

Maybe you are looking for

  • Problems with PC Suite 7.1.30.9 USB connection

    Ok, So I've been having trouble the last 2 weeks or so getting this to work. I Correctly installed the PC suite 7.1.30.9 on my PC (windows vista home premium 32) some time back. It used to work well with my old N95 8GB, but after I got the N97, for t

  • Reports timeout at 60-seconds in web page

    I have an SSRS 2012 report that takes a couple minutes to run. It runs fine in Visual Studio, and when run directly from the report-server manager (webpage), but when run from an ASP.NET webpage, it "stops running" at 60-seconds. No errors - just the

  • IPhoto won't launch! And yes I've updated everything.

    iPhoto won't work all of a sudden this week. When I try to launch it, the rainbow wheel just hangs there forever, and the grey and white background of iPhoto (minus all the photos) hangs there uselessly behind it. It worked just last week!  I tried i

  • Need Help 6700 Slide

    Hi Everybody Please i need some help with my new 6700s after one week i transferred all of my files through switch from my SE s500i and now when I Open any text message or bluetooth message   nothing happens please need help

  • Trying to burn Blu-ray on Power PC G5

    Does anyone make a Blu-ray video authoring software program that does not require an Intel processor?  I'm trying to use Roxio's Toast 10 with BD/HD Plug-in but is is not working. I have a Dual 2 GHz PowerPC G5 running OSX 10.5.8 (Leopard) with 10 GB