SUM execution phase hanging in 'Start JAVA' step

Good day
I'm trying to update the Java stack of a solman 7.1 stack 10 instance. I'm using SUM v1 SP10 patch0. Everything runs fine until  5.6 [Execution --> Start Java] which times out after a while.
Part of START-AS-JAVA.LOG:
Java instance =02
SCS instance = 03
Java instance = 02
SCS instance = 03
Output of sapcontrol -nr 02 -function GetVersionInfo
Calling the NWA from browser

Hi Sunil
The ABAP instance is definitely up and running at this point [and has been]
Here is what the SAPMMC reports:
Message was edited by: Stephan Van Dyk

Similar Messages

  • Preprocessing phase and Execution phase of DMO

    Hi experts,
    I have a question.
    Please tell me whether my understanding of DMO procedure steps of Preprocessing phase and Execution phase is right.
    I think as below.
      Phase
      sequence
      Steps
      whether users can
      log on SAP system or can not
      whether
      application data is able to be changed or not
      Uptime or
      Downtime
      Preprocessing
      1
      Creating Shadow
      instance
      Users can log on
      ERP
      Application data
      is able to be changed
      Uptime
      2
      Creating Shadow
      repository
      Users can log on
      ERP
      Application data
      is not be able to be changed
      Uptime
      3
      Migration
      repository
      Users can log on
      ERP
      Application data
      is not be able to be changed
      Uptime
      Execution
      4
      Migration
      application data
      Users can not log
      on ERP
      Application data
      is not be able to be changed
      Downtime
    When creating shadow instance, users can log on SAP system and can change application data.
    When creating shadow repository, user can log on SAP system but can not change application data.
    Both when creating shadow instance and creating shadow repository ,users can log on SAP system.
    So Preprocessing phase is uptime .
    Is that right ?
    Thanks in advance.
    Best Regards,
    Kazuki

    Hi Kazuki,
    The the EXECUTION phase denotes the start of Downtime.
    Regards
    Arshad

  • Java Export hangs at 'Export Java Database Content' phase

    Hi All -
    As part of system refresh activities,we are doing Java Export from our Production system(PE1) & we will use that export to import it in our Qulaity system(QE1).So while doing Java Export,the export gets stucks/hangs at 'Export Java Database Content" phase which is the last phase in Java Export steps.We have been doing this task since many years  & we did not encounter this kind of issue ever.There are no errors or at least warnings in the logs like sapinst_dev.log,jload.log,jload.java.log,sapinst.log etc.Our environment details are as below
    EP -6.0
    OS - AIX 5.3,64 BIT
    DB - DB2 UDB
    SAPINST version - 642
    Java version is below
    pe1adm> java -fullversion
    java full version "J2RE 1.4.2 IBM AIX 5L for PowerPC (64 bit JVM) build caix64142ifx-20100918 (SR13 FP6)"
    Please note with the SAPINST we are using currently, the exports of remaining systems in EP & other solutions like ECC,CR,SRM,XI,BI are successfull.We are having this issue only in PE1.Looks like some bug in code.So request the experts in this forum to please take a look at it & provide me with solution if any of you have faced the similar situation.
    Thanks & regards,
    Nagendra.

    Thank you for your reply Subhash.The below is the last entry in jload.log.It is at EP_ATTR_HEADERS.While doing the Java export,we asked our DBA to monitor to find out any errors at DB side.He monitored and said that no deadlocks or no infinite loops are found.Also he said that he cannot create index for that too because it is trying to do select *.In our first 2 or 3 attempts it used to hang at CA_PRODUCTS meta data exported,CA_PROPERTY meta data exported.Now here.Our DBA said that EP_ATTR_HEADERS has 1.4M rows.We tried to bounce the entire system also,but no luck.We have the same issue.Peculiar thing is we dont see any errors or warnings in the logs.
    23.06.11 09:54:21 com.sap.inst.jload.Jload dbExport
    INFO: EP_ATTR_DEFS exported (6 rows)
    23.06.11 09:54:21 com.sap.inst.jload.Jload dbExport
    INFO: EP_ATTR_HEADERS meta data exported
    Please let me know if you need any further info in resolving this issue.
    Thanks & regards,
    Nagendra.

  • C++ process hangs when started from Java

    I am trying to execute a c++ code from java on a remote Windows machine. In order to deal with the remote part, I have created a Web service from where the actual command is run using Runtime.exec(). The c++ exe is not being called directly from the java code. I have a batch file that eventually calls the exe.
    The problem is, both java and c++ processes hang. The java code on server side does handle the output stream and error stream. Also, the c++ code is logging everything in a file on Windows. The strange thing is that, when I remove the WS call and run the java code on server side as a standalone java program, it succeeds. Also, execution of the batch file alone does not hang. Here is the java code:
    public class RunCPlusPlusExecutable {
    public int runExecutable() {
        int exitValue = 0;
        try {
            Process p = null;
            Runtime rt = Runtime.getRuntime();
            System.out.println("About to execute" + this + rt);
            p = rt.exec("c:/temp/execcplusplus.bat");
            System.out.println("Process HashCode=" + p.hashCode());
            StreamProcessor errorHandler = new StreamProcessor(p.getErrorStream(), "Error");
            StreamProcessor outputHandler = new StreamProcessor(p.getInputStream(), "Output");
            errorHandler.start();
            outputHandler.start();
            exitValue = p.waitFor();
            System.out.println("Exit value : " + exitValue);
            if (exitValue == 0)
                System.out.println("SUCCESS");
            else
                System.out.println("FAILURE");
        } catch (IOException e) {
            e.printStackTrace();
        } catch (InterruptedException e) {
            e.printStackTrace();
        } catch (Exception e) {
        return exitValue;
    class StreamProcessor extends Thread {
        private InputStream is = null;
        private String type = null;
        private InputStreamReader isr = null;
        private BufferedReader br = null;
        private FileWriter writer = null;
        private BufferedWriter out = null;
        StreamProcessor(InputStream is, String type) {
            this.is = is;
            this.type = type;
        public void run() {
            try {
                isr = new InputStreamReader(is);
                br = new BufferedReader(isr);
                writer = new FileWriter("*******path to log file********");
                out = new BufferedWriter(writer);
                String line = null;
                while ((line = br.readLine()) != null) {
                    Date date = new Date();
                    out.write("[" + type + "]: " + date + " : " + line);
                    out.newLine();
                writer.flush();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            } finally {
                try {
                    if (br != null)
                        br.close();
                    if (isr != null)
                        isr.close();
                    if (out != null)
                        out.close();
                    if (writer != null)
                        writer.close();
                } catch (IOException e) {
                    e.printStackTrace();
    String line = null;
                while ((line = br.readLine()) != null) {
                    Date date = new Date();
                    out.write("[" + type + "]: " + date + " : " + line);
                    out.newLine();
                writer.flush();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            } finally {
                try {
                    if (br != null)
                        br.close();
                    if (isr != null)
                        isr.close();
                    if (out != null)
                        out.close();
                    if (writer != null)
                        writer.close();
                } catch (IOException e) {
                    e.printStackTrace();
    The WS server is running from some admin user. And I have been running the standalone java program from some other user. It seems that the c++ executable is giving referenced memory error when being executed from WS call. There are pop-ups citing the error with OK and Cancel buttons(visible when logged in as admin). The error states
    The instruction at 0x05473030 referenced memory at 0x000001d4. The memory could not be read
    Any idea what is causing the problem and how to debug it? Why does this memory error comes only when the exe is run through WS call? Please note that I won't be able to debug the c++ code and the web service is an apache axis2 service.
    Thanks

    How can I know? Its your environment, not mine. The only thing we know is that when running the stuff through one path things blow up and when you run them through another path, things don't blow up. User rights is an obvious suspect, but not necessarily the actual problem. Generally when rights are the problem, you get some form of "access denied" exception, not a code hang.
    Another likely possibility is that of network settings; perhaps your server goes through a proxy and your local applications do not, or the other way around.
    Yet another likely possibility is that the version of Java used is different, or different versions of libraries are no the classpath causing differences in behavior. There is only one way to figure it out: get to know your environment very well and through solid reasoning and experimentation try to figure out where the breaking point is. It all starts with answering this question: what might be different in the environment of the web server, and outside of it? I can't know, only you can. Good luck.

  • Trial ABAP 7.02 - installation problem in execution phase step 5/24

    Hi Folks,
    Seek your advise to solve the error I'm facing during trial ABAP install.
    I'm tryng to install the trial ABAP 7.02  version on my notebook which is running WINDOWS 7 home premium.
    I downloaded the j2re-1_4_2_19 version.
    Have hit error during the execution phase in step 5 (install database client).
    The message popped is as below:
    =========================================================
    An error occurred while processing option SAP NetWeaver 7.0 including Enhancement Package 2 > SAP Application Server ABAP > MaxDB > Central System > Central System( Last error reported by the step :The database installer reported an error. DIAGNOSIS: Some database applications might still be running. SOLUTION: Check the log file sdbinst.log and D:\sapdb\data\wrk\MaxDBRuntimeForSAPAS_install_ _ .log.). ...
    =========================================================
    The contents of log file sdbinst.log are:
    =========================================================
    SAP MaxDB Installation Manager 7.8.01.14
    Checking installation...
    Preparing package "Installer" ...
    Preparing package "SAP Utilities Compatibility" ...
    Preparing package "Global Listener" ...
    Preparing package "Installation Compatibility" ...
    Preparing package "Base" ...
    Preparing package "SQLDBC" ...
    Preparing package "SQLDBC 77" ...
    Preparing package "Fastload API" ...
    Preparing package "SQLDBC 76" ...
    Preparing package "SAP Utilities" ...
    Preparing package "ODBC" ...
    Preparing package "Messages" ...
    Preparing package "JDBC" ...
    Looking for running processes of package Installer
    Looking for running processes of package Installation Compatibility
    Looking for running processes of package Global Listener
    Looking for running processes of package SAP Utilities Compatibility
    Looking for running processes of package Base
    Looking for running processes of package SQLDBC 76
    Looking for running processes of package Messages
    Looking for running processes of package SQLDBC
    Looking for running processes of package ODBC
    Looking for running processes of package JDBC
    Looking for running processes of package SAP Utilities
    Looking for running processes of package SQLDBC 77
    Looking for running processes of package Fastload API
    ERR:  Installation failed
    ERR:    error installing
    INFO:      Installing signal handler
    INFO:        Handler for signal INT
    INFO:        Handler for signal PIPE
    INFO:        Handler for signal ABRT
    INFO:        Handler for signal FPE
    INFO:        Handler for signal QUIT
    INFO:      System Informations
    INFO:        Operating System: Windows
    INFO:        Architecture    : AMD64
    INFO:        Version         : Windows 7
    INFO:        Subversion      : Service Pack 1
    INFO:        Host Name       : JAYNB
    INFO:      Installer Informations
    INFO:        Installer is part of installation kit
    INFO:        Version is 7.8.01 Build 014-121-233-288
    INFO:        MakeId is 479160
    INFO:        Running as console application
    INFO:        Running in background mode
    INFO:        Program call informations
    INFO:          Caller program name is SDBINST
    INFO:          Command line arguments: -global_prog D:\sapdb\programs -global_data D:\sapdb\data -path D:\sapdb\clients\NSP -private_datapath D:\sapdb\clients\NSP\data -profile Runtime For SAP AS -i CL_NSP -b
    INFO:          Current directory: C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL
    INFO:          Installer directory: D:\Trial_7\NWABAPTRIAL70206_64\NWABAPTRIAL70206_64\SAP_MaxDB_78_SP1_14_RDBMS\DATA_UNITS\MAXDB_WINDOWS_X86_64
    INFO:          Pid is 4932
    INFO:          Environment dump:
    INFO:            ALLUSERSPROFILE = C:\ProgramData
    INFO:            APPDATA = C:\Users\Jay\AppData\Roaming
    INFO:            COMMONPROGRAMFILES = C:\Program Files\Common Files
    INFO:            COMMONPROGRAMFILES(X86) = C:\Program Files (x86)\Common Files
    INFO:            COMMONPROGRAMW6432 = C:\Program Files\Common Files
    INFO:            COMPUTERNAME = JAYNB
    INFO:            COMSPEC = C:\Windows\system32\cmd.exe
    INFO:            CONFIGSETROOT = C:\Windows\ConfigSetRoot
    INFO:            FP_NO_HOST_CHECK = NO
    INFO:            HOMEDRIVE = C:
    INFO:            HOMEPATH = \Users\Jay
    INFO:            LOCALAPPDATA = C:\Users\Jay\AppData\Local
    INFO:            LOGONSERVER =
    JAYNB
    INFO:            NUMBER_OF_PROCESSORS = 8
    INFO:            OS = Windows_NT
    INFO:            PATH = C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\Trend Micro\AMSP
    INFO:            PATHEXT = .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    INFO:            PROCESSOR_ARCHITECTURE = AMD64
    INFO:            PROCESSOR_IDENTIFIER = Intel64 Family 6 Model 42 Stepping 7, GenuineIntel
    INFO:            PROCESSOR_LEVEL = 6
    INFO:            PROCESSOR_REVISION = 2a07
    INFO:            PROGRAMDATA = C:\ProgramData
    INFO:            PROGRAMFILES = C:\Program Files
    INFO:            PROGRAMFILES(X86) = C:\Program Files (x86)
    INFO:            PROGRAMW6432 = C:\Program Files
    INFO:            PSMODULEPATH = C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
    INFO:            PUBLIC = C:\Users\Public
    INFO:            SAPINST_EXEDIR_CD = C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL
    INFO:            SAPINST_JRE_HOME = C:/Users/Jay/AppData/Local/Temp/sapinst_exe.360.1316202479/jre
    INFO:            SELFEXTRACTOR_EXECUTABLE_NAME = C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst.exe
    INFO:            SYSTEMDRIVE = C:
    INFO:            SYSTEMROOT = C:\Windows
    INFO:            TEMP = C:\Users\Jay\AppData\Local\Temp
    INFO:            TMP = C:\Users\Jay\AppData\Local\Temp
    INFO:            USERDOMAIN = JayNB
    INFO:            USERNAME = Jay
    INFO:            USERPROFILE = C:\Users\Jay
    INFO:            WINDIR = C:\Windows
    INFO:     
    SAP MaxDB Installation Manager 7.8.01.14
    INFO:      checking configuration of global installation
    INFO:        Parameter "GlobalData" is given via command line option, value = "D:\sapdb\data"
    INFO:        Parameter "GlobalPrograms" is given via command line option, value = "D:\sapdb\programs"
    INFO:      checking configuration of installation
    INFO:        Parameter "Name" is given via command line option, value = "CL_NSP"
    INFO:        Parameter "Path" is given via command line option, value = "D:\sapdb\clients\NSP"
    INFO:        Parameter "Comment" is not set
    INFO:        Parameter "PrivateData" is given via command line option, value = "D:\sapdb\clients\NSP\data"
    INFO:      Checking installation...
    =========================================================
    Regards,
    AG

    Hi all,
    problem wes caused by shared folders for my virtual PC machine. I have to remove shared folders.

  • Error in "Start java Engine" phase during installation of Java AS

    Hi All,
    I am trying to install Java on Red Hat Server 5 with Maxdb as database and the installation is unable to pass the stage "Start java Engine" i have tried repeating the installation again also but getting stuck at the same place.
    I tried starting the same from Command line but is unable to start the Server and DB is up and running.
    Earlier on the same host i tried installing NW 7 ABAP stack and i was successful in that.
    Any help is welcome.
    Regards,
    Sharib

    Hi Anil
    dev_server0 log file is pasted..
    Can u please check this:
    trc file: "/usr/sap/EP1/JC01/work/dev_server0", trc level: 1, release: "701"
    [Thr 1146849600] Thu Jun 24 16:14:45 2010
    [Thr 1146849600] ***LOG S98=> STISearchConv, no conv (80346248) [r3cpic_mt.c  6123]
    [Thr 1146849600]
    [Thr 1146849600] *  LOCATION    CPIC (TCP/IP) on local host with Unicode
    [Thr 1146849600] *  ERROR       no conversation found with id 80346248
    [Thr 1146849600] *
    TIME        Thu Jun 24 16:14:45 2010
    [Thr 1146849600] *  RELEASE     701
    [Thr 1146849600] *  COMPONENT   CPIC (TCP/IP) with Unicode
    [Thr 1146849600] *  VERSION     3
    [Thr 1146849600] *  RC          473
    [Thr 1146849600] *  MODULE      r3cpic_mt.c
    [Thr 1146849600] *  LINE        6124
    [Thr 1146849600] *  COUNTER     2
    [Thr 1146849600]
    [Thr 1146849600]
    [Thr 1146849600] *  LOCATION    CPIC (TCP/IP) on local host with Unicode
    [Thr 1146849600] *  ERROR       illegal parameter value ( function=SAP_CMTIMEOUT2 /
                 parameter=conversation_ID / value=80346248 )
    [Thr 1146849600] *
    TIME        Thu Jun 24 16:14:45 2010
    [Thr 1146849600] *  RELEASE     701
    [Thr 1146849600] *  COMPONENT   CPIC (TCP/IP) with Unicode
    [Thr 1146849600] *  VERSION     3
    [Thr 1146849600] *  RC          769
    [Thr 1146849600] *  MODULE      r3cpic_mt.c
    [Thr 1146849600] *  LINE        7340
    [Thr 1146849600] *  COUNTER     3
    [Thr 1146849600] *
    [Thr 1146849600]
    </verbosegc>
    [Thr 1146849600] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 1146849600]
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 1146849600] SigISetIgnoreAction : SIG_IGN for signal 17
    [Thr 1146849600] JLaunchCloseProgram: good bye (exitcode = -11113)

  • SAP SCM Upgrade-Issue in STARTSAT_TRANS in execution phase

    Hi Experts,
    I am running sap upgrade of SCM 5.1 to SCM 7.0 EHP3.
    My Environment is
    OS : windows server 2008 R2
    Source Kernel :720_ext_rel
    DB: MS SQL server
    In Execution phase i have encountered issue with MAIN_SWITCH/STARTSAP_TRANS phase and below are the error details and log.
           Checks after phase MAIN_SWITCH/STARTSAP_TRANS were negative!
    Last error code set: Process C:\usr\sap\SCN\DVEBMGS51\exe/sapcontrol.exe exited with 2, see 'C:\usr\sap\SCN\SUM\abap\log\SAPup.ECO' for details<br/> System start failed    
    SAPup.ECo log details :
    30.05.2014 02:05:28
    StartWait
    FAIL: Timeout
    SAPup> Process with PID 15804 terminated with status 2 at 20140530020528!
    SAPup> Starting subprocess in phase 'STARTSAP_TRANS' at 20140530020528
        ENV: DBMS_TYPE=mss
        ENV: JAVA_HOME=C:\j2sdk1.4.2_26-x64
        ENV: PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.PSC1;.MSC
        ENV: PATH=C:\usr\sap\SCN\DVEBMGS51\exe;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\j2sdk1.4.2_26-x64\bin;C:\Program Files (x86)\Java\jre6\bin;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\usr\sap\SCN\SYS\exe\nuc\NTAMD64
        ENV: SAPSYSTEMNAME=SCN
        ENV: dbs_mss_schema=scn
    EXECUTING C:\usr\sap\SCN\DVEBMGS51\exe\sapcontrol.exe -format script -prot PIPE -host SCM51NUN -nr 51 -function GetProcessList
    30.05.2014 02:05:28
    GetProcessList
    OK
    0 name: msg_server.EXE
    0 description: MessageServer
    0 dispstatus: GREEN
    0 textstatus: Running
    0 starttime: 2014 05 30 01:46:21
    0 elapsedtime: 0:19:07
    0 pid: 4640
    1 name: enserver.EXE
    1 description: EnqueueServer
    1 dispstatus: GREEN
    1 textstatus: Running
    1 starttime: 2014 05 30 01:46:21
    1 elapsedtime: 0:19:07
    1 pid: 5144
    2 name: disp+work.EXE
    2 description: Dispatcher
    2 dispstatus: YELLOW
    2 textstatus: Running but Dialog Queue info unavailable
    2 starttime: 2014 05 30 01:46:22
    2 elapsedtime: 0:19:06
    2 pid: 6872
    in MMC  Dispatcher status is Yellow with text " Running but Dialog Queue info unavailable".  Is this the cause of this issue?
    If so, how to resolve this issue?
    Please help me resolve this issue.
    Thanks,
    Krishna

    Hi Jaun,
    here is the DEV_W0 log
    trc file: "dev_w0", trc level: 1, release: "720"
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      51
    M sid        SCN
    M systemid   562 (PC with Windows NT)
    M relno      7200
    M patchlevel 0
    M patchno    500
    M intno      20020600
    M make       multithreaded, ASCII, 64 bit, optimized
    M profile    C:\usr\sap\SCN\SYS\profile\SCN_DVEBMGS51_SCM51NUN
    M pid        2840
    M
    M  kernel runs with dp version 139(ext=120) (@(#) DPLIB-INT-VERSION-139)
    M  length of sys_adm_ext is 376 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workp. 0 2840) [dpxxdisp.c   1381]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpIPCInit2: read dp-profile-values from sys_adm_ext
    M  DpShMCreate: sizeof(wp_adm) 22880 (1760)
    M  DpShMCreate: sizeof(tm_adm) 4976768 (24760)
    M  DpShMCreate: sizeof(wp_ca_adm) 56000 (56)
    M  DpShMCreate: sizeof(appc_ca_adm) 56000 (56)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/776048/776064
    M  DpShMCreate: sizeof(comm_adm) 776064 (1528)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm) 0 (232)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm) 0 (80)
    M  DpShMCreate: sizeof(vmc_adm) 0 (1864)
    M  DpShMCreate: sizeof(wall_adm) (25648/42880/64/104)
    M  DpShMCreate: sizeof(gw_adm) 48
    M  DpShMCreate: sizeof(j2ee_adm) 2032
    M  DpShMCreate: SHM_DP_ADM_KEY (addr: 000000000FD20050, size: 5970896)
    M  DpShMCreate: allocated sys_adm at 000000000FD20060
    M  DpShMCreate: allocated wp_adm_list at 000000000FD22A20
    M  DpShMCreate: allocated wp_adm at 000000000FD22C10
    M  DpShMCreate: allocated tm_adm_list at 000000000FD28580
    M  DpShMCreate: allocated tm_adm at 000000000FD285D0
    M  DpShMCreate: allocated wp_ca_adm at 00000000101E7660
    M  DpShMCreate: allocated appc_ca_adm at 00000000101F5130
    M  DpShMCreate: allocated comm_adm at 0000000010202C00
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 00000000102C0390
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated gw_adm at 00000000102C0440
    M  DpShMCreate: allocated j2ee_adm at 00000000102C0480
    M  DpShMCreate: allocated ca_info at 00000000102C0C80
    M  DpShMCreate: allocated wall_adm at 00000000102C0D00
    M  DpCommAttachTable: attached comm table (header=0000000010202C00/ft=0000000010202C10)
    M  DpRqQInit: use protect_queue / slots_per_queue 0 / 2001 from sys_adm
    M  rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  <ES> EsILock: use spinlock for locking
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 192 MB
    X  mm.dump: set global maximum dump mem to 192 MB
    X  EsRegisterEmCheck: Register EmGetEsHandles at 0000000140D4F7D0
    M  DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    M  ThStart: taskhandler started
    M  ThInit: initializing DIA work process W0

    M Fri May 30 05:23:47 2014
    M  ThInit: running on host SCM51NUN

    M Fri May 30 05:23:48 2014
    M  calling db_connect ...
    B  Loading DB library 'C:\usr\sap\SCN\DVEBMGS51\exe\dbmssslib.dll' ...

    B Fri May 30 05:23:49 2014
    B  Library 'C:\usr\sap\SCN\DVEBMGS51\exe\dbmssslib.dll' loaded
    B  Version of 'C:\usr\sap\SCN\DVEBMGS51\exe\dbmssslib.dll' is "720.00", patchlevel (0.442)
    C  Callback functions for dynamic profile parameter registered
    C  Thread ID:2040
    C  Thank You for using the SLODBC-interface
    C  Using dynamic link library 'C:\usr\sap\SCN\DVEBMGS51\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    SAP patchlevel  0
    C    SAP patchno  500
    C    Last MSSQL DBSL patchlevel 0
    C    Last MSSQL DBSL patchno         442
    C    Last MSSQL DBSL patchcomment DBACOCKPIT Auto-injection fails (1901875)
    C  ODBC Driver chosen: SQL Server Native Client 10.0 native
    C  lpc:(local) connection used on SCM51NUN
    C  lpc:(local) connection used on SCM51NUN
    C  Driver: sqlncli10.dll Driver release: 10.50.4000
    C  GetDbRelease: 10.50.4000.00
    C  GetDbRelease: Got DB release numbers (10,50,4000,0)
    B  Connection 0 opened (DBSL handle 0)
    M  ThInit: db_connect o.k.
    M  ICT: exclude compression: *.zip,*.rar,*.arj,*.z,*.gz,*.tar,*.lzh,*.cab,*.hqx,*.ace,*.jar,*.ear,*.war,*.css,*.pdf,*.gzip,*.uue,*.bz2,*.iso,*.sda,*.sar,*.gif,*.png,*.swc,*.swf

    I Fri May 30 05:23:53 2014
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF (addr: 0000000018410050, size: 4400000)
    M  SHM_ROLL_AREA (addr: 000007FFCB7C0050, size: 61440000)
    M  SHM_PAGING_AREA (addr: 0000000018850050, size: 32768000)
    M  SHM_ROLL_ADM (addr: 00000000098C0050, size: 632336)
    M  SHM_PAGING_ADM (addr: 000000000BA50050, size: 787488)
    M  ThCreateNoBuffer allocated 328144 bytes for 1000 entries at 0000000005600050
    M  ThCreateNoBuffer index size: 3000 elems
    M  ThCreateVBAdm allocated 17104 bytes (50 server) at 0000000002600050
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 192 MB
    X  mm.dump: set global maximum dump mem to 192 MB
    X  EsRegisterEmCheck: Register EmGetEsHandles at 0000000140D4F7D0
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 13, CON_ID = -1
    B  Table statistics is switched off.
    B  dbtbxbuf: Buffer TABL  (addr: 00000000312B0160, size: 30000000, end: 0000000032F4C4E0)
    B  dbtbxbuf: Buffer TABLP (addr: 0000000032F50160, size: 10240000, end: 0000000033914160)
    B  dbsync[db_syinit]: successfully attached to shared memory, sync_adm_p = 0000000002620050
    B  dbsync[db_syinit]: Buffer synchronisation started with
    B    sync_concept      = SEQ_NR
    B    sendon            = 0
    B    bufreftime        = 120
    B    max_gap_wait_time = 60
    B    ddlog_del_time    = 60
    B    last_counter      = 228455
    B    oldest_gap        = (2147483647,00000000000000)
    B    time_of_last_sync = 20140530052350
    B    MySysId           = 'SCM51NUN            51'
    B  dbexpbuf[EXP_SHB]: buffer EIBUF installed with
    B    semkey             = 35
    B    shmkey             = 54
    B    wp_n               = 13
    B    sclass             = 0
    B    block_length       = 256
    B    max_objects        = 2000
    B    max_obj_size       = 1948608
    B    pref_obj_size      = 0
    B    est_large_obj_size = 512000
    B    free_vec_lg        = 2001
    B    hash_vec_size      = 4001
    B    buffer_l           = 8388608
    B    max_blocks         = 30450
    B    free_blocks        = 30450
    B    mutex_n            = 4001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    B  dbexpbuf[EXP_SHM]: buffer ESM   installed with
    B    semkey             = 56
    B    shmkey             = 65
    B    wp_n               = 13
    B    sclass             = 0
    B    block_length       = 256
    B    max_objects        = 2000
    B    max_obj_size       = 907904
    B    pref_obj_size      = 0
    B    est_large_obj_size = 8192
    B    free_vec_lg        = 33
    B    hash_vec_size      = 4001
    B    buffer_l           = 4194304
    B    max_blocks         = 14189
    B    free_blocks        = 14189
    B    mutex_n            = 4001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    B  dbexpbuf[EXP_CUA]: buffer CUA   installed with
    B    semkey             = 30
    B    shmkey             = 47
    B    wp_n               = 13
    B    sclass             = 10
    B    block_length       = 256
    B    max_objects        = 1500
    B    max_obj_size       = 661696
    B    pref_obj_size      = 0
    B    est_large_obj_size = 49152
    B    free_vec_lg        = 193
    B    hash_vec_size      = 3001
    B    buffer_l           = 3072000
    B    max_blocks         = 10342
    B    free_blocks        = 10342
    B    mutex_n            = 3001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    B  dbexpbuf[EXP_OTR]: buffer OTR   installed with
    B    semkey             = 55
    B    shmkey             = 64
    B    wp_n               = 13
    B    sclass             = 13
    B    block_length       = 128
    B    max_objects        = 2000
    B    max_obj_size       = 907744
    B    pref_obj_size      = 0
    B    est_large_obj_size = 10240
    B    free_vec_lg        = 81
    B    hash_vec_size      = 4001
    B    buffer_l           = 4194304
    B    max_blocks         = 28373
    B    free_blocks        = 28373
    B    mutex_n            = 4001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    I  MPI: dynamic quotas disabled.
    I  MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    M  rdisp/thwpsf_critical_path : -1 -> 0
    M  Semaphore recovery: keep semaphore data.
    M  logoff_check: no check.
    M  CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    M  CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.

    G Fri May 30 05:23:54 2014
    G  RelWritePermissionForShm( pLocation = 120, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation =  99, pEnforce = 1 )
    G  RelWritePermissionForShm( pLocation = 100, pEnforce = 1 )
    S  *** init spool environment
    S  TSPEVJOB updates outside critical section: event_update_nocsec = 1
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 00000000098696A0

    S Fri May 30 05:23:55 2014
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  0 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 0000000015F100C0
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 0000000015F10460
    S    using messages for server info
    S  size of spec char cache entry: 165024 bytes (timeout 100 sec)
    S  size of open spool request entry: 1376 bytes
    S  immediate print option for implicitely closed spool requests is disabled
    A  ***GENER* Trace switched on ***

    A  ---PXA-------------------------------------------
    A  PXA INITIALIZATION
    A  PXA: Locked PXA-Semaphore.
    A  System page size: 4kb, total admin_size: 46436kb, dir_size: 45852kb.
    A  Attached to PXA (address 000007FFCF260050, size 800000K, 1 fragments of 753564K )
    A  PXA allocated (address 000007FFCF260050, size 800000K)
    A  abap/pxa = shared protect gen_local
    A  PXA: checking structure sizes: 752|216|16
    A  PXA INITIALIZATION FINISHED
    A  ---PXA-------------------------------------------

    A  ATRA: pfclock execution time = 1
    A  ABAP ShmAdm attached (addr=000007DFF8D7B000 leng=20955136 end=000007DFFA177000)
    A  >> Shm MMADM area (addr=000007DFF917BCD0 leng=257728 end=000007DFF91BAB90)
    A  >> Shm MMDAT area (addr=000007DFF91BB000 leng=16494592 end=000007DFFA176000)
    A  RFC Destination> destination SCM51NUN_SCN_51 host SCM51NUN system SCN systnr 51 (SCM51NUN_SCN_51)
    A  RFC Options> H=SCM51NUN,S=51,d=1,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 1
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    H  HTTP> Parameter icf/ssocookie_mandatory set to 0
    A  Hotpackage version: 21
    B  dbtran INFO (init_connection '<DEFAULT>' [MSSQL:720.00]):
    B   max_blocking_factor       =  50,  min_blocking_factor         =   5,
    B   max_in_blocking_factor    = 255,  min_in_blocking_factor      =  10,
    B   max_union_blocking_factor =  50,  min_union_blocking_factor   =   5,
    B   prefer_union_all          =   1,  prefer_join                 =   1,
    B   prefer_fix_blocking       =   0,  prefer_in_itab_opt          =   0,
    B   convert AVG               =   1,  alias table FUPD            =   0,
    B   escape_as_literal         =   0,                                  
    B   select *                  =0x00,  character encoding          =SBCS / []:X,
    B   use_hints                 = abap->1, dbif->0x1, upto->0

    M Fri May 30 05:23:56 2014
    M  ThrCreateShObjects allocated 26878 bytes at 0000000002640050
    Y  dyWpInit
    Y    ztta/dynpro_ara 800000
    Y    ztta/cua_ara    250000
    Y    ztta/diag_ara   250000
    M  rdisp/thsend_order : -1 -> 1
    M  ThISend: set thsend_order to 1
    N  SsfSapSecin: putenv(SECUDIR=C:\usr\sap\SCN\DVEBMGS51\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF library is C:\usr\sap\SCN\DVEBMGS51\exe\sapsecu.dll .
    N  ===...SSF default hash algorithm is SHA1 .
    N  ===...SSF default symmetric encryption algorithm is DES-CBC .
    N  ===...SECUDIR="C:\usr\sap\SCN\DVEBMGS51\sec"
    N  ===...loading of Security Toolkit completed with rc 5 (SSF_SUP_NOTALLFUNCTIONS).
    N  ===   SAPSECULIB Version 5.4.28M-6
    N  =================================================

    N Fri May 30 05:23:57 2014
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 1
    W    ITS Plugin: Release: 720, [7200.0.500.20020600]
    W    ITS Plugin: Int.version, [33]
    W    ITS Plugin: Feature set: [30]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    N  SignInit: Security Session Management cannot be used (ABAP parts are missing, note 1477428)
    N  VSI: WP init in ABAP VM completed with rc=0
    E  EnqId_Initialize: local EnqId initialization o.k.
    M  MBUF info for hooks: MS component UP
    M  ThISetEnqname: enq name = >SCM51NUN_SCN_51                         <
    M  ThActivateServer: STARTING => ACTIVE
    L  BtcSysStartRaise: Begin
    L  Raise event SAP_SYSTEM_START with parameter <SCM51NUN_SCN_51     >
    L  BtcSysStartRaise: End
    S  server @>SSRV:SCM51NUN_SCN_51@< appears or changes (state 1)

    M Fri May 30 05:23:58 2014
    M  30.05.2014 09:23:58.245 PID=2840, TID=2040 SapTimer info. v1.119 SynchCount:0 , OwnerPid: 3868, ErrsCount: 0, SapTime-WindowsUtcTime=-17 millisec (max=-17), Nosync=23 sec, SynchsPerDay=0.000000, MaxQpcTimeMinusWindowsTimeMismatch:  +0 millisec, TotalTimeCorrection=+0 millisec, QpcTime-WindowsUtcTime=-17 millisec (*)

    A Fri May 30 05:24:03 2014
    A  UpdateProfile (new settings): off,krn_impl,(no dyn check),(no logging),(no stat err),(local generation),(no commit)
    A  UpdateProfile (new exceptions): (tmp_err),(home_err),(local_err)
    A  UpdateProfile (new version): 0
    A  ***GENER* Trace switched off ***
    B  dbdynpdb2: no VERSION column found in table DYNPSOURCE

    E Fri May 30 05:24:04 2014
    E  Enqueue Info: enque/use_pfclock2 = FALSE
    E  Enqueue Info: row condense enabled
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )

    G Fri May 30 05:24:05 2014
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    E  EnqId_EN_ObjShMem_Check: status = ENQID_API_INITIAL_VALUE
    E  EnqId inscribed into initial ObjShMem: (EnqId_EN_ObjShMem_Check)
    E  ---SHMEM--------------------------------------------------------------------------------
    E  EnqId:          EnqTabCreaTime/RandomNumber    = 30.05.2014 05:23:34  1401441814 / 3208
    E  ReqOrd at Srv:  TimeInSecs/ReqNumberThisSec    = 30.05.2014 05:24:05  1401441845 / 1
    E  ReqOrd at Cli:  TimeInSecs/ReqNumberThisSec    = 30.05.2014 05:24:05  1401441845 / 1
    E  Status:         STATUS_OK
    E  ----------------------------------------------------------------------------------------
    A  EXCP> Attribute IS_RESUMABLE not found in class CX_ROOT.

    B Fri May 30 05:24:06 2014
    B  table logging switched off for all clients
    Thanks,
    krishna

  • Error start java upgrade SOLMAN 7.01 to 7.1

    Hi gurus, I'm faced an error in a upgrade SOLMAN 7.01 to 7.1 when try to start de java instance: I'm using SUM 1.0 SP 12 Patch 13. Follow the START-AS-JAVA_01.LOG:
    Apr 30, 2015 2:56:32 PM [Info  ]: Start service for instance 10 on host srv-sum-ora ... Apr 30, 2015 2:56:32 PM [Info  ]: Process ID 499, name sapstartsrv has been started. Apr 30, 2015 2:56:32 PM [Info  ]:  Command line: /usr/sap/SUD/DVEBMGS10/exe/sapstartsrv pf=/usr/sap/SUD/SYS/profile/START_DVEBMGS10_srv-sum-ora -D Apr 30, 2015 2:56:32 PM [Info  ]:  Standard out: /SUM/SUM/sdt/log/SUM/INSTALL_SERVICE_10_02.OUT Apr 30, 2015 2:56:32 PM [Info  ]: Process ID 499 has been started. Apr 30, 2015 2:56:32 PM [Info  ]: Waiting for process ID 499, name sapstartsrv to finish. Apr 30, 2015 2:56:32 PM [Info  ]: Process ID 499, name sapstartsrv has been finished, exit code 0. Apr 30, 2015 2:56:32 PM [Info  ]: Wait for service for instance 10 on host srv-sum-ora to start... Apr 30, 2015 2:56:34 PM [Info  ]: Process ID 500, name sapcontrol has been started. Apr 30, 2015 2:56:34 PM [Info  ]:  Command line: /usr/sap/SUD/DVEBMGS10/exe/sapcontrol -nr 10 -host srv-sum-ora -prot NI_HTTPS -function GetProcessList Apr 30, 2015 2:56:34 PM [Info  ]:  Standard out: /SUM/SUM/sdt/tmp/SAPCONTROL_GETPROCESSLIST_10_03.OUT Apr 30, 2015 2:56:34 PM [Info  ]: Process ID 500 has been started. Apr 30, 2015 2:56:34 PM [Info  ]: Waiting for process ID 500, name sapcontrol to finish. Apr 30, 2015 2:56:37 PM [Info  ]: Process ID 500, name sapcontrol has been finished, exit code 4. Apr 30, 2015 2:56:37 PM [Info  ]: The sapcontrol service on host srv-sum-ora and instance 10 is started. Apr 30, 2015 2:56:37 PM [Info  ]: Service for instance 10 on host srv-sum-ora has been started. Apr 30, 2015 2:56:37 PM [Info  ]: Starting instance number 10 on host srv-sum-ora with timeout of 7200 seconds. Apr 30, 2015 2:56:37 PM [Info  ]: Process ID 501, name sapcontrol has been started. Apr 30, 2015 2:56:37 PM [Info  ]:  Command line: /usr/sap/SUD/DVEBMGS10/exe/sapcontrol -nr 10 -host srv-sum-ora -prot NI_HTTPS -function GetProcessList Apr 30, 2015 2:56:37 PM [Info  ]:  Standard out: /SUM/SUM/sdt/tmp/SAPCONTROL_GETPROCESSLIST_10_04.OUT Apr 30, 2015 2:56:37 PM [Info  ]: Process ID 501 has been started. Apr 30, 2015 2:56:37 PM [Info  ]: Waiting for process ID 501, name sapcontrol to finish. Apr 30, 2015 2:56:38 PM [Info  ]: Process ID 501, name sapcontrol has been finished, exit code 4. Apr 30, 2015 2:56:38 PM [Info  ]: Starting instance number 10 on host srv-sum-ora with timeout of 7200 seconds. Apr 30, 2015 2:56:38 PM [Info  ]: Triggering an instance start by sapcontrol... Apr 30, 2015 2:56:38 PM [Info  ]: Process ID 502, name sapcontrol has been started. Apr 30, 2015 2:56:38 PM [Info  ]:  Command line: /usr/sap/SUD/DVEBMGS10/exe/sapcontrol -nr 10 -host srv-sum-ora -prot NI_HTTPS -function Start Apr 30, 2015 2:56:38 PM [Info  ]:  Standard out: /SUM/SUM/sdt/tmp/SAPCONTROL_START_10_01.OUT Apr 30, 2015 2:56:38 PM [Info  ]: Process ID 502 has been started. Apr 30, 2015 2:56:38 PM [Info  ]: Waiting for process ID 502, name sapcontrol to finish. Apr 30, 2015 2:56:40 PM [Info  ]: Process ID 502, name sapcontrol has been finished, exit code 0. Apr 30, 2015 2:56:40 PM [Info  ]: An instance start was triggered. Apr 30, 2015 2:56:40 PM [Info  ]: Sent the start command to instance number 10 on host srv-sum-ora with timeout of 7200 seconds. Apr 30, 2015 2:56:40 PM [Info  ]: Process ID 503, name sapcontrol has been started. Apr 30, 2015 2:56:40 PM [Info  ]:  Command line: /usr/sap/SUD/DVEBMGS10/exe/sapcontrol -nr 10 -host srv-sum-ora -prot NI_HTTPS -function WaitforStarted 7200 5 Apr 30, 2015 2:56:40 PM [Info  ]:  Standard out: /SUM/SUM/sdt/tmp/SAPCONTROL_WAITFORSTARTED_10_01.OUT Apr 30, 2015 2:56:40 PM [Info  ]: Process ID 503 has been started. Apr 30, 2015 2:56:40 PM [Info  ]: Waiting for process ID 503, name sapcontrol to finish. Apr 30, 2015 4:56:45 PM [Info  ]: Process ID 503, name sapcontrol has been finished, exit code 1. Apr 30, 2015 4:56:45 PM [Error ]: Return code condition success evaluated to false for process sapcontrol for action wait for started. Apr 30, 2015 4:56:45 PM [Error ]: The following problem has occurred during step execution: com.sap.sdt.util.diag.DiagException: Could not start SAP instance with number 10. Could not check if the instance number 10 on host srv-sum-ora is started. Sapcontrol client could not perform action wait for started on instance 10 Return code condition success evaluated to false for process sapcontrol for action wait for started. Thanks for the help!!!

    check out this Kbase article
    http://docs.info.apple.com/article.html?artnum=301422
    it says
    Logic Pro 7.1: Erroneous newer software message when installing in Tiger
    When you're installing Logic Pro 7.1 on a Mac OS X 10.4 "Tiger" computer, certain circumstances may produce this alert message:
    The chosen volume contains software which is newer then [sic] the software you are installing.
    The message is erroneous; it can happen when you're updating from Logic Pro version 7.01. Simply click the Continue button in the dialog to ignore it.

  • SRM Installation Error - Start Java engine

    Hello gurus,
    OS platform -- Windows Server 2008 (R2) Stantard X64
    DataBase - MS SQL Server 2008 (R2) X64
    System - SAP SRM 7.0 / NW7.01
    Iu00B4m facing with an error during a SRM Installation of AS JAVA system (with plus EP & EP Core). I installed last week the ABAP system.
    The error is in the phase 25 - Start Java engine. I checked the sapinst.log and sapinst_dev.log and both show the following error:
    INFO 2011-05-17 12:35:13.073
    Disconnect from message server (SRVSIAPP01/3902) succeeded.
    WARNING[E] 2011-05-17 12:35:13.160
    CJS-30150  Java processes of instance JRM/JC01 [Java: UNKNOWN] did not reach state PARTRUNNING after 20:30 minutes. Giving up.
    ERROR 2011-05-17 12:35:14.42
    FCO-00011  The step startJava with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_StartJava|ind|ind|ind|ind|6|0|startJava was executed with status ERROR .
    I also checked others log files, like as start<SID>.log and dev_jcontrol:
    running D:\usr\sap\JRM\SYS\exe\uc\NTAMD64\sapstart.exe name=JRM nr=01 SAPDIAHOST=SRVSIAPP01 -wait
    SAPSTART finished successfully on SRVSIAPP01_JRM_01, but at least one process doesn't run correctly:
    D:\usr\sap\JRM\SYS\exe\uc\NTAMD64\sapstart.exe=>sapparam(1c): No Profile used.
    trc file: "D:\usr\sap\JRM\JC01\work\dev_jcontrol", trc level: 1, release: "701"
    node name   : jcontrol
    pid         : 1436
    system name : JRM
    system nr.  : 01
    started at  : Tue May 17 12:14:55 2011
    arguments       :
           arg[00] : D:\usr\sap\JRM\JC01\exe\jcontrol.EXE
           arg[01] : pf=D:\usr\sap\JRM\SYS\profile\JRM_JC01_SRVSIAPP01
    [Thr 1544] Tue May 17 12:14:55 2011
    [Thr 1544] *** ERROR => OS release Windows NT 6.1 7601 Service Pack 1 2x AMD64 Level 6 (Mod 15 Step 11) is not supported with this startup framework (701) [jstartxx.c   4389]
    This last file (dev_jcontrol) is kindly weird... I checked the PAM and it said this OS (Windows 2008 (R2) is supported!
    Can you help me to solve this problem?
    Kind regards,
    Jou00E3o Dimas - Portugal

    Hello Rajneesh,
    I read that note 1152240 and tell me in which way this apply to my case, because I only see for my case... the part that say "Installing SAP systems based on SAP Netweaver 7.0 EHP1 (7.01) or SAP Netweaver 7.0 EHP1 SR1"  and in there is recommended to:
    . Patch your runtime libraries as described in SAP note 684106 --> I already did this when I installed the ABAP system/part
    . Apply the latest DBSL patch --> I did a kernel upgrade to the latest version and also the DBSL patch on ABAP system/part
    So... I don't see anything related with my case... the Java part that is what I´m trying to install and now I´m with an error!
    Best regards,
    João Dimas - Portugal

  • Java Step Types with Java Virtual Machine higher than java-6u16?

    Documentation of Java steps says, that these steps are tested with java version 6 update 16. I am talking about the java step types that can be found in directory <TestStand Public>\TestStand 2010\Examples\Java. 
    If I install another java version, e. g. java 7, step "Start JVM" will exit with an error "-4" and error message "Could not launch JVM.". While Debugging source code of JavaCall.dll, I figured the failing code line out:
    "fpCreateJVM(&jvm,(void**)&env,&vm_args);" is the execution of function "JNI_CreateJavaVM" and returns error code -4.
    Till now I could not find out, why the jvm does not start. I guess -4 means "Insufficient memory to create the JVM." (http://zone.ni.com/reference/en-XX/help/370052J-01/tssuppref/infotopics/java_steps_errors/)
    Has anyone an advice for me?

    This post gave me a hint: http://stackoverflow.com/questions/3400292/jni-enomem-from-jni-createjavavm-when-calling-dll-that-us...
    Though my development computer has enough ram, jvm is started within the Teststand process which offers limited memory. I changed JavaCall.c and added parameter "-Xmx64m" to the jvm creation call. Now it works with jre 7.
    Because memory space Teststand offers to the jvm is different on different computers, an implementation would be nice that checks how much memory is available and then passes the calculated <MEM> as parameter "-Xmx<MEM>m". Here is an example implementation: https://forums.oracle.com/forums/thread.jspa?threadID=1546540

  • ECC6 Installation error when start instance step

    Hi all,
    I'm doing to install IDES ECC6 SR3 on window x64 with oracle database.
    I have some error in start instance step as error log below.
    Could you help me to investigate it?
    I try to do it more time but it can not pass this step.
    Thank you very much.
    This thread is same my problem but it still is not solved.
    Solution Manager 4.0 on Win install problem
    CJS-30149 ABAP processes of instance FSM/DVEBMGS00 ABAP: MSNOTRUNNING did not start after 10:00 minutes. Giving up.
    Connect to message server (st/3900) failed: NIECONN_REFUSED.
    C:\usr\sap\FSM\SCS01\work
    trc file: "dev_enqsrv", trc level: 1, release: "700"
    Thr 2932 Thu Jun 26 14:01:51 2008
    Thr 2932 stopAllThreads: stop Thread worker thread ...Thr 2932 done
    Thr 2932 stopAllThreads: stop Thread Listener thread ...Thr 2932 done
    Thr 2932 stopAllThreads: stop Thread IOThread_0 ...Thr 2932 done
    Thr 2932 stopAllThreads: stop Thread ADM-thread ...Thr 2932 stopAllThreads: stop ADM-thread not implemented. Hard kill
    Thr 2932 *** ERROR => ShmDelete: Invalid shared memory Key=1. http://shmnt.c 719
    Thr 2932 *** ERROR => ShmCleanup: ShmDelete failed for Key:1. http://shmnt.c 793
    Thr 2932 *** ERROR => ShmDelete: Invalid shared memory Key=82. http://shmnt.c 719
    Thr 2932 *** ERROR => ShmCleanup: ShmDelete failed for Key:82. http://shmnt.c 793
    Thr 2932 ***LOG GEZ=> Server shutdown (normal shutdown) http://encllog.cpp 493
    Thr 2932 Enqueue server: normal shutdown
    Ref.
    My RAM is 3.33 GB
    and SWAP Memory around 22 GB.
    I've check requisition option in master installation and all result is pass to install.

    INFO 2009-02-24 08:18:02.593
    Execution of the command "E:\oracle\DEV\102\bin\lsnrctl status LISTENER" finished with return code 0. Output:
    LSNRCTL for 64-bit Windows: Version 10.2.0.2.0 - Production on 24-FEB-2009 08:18:02
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=DEV.WORLD))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 64-bit Windows: Version 10.2.0.2.0 - Production
    Start Date                24-FEB-2009 07:07:02
    Uptime                    0 days 1 hr. 11 min. 0 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   E:\oracle\DEV\102\network\admin\listener.ora
    Listener Log File         E:\oracle\DEV\102\network\log\listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEV.WORLDipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEVipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=mm)(PORT=1527)))
    Services Summary...
    Service "DEV" has 1 instance(s).
      Instance "DEV", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    INFO 2009-02-24 08:18:02.625
    Switched to user: devadm.
    INFO 2009-02-24 08:18:04.703
    Execution of the command "E:\oracle\DEV\102\bin\lsnrctl status LISTENER" finished with return code 0. Output:
    LSNRCTL for 64-bit Windows: Version 10.2.0.2.0 - Production on 24-FEB-2009 08:18:04
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=DEV.WORLD))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 64-bit Windows: Version 10.2.0.2.0 - Production
    Start Date                24-FEB-2009 07:07:02
    Uptime                    0 days 1 hr. 11 min. 2 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   E:\oracle\DEV\102\network\admin\listener.ora
    Listener Log File         E:\oracle\DEV\102\network\log\listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEV.WORLDipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEVipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=mm)(PORT=1527)))
    Services Summary...
    Service "DEV" has 1 instance(s).
      Instance "DEV", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    INFO 2009-02-24 08:18:07.750
    Execution of the command "E:\oracle\DEV\102\bin\lsnrctl status LISTENER" finished with return code 0. Output:
    LSNRCTL for 64-bit Windows: Version 10.2.0.2.0 - Production on 24-FEB-2009 08:18:07
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=DEV.WORLD))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 64-bit Windows: Version 10.2.0.2.0 - Production
    Start Date                24-FEB-2009 07:07:02
    Uptime                    0 days 1 hr. 11 min. 5 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   E:\oracle\DEV\102\network\admin\listener.ora
    Listener Log File         E:\oracle\DEV\102\network\log\listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEV.WORLDipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEVipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=mm)(PORT=1527)))
    Services Summary...
    Service "DEV" has 1 instance(s).
      Instance "DEV", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    INFO 2009-02-24 08:18:08.921
    Execution of the command "E:\oracle\DEV\102\bin\lsnrctl status LISTENER" finished with return code 0. Output:
    LSNRCTL for 64-bit Windows: Version 10.2.0.2.0 - Production on 24-FEB-2009 08:18:08
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=DEV.WORLD))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 64-bit Windows: Version 10.2.0.2.0 - Production
    Start Date                24-FEB-2009 07:07:02
    Uptime                    0 days 1 hr. 11 min. 6 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   E:\oracle\DEV\102\network\admin\listener.ora
    Listener Log File         E:\oracle\DEV\102\network\log\listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEV.WORLDipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEVipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=mm)(PORT=1527)))
    Services Summary...
    Service "DEV" has 1 instance(s).
      Instance "DEV", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    INFO 2009-02-24 08:18:58.421
    Execution of the command "E:\oracle\DEV\102\bin\lsnrctl status LISTENER" finished with return code 0. Output:
    LSNRCTL for 64-bit Windows: Version 10.2.0.2.0 - Production on 24-FEB-2009 08:18:58
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=DEV.WORLD))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 64-bit Windows: Version 10.2.0.2.0 - Production
    Start Date                24-FEB-2009 07:07:02
    Uptime                    0 days 1 hr. 11 min. 55 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   E:\oracle\DEV\102\network\admin\listener.ora
    Listener Log File         E:\oracle\DEV\102\network\log\listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEV.WORLDipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEVipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=mm)(PORT=1527)))
    Services Summary...
    Service "DEV" has 1 instance(s).
      Instance "DEV", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    INFO 2009-02-24 08:18:58.703
    Switched to user: devadm.
    INFO 2009-02-24 08:19:00.546
    Execution of the command "E:\oracle\DEV\102\bin\lsnrctl status LISTENER" finished with return code 0. Output:
    LSNRCTL for 64-bit Windows: Version 10.2.0.2.0 - Production on 24-FEB-2009 08:19:00
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=DEV.WORLD))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 64-bit Windows: Version 10.2.0.2.0 - Production
    Start Date                24-FEB-2009 07:07:02
    Uptime                    0 days 1 hr. 11 min. 57 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   E:\oracle\DEV\102\network\admin\listener.ora
    Listener Log File         E:\oracle\DEV\102\network\log\listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEV.WORLDipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEVipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=mm)(PORT=1527)))
    Services Summary...
    Service "DEV" has 1 instance(s).
      Instance "DEV", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    INFO 2009-02-24 08:19:06.281
    Execution of the command "E:\usr\sap\DEV\SYS\exe\uc\NTAMD64\R3load.exe -testconnect" finished with return code 0. Output:
    sapparam: sapargv( argc, argv) has not been called.
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    E:\usr\sap\DEV\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20090224081904
    E:\usr\sap\DEV\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#14 $ SAP
    E:\usr\sap\DEV\SYS\exe\uc\NTAMD64\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jan 24 2008 01:41:44
    E:\usr\sap\DEV\SYS\exe\uc\NTAMD64\R3load.exe -testconnect
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (DB) INFO: disconnected from DB
    E:\usr\sap\DEV\SYS\exe\uc\NTAMD64\R3load.exe: job completed
    E:\usr\sap\DEV\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20090224081906
    INFO 2009-02-24 17:51:16.343
    Execution of the command "C:\j2sdk1.4.2_19-x64\bin\java.exe -classpath migmon.jar -showversion -Xmx1024m com.sap.inst.migmon.imp.ImportMonitor -sapinst" finished with return code 0. Output:
    java version "1.4.2_19-rev"
    Java(TM) Platform, Standard Edition for Business (build 1.4.2_19-rev-b07)
    Java HotSpot(TM) 64-Bit Server VM (build 1.4.2_19-rev-b07, mixed mode)
    Import Monitor jobs: running 1, waiting 111, completed 0, failed 0, total 112.
    Import Monitor jobs: running 2, waiting 110, completed 0, failed 0, total 112.
    Import Monitor jobs: running 3, waiting 109, completed 0, failed 0, total 112.
    Loading of 'PCL2' import package: OK
    Import Monitor jobs: running 2, waiting 109, completed 1, failed 0, total 112.
    Import Monitor jobs: running 3, waiting 108, completed 1, failed 0, total 112.
    Loading of 'PCL4' import package: OK
    LSNRCTL for 64-bit Windows: Version 10.2.0.2.0 - Production on 24-FEB-2009 17:51:33
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=IPC)(KEY=DEV.WORLD))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 64-bit Windows: Version 10.2.0.2.0 - Production
    Start Date                24-FEB-2009 07:07:02
    Uptime                    0 days 10 hr. 44 min. 31 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   E:\oracle\DEV\102\network\admin\listener.ora
    Listener Log File         E:\oracle\DEV\102\network\log\listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEV.WORLDipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=
    .\pipe\DEVipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=mm)(PORT=1527)))
    Services Summary...
    Service "DEV" has 1 instance(s).
      Instance "DEV", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully

  • Itunes 10 Hangs When Started On Windows 7 Ultimate 64 bit - Sp1 Beta 178

    Hi
    Itunes 10 hangs when started on Windows 7 Ultimate 64 bit - Sp1 Beta 178
    I have tried following things :
    -Scanned for Virus + SpyWare
    -Scanned for Corrupted System Files
    -Scanned for Errors in registry
    -Cleaned up items that startup with windows
    -Installed latest Ati Catalyst 10.8 Drivers
    -Checked settings in Itunes Version 10
    My Mobile Model :
    Apple Iphone 3gs 16 Gb
    My Hardware and software :
    HP Pavilion m9660sc PC
    Intel Core I7 980X 3.33 Ghz
    DDR3 PC2-8500 6 Gb Memory
    HDD WDC WD10EADS-65L5B1
    DVD-RW TSSTcorp TS-H653Z
    LG L225WT Size 22 Screen
    AMD Radeon HD 4850 1 Ghz Memory
    Mainboard Pegatron Intel X58 Express
    Windows 7 Ultimate 64 bit
    Windows 7 Service Pack 1 Beta 178
    Adobe Reader 9.3.4 - Norwegian
    Spotify Version 0.4.7
    Microsoft Security Essentials 2.0 Beta
    Personal Ancestral File 5
    Java(TM) 6 Update Version 21
    Google Sketchup Pro 7.1
    Google Chrome Version 6.0.472.53
    Tales Of Monkey Island Version 2.0.0.0
    Kai Anders Wold - [email protected]

    Here is the latest update :
    Removing Microsoft Security Essentials 2.0 Beta fixed the itunes 10 hangs.
    Kai Anders Wold - [email protected]

  • Webdynpro ABAP & JAVA step by step example

    hi experts,
    i am new in webdynpro. i want to learn webdynpro so any one plz help me how to create,how to install,connect,and how to execute plz send any documents for webdynpro ABAP & JAVA step by step examples with screen shots.it's really helpful for my carrier.
    thanks and regards,
    sapbbm.

    Hi Bala,
    Go through the below link,
    https://www.sdn.sap.com/irj/sdn/developerareas/abap?rid=/webcontent/uuid/fed073e5-0901-0010-4eb4-c9882aac7b11 [original link is broken]
    Here u can find 6 tutorial applications on Webdynpro Abap with step by step procedure, Using this u can start of with Webdynpro from the basics.
    Along with this u can find good documentation in,
    http://help.sap.com/saphelp_erp2005/helpdata/en/f6/501b42b5815133e10000000a155106/frameset.htm
    Hope this helps,
    Regards,
    Sachidanand.B

  • Error in XPRA EXECUTION Phase of Add On installation in SAP sys in SAINT

    Hello All,
    I have tried to install VERSANH ADD On on my SAP System with SPAM Version 7.00 <0032 kernal level 48.
    i have run transaction SAINT imported all PAT and ATT files and started the process.
    now after running around 16 Hrs it is throwing error in  XPRA EXECUTION Phase.
    The Error is
    The Add on installation terminated during phase XPRA EXECUTION
    Choose CONTINUE to continue the import
    Choose BACK to delete the installation queue
    Choose LOGS to display the import logs
    i have clicked on Continue, the it process and after 1 Hr throws same error
    i have navigated to OS Level in usrsaptranslog and there in log i am getting this line as error
    ERROR RFC function TRINT PROGRESS INDICATOR returned 18
    Thanks in advance.
    Edited by: Vinit Soni on Apr 14, 2009 11:05 AM
    Edited by: Vinit Soni on Apr 14, 2009 11:06 AM
    Edited by: Vinit Soni on Apr 14, 2009 11:07 AM
    Edited by: Vinit Soni on Apr 14, 2009 11:08 AM

    Please check the log files under /usr/sap/trans/tmp directory. There will be some information about the error and paste the log here to analyze the problem.
    Regards,
    Subhash

  • Installing obiee 11.1.1.7 hangs in start bi_server1

    Hi,
    I am struck in this installation, i have installed the software, while configuring obiee instance, its hangs in starting Managed servers : bi_server1
    Done
    Stopping Derby Server...
    Starting AdminServer
      Starting the domain ...
    progress in calculate progress1
    Executing Task: Starting Managed Server: bi_server1
    oracle.as.install.bi.wls.ServerLifeCycleException: Failed to achieve state RUNNING in 3600seconds.   The server is currently in state STARTING
      at oracle.as.install.bi.wls.ServerLifeCycle.waitForManagedWLSServerState(ServerLifeCycle.java:119)
      at oracle.as.install.bi.wls.ServerLifeCycle.startServerSynchronous(ServerLifeCycle.java:59)
      at oracle.as.install.bi.biconfig.standard.StartStopManagedServer.doExecute(StartStopManagedServer.java:55)
      at oracle.as.install.bi.biconfig.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:70)
      at oracle.as.install.bi.biconfig.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:66)
      at oracle.as.install.bi.biconfig.BIConfigMain.doExecute(BIConfigMain.java:113)
      at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:375)
      at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
      at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
      at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
      at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:96)
      at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:186)
      at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
      at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
      at java.lang.Thread.run(Thread.java:662)
    Also i have found this error in AdminServer.log
    ####<Jun 23, 2013 9:09:52 PM IST> <Notice> <Security> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000012> <1372001992884> <BEA-090898> <Ignoring the trusted CA certificate "CN=Entrust Root Certification Authority - G2,OU=(c) 2009 Entrust\, Inc. - for authorized use only,OU=See www.entrust.net/legal-terms,O=Entrust\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    ####<Jun 23, 2013 9:09:52 PM IST> <Notice> <Security> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000012> <1372001992885> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    ####<Jun 23, 2013 9:09:52 PM IST> <Notice> <Security> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000012> <1372001992886> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    ####<Jun 23, 2013 9:09:52 PM IST> <Notice> <Security> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000012> <1372001992887> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    ####<Jun 23, 2013 9:09:52 PM IST> <Notice> <Security> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000012> <1372001992887> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    ####<Jun 23, 2013 9:09:52 PM IST> <Notice> <Security> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000012> <1372001992889> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    ####<Jun 23, 2013 9:09:52 PM IST> <Notice> <Security> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000012> <1372001992890> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    ####<Jun 23, 2013 9:09:52 PM IST> <Notice> <Security> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000012> <1372001992892> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    ####<Jun 23, 2013 9:09:52 PM IST> <Notice> <Security> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000012> <1372001992893> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    ####<Jun 23, 2013 9:09:52 PM IST> <Info> <WebLogicServer> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000012> <1372001992896> <BEA-000307> <Exportable key maximum lifespan set to 500 uses.>
    ####<Jun 23, 2013 9:20:48 PM IST> <Error> <WebLogicServer> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-000000000000001c> <1372002648290> <BEA-000337> <[STUCK] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "656" seconds working on the request "weblogic.kernel.WorkManagerWrapper$1@14b0b657", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
    Thread-15 "[STUCK] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" <alive, in native, suspended, priority=1, DAEMON> {
        jrockit.net.SocketNativeIO.readBytesPinned(SocketNativeIO.java:???)
        jrockit.net.SocketNativeIO.socketRead(SocketNativeIO.java:24)
        java.net.SocketInputStream.socketRead0(SocketInputStream.java:???)
        java.net.SocketInputStream.read(SocketInputStream.java:107)
        weblogic.utils.io.ChunkedInputStream.read(ChunkedInputStream.java:149)
        java.io.InputStream.read(InputStream.java:85)
        com.certicom.tls.record.ReadHandler.readFragment(Unknown Source)
        com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
        com.certicom.tls.record.ReadHandler.read(Unknown Source)
        ^-- Holding lock: com.certicom.tls.record.ReadHandler@14a90002[thin lock]
        com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
        sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:250)
        sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:289)
        sun.nio.cs.StreamDecoder.read(StreamDecoder.java:125)
        ^-- Holding lock: java.io.InputStreamReader@14a91265[thin lock]
        java.io.InputStreamReader.read(InputStreamReader.java:167)
        java.io.BufferedReader.fill(BufferedReader.java:105)
        java.io.BufferedReader.readLine(BufferedReader.java:288)
        ^-- Holding lock: java.io.InputStreamReader@14a91265[thin lock]
        java.io.BufferedReader.readLine(BufferedReader.java:362)
        weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:289)
        weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:314)
        weblogic.nodemanager.client.NMServerClient.start(NMServerClient.java:94)
        ^-- Holding lock: weblogic.nodemanager.client.SSLClient@14b0b51f[thin lock]
        weblogic.nodemanager.mbean.StartRequest.start(StartRequest.java:75)
        weblogic.nodemanager.mbean.StartRequest.execute(StartRequest.java:45)
        weblogic.kernel.WorkManagerWrapper$1.run(WorkManagerWrapper.java:63)
        weblogic.work.ExecuteThread.execute(ExecuteThread.java:203)
        weblogic.work.ExecuteThread.run(ExecuteThread.java:170)
    >
    ####<Jun 23, 2013 9:20:48 PM IST> <Notice> <Diagnostics> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-000000000000001d> <1372002648300> <BEA-320068> <Watch 'StuckThread' with severity 'Notice' on server 'AdminServer' has triggered at Jun 23, 2013 9:20:48 PM IST. Notification details:
    WatchRuleType: Log
    WatchRule: (SEVERITY = 'Error') AND ((MSGID = 'WL-000337') OR (MSGID = 'BEA-000337'))
    WatchData: DATE = Jun 23, 2013 9:20:48 PM IST SERVER = AdminServer MESSAGE = [STUCK] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "656" seconds working on the request "weblogic.kernel.WorkManagerWrapper$1@14b0b657", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
    Thread-15 "[STUCK] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" <alive, in native, suspended, priority=1, DAEMON> {
        jrockit.net.SocketNativeIO.readBytesPinned(SocketNativeIO.java:???)
        jrockit.net.SocketNativeIO.socketRead(SocketNativeIO.java:24)
        java.net.SocketInputStream.socketRead0(SocketInputStream.java:???)
        java.net.SocketInputStream.read(SocketInputStream.java:107)
        weblogic.utils.io.ChunkedInputStream.read(ChunkedInputStream.java:149)
        java.io.InputStream.read(InputStream.java:85)
        com.certicom.tls.record.ReadHandler.readFragment(Unknown Source)
        com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
        com.certicom.tls.record.ReadHandler.read(Unknown Source)
        ^-- Holding lock: com.certicom.tls.record.ReadHandler@14a90002[thin lock]
        com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
        sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:250)
        sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:289)
        sun.nio.cs.StreamDecoder.read(StreamDecoder.java:125)
        ^-- Holding lock: java.io.InputStreamReader@14a91265[thin lock]
        java.io.InputStreamReader.read(InputStreamReader.java:167)
        java.io.BufferedReader.fill(BufferedReader.java:105)
        java.io.BufferedReader.readLine(BufferedReader.java:288)
        ^-- Holding lock: java.io.InputStreamReader@14a91265[thin lock]
        java.io.BufferedReader.readLine(BufferedReader.java:362)
        weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:289)
        weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:314)
        weblogic.nodemanager.client.NMServerClient.start(NMServerClient.java:94)
        ^-- Holding lock: weblogic.nodemanager.client.SSLClient@14b0b51f[thin lock]
        weblogic.nodemanager.mbean.StartRequest.start(StartRequest.java:75)
        weblogic.nodemanager.mbean.StartRequest.execute(StartRequest.java:45)
        weblogic.kernel.WorkManagerWrapper$1.run(WorkManagerWrapper.java:63)
        weblogic.work.ExecuteThread.execute(ExecuteThread.java:203)
        weblogic.work.ExecuteThread.run(ExecuteThread.java:170)
    SUBSYSTEM = WebLogicServer USERID = <WLS Kernel> SEVERITY = Error THREAD = [ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-000337 MACHINE = obiee.prod.com TXID =  CONTEXTID = d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-000000000000001c TIMESTAMP = 1372002648290 
    WatchAlarmType: AutomaticReset
    WatchAlarmResetPeriod: 600000
    >
    ####<Jun 23, 2013 9:21:48 PM IST> <Error> <WebLogicServer> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-000000000000001f> <1372002708299> <BEA-000337> <[STUCK] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "716" seconds working on the request "weblogic.kernel.WorkManagerWrapper$1@14b0b657", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:
    Thread-15 "[STUCK] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" <alive, in native, suspended, priority=1, DAEMON> {
        jrockit.net.SocketNativeIO.readBytesPinned(SocketNativeIO.java:???)
        jrockit.net.SocketNativeIO.socketRead(SocketNativeIO.java:24)
        java.net.SocketInputStream.socketRead0(SocketInputStream.java:???)
        java.net.SocketInputStream.read(SocketInputStream.java:107)
        weblogic.utils.io.ChunkedInputStream.read(ChunkedInputStream.java:149)
        java.io.InputStream.read(InputStream.java:85)
        com.certicom.tls.record.ReadHandler.readFragment(Unknown Source)
        com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
        com.certicom.tls.record.ReadHandler.read(Unknown Source)
        ^-- Holding lock: com.certicom.tls.record.ReadHandler@14a90002[thin lock]
        com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
        sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:250)
        sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:289)
        sun.nio.cs.StreamDecoder.read(StreamDecoder.java:125)
        ^-- Holding lock: java.io.InputStreamReader@14a91265[thin lock]
        java.io.InputStreamReader.read(InputStreamReader.java:167)
        java.io.BufferedReader.fill(BufferedReader.java:105)
        java.io.BufferedReader.readLine(BufferedReader.java:288)
        ^-- Holding lock: java.io.InputStreamReader@14a91265[thin lock]
        java.io.BufferedReader.readLine(BufferedReader.java:362)
        weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:289)
        weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:314)
        weblogic.nodemanager.client.NMServerClient.start(NMServerClient.java:94)
        ^-- Holding lock: weblogic.nodemanager.client.SSLClient@14b0b51f[thin lock]
        weblogic.nodemanager.mbean.StartRequest.start(StartRequest.java:75)
        weblogic.nodemanager.mbean.StartRequest.execute(StartRequest.java:45)
        weblogic.kernel.WorkManagerWrapper$1.run(WorkManagerWrapper.java:63)
        weblogic.work.ExecuteThread.execute(ExecuteThread.java:203)
        weblogic.work.ExecuteThread.run(ExecuteThread.java:170)
    >
    ####<Jun 23, 2013 9:23:37 PM IST> <Info> <JDBC> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000020> <1372002817371> <BEA-001128> <Connection for pool "mds-owsm" closed.>
    ####<Jun 23, 2013 9:23:38 PM IST> <Info> <Common> <obiee.prod.com> <AdminServer> <MDSPollingThread-[owsm, jdbc/mds/owsm]> <OracleSystemUser> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000003> <1372002818247> <BEA-000628> <Created "1" resources for pool "mds-owsm", out of which "1" are available and "0" are unavailable.>
    ####<Jun 23, 2013 9:38:37 PM IST> <Info> <JDBC> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000029> <1372003717357> <BEA-001128> <Connection for pool "mds-owsm" closed.>
    ####<Jun 23, 2013 9:38:38 PM IST> <Info> <Common> <obiee.prod.com> <AdminServer> <MDSPollingThread-[owsm, jdbc/mds/owsm]> <OracleSystemUser> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000003> <1372003718551> <BEA-000628> <Created "1" resources for pool "mds-owsm", out of which "1" are available and "0" are unavailable.>
    ####<Jun 23, 2013 9:53:37 PM IST> <Info> <JDBC> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000036> <1372004617391> <BEA-001128> <Connection for pool "mds-owsm" closed.>
    ####<Jun 23, 2013 9:53:38 PM IST> <Info> <Common> <obiee.prod.com> <AdminServer> <MDSPollingThread-[owsm, jdbc/mds/owsm]> <OracleSystemUser> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000003> <1372004618870> <BEA-000628> <Created "1" resources for pool "mds-owsm", out of which "1" are available and "0" are unavailable.>
    ####<Jun 23, 2013 10:08:37 PM IST> <Info> <JDBC> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-000000000000003f> <1372005517356> <BEA-001128> <Connection for pool "mds-owsm" closed.>
    ####<Jun 23, 2013 10:08:39 PM IST> <Info> <Common> <obiee.prod.com> <AdminServer> <MDSPollingThread-[owsm, jdbc/mds/owsm]> <OracleSystemUser> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000003> <1372005519176> <BEA-000628> <Created "1" resources for pool "mds-owsm", out of which "1" are available and "0" are unavailable.>
    ####<Jun 23, 2013 10:23:37 PM IST> <Info> <JDBC> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-000000000000004c> <1372006417363> <BEA-001128> <Connection for pool "mds-owsm" closed.>
    ####<Jun 23, 2013 10:23:39 PM IST> <Info> <Common> <obiee.prod.com> <AdminServer> <MDSPollingThread-[owsm, jdbc/mds/owsm]> <OracleSystemUser> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000003> <1372006419447> <BEA-000628> <Created "1" resources for pool "mds-owsm", out of which "1" are available and "0" are unavailable.>
    ####<Jun 23, 2013 10:38:37 PM IST> <Info> <JDBC> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000055> <1372007317361> <BEA-001128> <Connection for pool "mds-owsm" closed.>
    ####<Jun 23, 2013 10:38:39 PM IST> <Info> <Common> <obiee.prod.com> <AdminServer> <MDSPollingThread-[owsm, jdbc/mds/owsm]> <OracleSystemUser> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000003> <1372007319778> <BEA-000628> <Created "1" resources for pool "mds-owsm", out of which "1" are available and "0" are unavailable.>
    ####<Jun 23, 2013 10:53:37 PM IST> <Info> <JDBC> <obiee.prod.com> <AdminServer> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000062> <1372008217362> <BEA-001128> <Connection for pool "mds-owsm" closed.>
    ####<Jun 23, 2013 10:53:40 PM IST> <Info> <Common> <obiee.prod.com> <AdminServer> <MDSPollingThread-[owsm, jdbc/mds/owsm]> <OracleSystemUser> <> <d7ae7ea9bf56ebdc:672b0c54:13f71afc8f0:-8000-0000000000000003> <1372008220313> <BEA-000628> <Created "1" resources for pool "mds-owsm", out of which "1" are available and "0" are unavailable.>
    Where to look for the errors
    Please help, i have searched everywhere, there are no solutions for this.
    Advanced thanks

    If you want to run the EPM weblogic admin server and OBIEE at the same time then you would need for them to run on different ports.
    You don't have to select the essbase option when installing OBIEE if you have already installed the essbase products.
    I would install OBIEE to a different middleware home than EPM and keep the weblogic domains separate.
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for