Tx SMICM - J2EE Server operational = FALSE

Hi
When I look at the J2EE Engine status in Tx SMICM it is showing it as J2EE server not operational i.e J2EE Server operational=FALSE. The J2EE Engine is actually started at the operating system as I can see the Jcontrol (one) and Jlaunch (three process) started in the task manager of the operating system.
Also, I checked in the dev_dispathcer, dev_jcontrol etc log file. As per these log files J2EE engine is started.
The profile parameter rdisp/j2ee_start is set to TRUE.
Any ideas why Tx SMICM is showing it as J2EE is not operational.
I also checked SAPJSF user which is not locked.
Any ideas on this would be appreciated.
This is a new XI installation.
Regards
Chandu

Hi Chandu,
Use Reflection X Manager for Configuring Java Stack.
Set JAVA_HOME variable
Export JAVA_HOME-/usr/sap/<SID>/java1.4
Go to /usr/sap/<SID>/DVEBMGSXX/j2ee/admin
./go
Enter J2EE_ADMIN password for <SID> system.
Go to Cluster -> <SID> -> Dispatcher -> Services -> HTTP Provider -> Properties
Enter the value for Ports and Click on Update. After the Change bounce Java stack.The issue will be resolved.

Similar Messages

  • J2EE Server in Tx SMICM

    Hi experts.
    I recently install a Java Add-In on a BW 3.5 Server.
    After the installation I tried to apply a patch to the java stack but it gave me an error that i can't resolve.
    And now, after the unsuccessful attempt, I can't start my j2ee server. In the MMC exists the java instance and is it in green status, but when I go to Tx SMICM in the options Administrator -> J2EE Server -> ... all the options are in gray and I can't select anyone, I can't start the j2ee server.
    How can I solve this problem?
    All your help will be appreciated.

    The logs in the work directory dev_bootstrap, std_bootstrap, jvm_bootstrap*, dev_dispatcher, std_dispatcher.out
    dev_server0, std_server0.out, are no updated because the application doesn't start.
    The only log I can find is in the MMC in the process disp+work.exe in the developer trace:
    <font face='times'>
    DpSysAdmExtInit: ABAP is active
    DpJ2eeStart: j2ee state = INIT
    ERROR => DpProcCreate: DpJ2eeStart failed [dpxxdisp.c   10768]
    rdisp/http_min_wait_dia_wp : 1 - > 1
    DpJ2eeStart: j2ee state = INIT
    ERROR => DpEnvCheckJ2ee: DpJ2eeStart failed [dpxxdisp.c   6445]
    Tue Jun 03 18:21:06 2008
    ERROR => DpForkExec: CreateProcess (2: No such file or directory) [dpntdisp.c   1486]
    LOG Q0I=> DpForkExec, CreateProcess ( CreateProcess 2) [dpntdisp.c   1488]
    DpJ2eeStart: j2ee state = INIT
    ERROR => DpEnvCheckJ2ee: DpJ2eeStart failed [dpxxdisp.c   6445]
    Tue Jun 03 18:23:46 2008
    DpEnvCheckJ2ee: switch off j2ee start flag
    </font>
    That is the only information that I can get about j2ee server.

  • Reconnecting to J2EE server

    I am developing a Adapter in TIBCO which connects to a J2EE server which acts a
    host for JMS queue. This adapter picks up the the messages from the JMS queue
    and publishes on the TIBCO bus.
    Now JMS subscribers receive messages through a registration - callback
    mechanism. If the J2EE server hosting the JMS queue goes down the subscriber is
    not notified and simply receives no messages. In the jms adapter this means
    that when the weblogic (J2EE) server comes back up no messages are received as
    subscriber configurations have been lost on the server side.
    To work around this we need to implement a disconnect-connect operation after
    the adapter has been idle for a certain length of time using a separate timer
    thread. But when i try to reconnect to the J2EE server after it starts again an
    exception is raised.
    This is code snippet i am using for reconnection. It is pretty straight forward.
    try {
    context = new InitialContext ();
              catch (NamingException nm)
                   System.out.println ("NamingException " + nm);
              try {
                   queueconnectionfactory = (QueueConnectionFactory)
    context.lookup(queueConnectionFactoryName);
    queueconnection =
    queueconnectionfactory.createQueueConnection();
                   queuesession = queueconnection.createQueueSession(false,
    Session.AUTO_ACKNOWLEDGE);
                   queue = (Queue) context.lookup(subJMSQueue);
    queuereceiver = queuesession.createReceiver(queue);
    queuereceiver.setMessageListener (listener);
    queueconnection.start();
                                       outQueue = (Queue) context.lookup(pubJMSQueue);
                        catch (NamingException ne) {
                        System.out.println ("ERROR: Error while JNDI Namespace look up. Reason: " +
    ne.toString());
                   try {
                   queueSender = queuesession.createSender(outQueue);
                   catch (JMSException je) {
                        System.out.println ("ERROR: Error while creating Queue Objects. Reason: " +
    je.toString());
              catch (NamingException ne)
                   System.out.println ("Fatal! Initialization of JMS adapter failed - Could not
    obtain connection objects for the JMS queue." + ne);
              catch (Exception e)
                   System.out.println ("Fatal! Initialization of adapter failed - Could not
    obtain components from registry." + e);
    This is the exception i am getting.
    javax.naming.CommunicationException: java.rmi.MarshalExcepti
    on: CORBA COMM_FAILURE 1398079689 No; nested exception is:
    org.omg.CORBA.COMM_FAILURE: minor code: 1398079689 completed: No
    org.omg.CORBA.COMM_FAILURE: minor code: 1398079689 completed: No
    at com.sun.corba.ee.internal.iiop.ConnectionTable.getConnection(Connecti
    onTable.java:176)
    at com.sun.corba.ee.internal.iiop.ConnectionTable.getConnection(Connecti
    onTable.java:68)
    at com.sun.corba.ee.internal.iiop.GIOPImpl.getConnection(GIOPImpl.java:7
    0)
    at com.sun.corba.ee.internal.corba.ClientDelegate.createRequest(ClientDe
    legate.java:641)
    at com.sun.corba.ee.internal.corba.ClientDelegate.createRequest(ClientDe
    legate.java:583)
    at com.sun.corba.ee.internal.corba.ClientDelegate.request(ClientDelegate
    .java:875)
    at org.omg.CORBA.portable.ObjectImpl._request(ObjectImpl.java:433)
    at org.omg.stub.com.sun.enterprise.naming._SerialContextProvider_Stub.lo
    okup(Unknown Source)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:120
    at javax.naming.InitialContext.lookup(InitialContext.java:350)
    at com.hutchison3g.core.ea.adapter.jmsadapter.JMSReconnectionTimer.reest
    ablishJMSConnection(JMSReconnectionTimer.java:117)
    at com.hutchison3g.core.ea.adapter.jmsadapter.JMSReconnectionTimer.onEve
    nt(JMSReconnectionTimer.java:42)
    at com.tibco.sdk.events.EventHandoff.run(MEventSource.java:141)
    at java.lang.Thread.run(Thread.java:484)
    Any suggestion whether i am doing it correct or how else can i do this.
    Thanks all in advance.

    The classic way to sort this kind of connectivity issue out is to use JINI.
    JINI provides you with facilities that allow for the publication of services over a network. It also provides with facilities for discovering which services are currently available and which are not. It also does a tonne of other things for you too, including having invented this particular wheel for you.
    In your case you would be introducing a rapdily emerging but mature system into your application that you will probably find a 1000 other uses for.
    I find JINI fascinating to work with, I hope you do too (its a cannot live without it experience for me now)

  • Error start SOA Suite(J2EE Server)

    Usually J2EE Server successfully start and works. But sometimes server cannot start, and shows a following error:
    ==================================================
    ias-component: default_group
    process-type: home
    process-set: default_group
    Error Message:time out while waiting for a managed process to start
    ==================================================
    And generates such log-file:
    Configuration information
    Running in C:\product\10.1.3.1\OracleAS_1
    Operation mode:Startup, App Server, No Enterprise Manager, Single Instance
    Oracle home:C:\product\10.1.3.1\OracleAS_1
    Oracle home name:Unnamed
    Instance name:orcl.localhost
    Instance type:core
    Version:10.1.3.1.0
    Uses infrastructure:false
    Not an infrastructure instance, no infrastructure information available
    Components:[j2ee, Wsil]
    2007-02-16 01:22:44.361--Begin log output for Mid-tier services (orcl.localhost)
    2007-02-16 01:22:44.361--Processing Step: starting OPMN
    2007-02-16 01:22:45.613--Processing Step: starting OPMN managed processes
    2007-02-16 01:51:54.17--End log output for Mid-tier services (orcl.localhost)
    An unknown OPMN error has occured
    oracle.appserver.startupconsole.model.ConsoleException: An unknown OPMN error has occured
         at oracle.appserver.startupconsole.control.OPMNController.doStart(OPMNController.java:140)
         at oracle.appserver.startupconsole.control.Controller.start(Controller.java:69)
         at oracle.appserver.startupconsole.control.GroupController.doStart(GroupController.java:47)
         at oracle.appserver.startupconsole.control.Controller.start(Controller.java:69)
         at oracle.appserver.startupconsole.view.controller.ControllerAdapter.start(ControllerAdapter.java:30)
         at oracle.appserver.startupconsole.view.controller.MasterControlAdapter.run(MasterControlAdapter.java:94)
         at oracle.appserver.startupconsole.view.Runner.main(Runner.java:39)
    Caused by: oracle.appserver.startupconsole.model.ConsoleException: There are some errors while stopping the following components. Refer to the generated error report for more details.
    ==================================================
    ias-component: default_group
    process-type: home
    process-set: default_group
    Error Message:time out while waiting for a managed process to start
    ==================================================
         at oracle.appserver.startupconsole.control.OPMNController.doStart(OPMNController.java:139)
         ... 6 more
    Caused by: oracle.ias.opmn.optic.OpticControlException: Error from opmn during process control operation
         at oracle.ias.opmn.optic.AbstractOpmnEntity.runCommand(AbstractOpmnEntity.java:174)
         at oracle.ias.opmn.optic.AbstractOpmnEntity.start(AbstractOpmnEntity.java:110)
         at oracle.appserver.startupconsole.control.OPMNController.doStart(OPMNController.java:97)
         ... 6 more
    Exception caused by
    There are some errors while stopping the following components. Refer to the generated error report for more details.
    ==================================================
    ias-component: default_group
    process-type: home
    process-set: default_group
    Error Message:time out while waiting for a managed process to start
    ==================================================
    oracle.appserver.startupconsole.model.ConsoleException: There are some errors while stopping the following components. Refer to the generated error report for more details.
    ==================================================
    ias-component: default_group
    process-type: home
    process-set: default_group
    Error Message:time out while waiting for a managed process to start
    ==================================================
         at oracle.appserver.startupconsole.control.OPMNController.doStart(OPMNController.java:139)
         at oracle.appserver.startupconsole.control.Controller.start(Controller.java:69)
         at oracle.appserver.startupconsole.control.GroupController.doStart(GroupController.java:47)
         at oracle.appserver.startupconsole.control.Controller.start(Controller.java:69)
         at oracle.appserver.startupconsole.view.controller.ControllerAdapter.start(ControllerAdapter.java:30)
         at oracle.appserver.startupconsole.view.controller.MasterControlAdapter.run(MasterControlAdapter.java:94)
         at oracle.appserver.startupconsole.view.Runner.main(Runner.java:39)
    Caused by: oracle.ias.opmn.optic.OpticControlException: Error from opmn during process control operation
         at oracle.ias.opmn.optic.AbstractOpmnEntity.runCommand(AbstractOpmnEntity.java:174)
         at oracle.ias.opmn.optic.AbstractOpmnEntity.start(AbstractOpmnEntity.java:110)
         at oracle.appserver.startupconsole.control.OPMNController.doStart(OPMNController.java:97)
         ... 6 more
    <?xml version='1.0' encoding='WINDOWS-1251'?>
    <response>
    <msg code="-82" text="Remote request with weak authentication.">
    </msg>
    <opmn id="r-0c2b16d9f3e64:6200" http-status="408" http-response="0 of 1 processes started.">
    <ias-instance id="orcl.localhost">
    <ias-component id="default_group">
    <process-type id="home">
    <process-set id="default_group">
    <process id="896076993" pid="808" status="Stop" index="1" log="C:\product\10.1.3.1\OracleAS_1\opmn\logs\\default_group~home~default_group~1.log" operation="request" result="failure">
    <msg code="-22" text="time out while waiting for a managed process to start">
    </msg>
    </process>
    </process-set>
    </process-type>
    </ias-component>
    </ias-instance>
    </opmn>
    </response>
    Configuration:
    WinXP Pro SP2
    SOA Suite 10.1.3.1 (installation type: J2EE Server)
    Thanks,
    stan1slav.

    You say:
    Usually J2EE Server successfully start and works. But sometimes server cannot start, and shows a following error.
    Are you using the SOA Suite on the same machine? I mean does it use the same IP-adress, hostname? Are you using proxy-settings?

  • J2EE Server unable to start

    Hi,
    first of all, i'm really new to SAP NW. Today I started installing the Sneak Preview of SAP NetWeaver 2004 7.0 SP9
    JavaStack on my Virtual Machine (Windows2003Server, J2SE 1.4.2.09) and it worked fine.
    After installation I started the SAP Management Console and tried to start my first and only instance J2E.
    In J2E i got 3 instances, the DB, Instance 0 and Instance 1.
    After start:
    DB is working (blue)
    Instance 0 is working (green)
    Instance 1 failed while starting (turned from yellow to red)
      Process List shows:
      jcontrol.EXE | J2EE Server | License check failed
      igswd.EXE | IGS Watchdog | Running
    Problem:
    I don't know why the License check failed!
    I downloaded the Software about mid of february, its been about 3 month ago and I ran the install for the first time
    today. What might be the problem? I searched the SDN-History for similar problems, but i did not find an adequate
    answer. I checked dev_jcontrol and the "license check failed" entry is in the file. So I'm wondering why my license
    check fails, although I'm installing the software for the first time!
    An info i got from the start.htm is:
    The license of this Trial Version is for evaluation purposes only and does not allow commercial use.
    The license is valid for 90 days and cannot be extended (View license). If the license has expired, the
    entry license check failed will appear in the trace file <INST_DRIVE>:\usr\sap\J2E\JC01\work\dev_jcontrol,
    if the instance name remains unchanged during the installation process. Please refer to SAP Developer
    Network for more information about commercially available editions of SAP Web Application Server and SAP NetWeaver Developer Studio.
    May one find some more information in that file?
    I realised that a package is missing, but read in the forum, that this is not a obligatory package (?)
    JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\J2E\JC01\exe\jvmx.jar
    trc file: "D:\usr\sap\J2E\JC01\work\dev_jcontrol", trc level: 1, release: "700"
    node name   : jcontrol
    pid         : 2644
    system name : J2E
    system nr.  : 01
    started at  : Wed May 07 13:28:11 2008
    arguments       :
           arg[00] : D:\usr\sap\J2E\JC01\exe\jcontrol.EXE
           arg[01] : pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    [Thr 1352] Wed May 07 13:28:11 2008
    [Thr 1352] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    [Thr 1352] *** WARNING => INFO: Unknown property [instance.en.host=sope75] [jstartxx.c   841]
    [Thr 1352] *** WARNING => INFO: Unknown property [instance.box.number=J2EJC01sope75] [jstartxx.c   841]
    [Thr 1352] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties;D:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : sope75
    -> ms port    : 3900
    -> OS libs    : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> files [01] : D:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : sope75
    -> ms port    : 3900
    -> os libs    : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap_ID18439050 : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID18439000 : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] bootstrap            : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID18439050           : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] ID18439000           : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] sdm                  : D:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties
    [Thr 1352] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\Programme\Java\j2sdk1.4.2_09
    [Thr 1352] Wed May 07 13:28:19 2008
    [Thr 1352] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap]
    -> node name          : bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> java path          : C:\Programme\Java\j2sdk1.4.2_09
    -> java parameters    : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version    : 1.4.2_09-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 512M
    -> root path          : D:\usr\sap\J2E\JC01\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\J2E\JC01\exe\jstartup.jar;D:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0184390
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    [Thr 1352] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 1352] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\Programme\Java\j2sdk1.4.2_09
    [Thr 1352] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap]
    -> node name          : bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> java path          : C:\Programme\Java\j2sdk1.4.2_09
    -> java parameters    : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version    : 1.4.2_09-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 512M
    -> root path          : D:\usr\sap\J2E\JC01\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\J2E\JC01\exe\jstartup.jar;D:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0184390
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = D:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = D:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    -> arg[02] = -DSAPINFO=J2E_01_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_2644
    -> arg[06] = -nodeName=bootstrap
    -> arg[07] = -jvmOutFile=D:\usr\sap\J2E\JC01\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=D:\usr\sap\J2E\JC01\work\std_bootstrap.out
    -> arg[09] = -locOutFile=D:\usr\sap\J2E\JC01\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    -> lib path = PATH=C:\Programme\Java\j2sdk1.4.2_09\jre\bin\server;C:\Programme\Java\j2sdk1.4.2_09\jre\bin;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;c:\orabase\1020\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;c:\prgramme\sharepoint portal server\bin;C:\Programme\Gemeinsame Dateien\Microsoft Shared\web server extensions\60\BIN;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;c:\Programme\Java\jdk1.5.0_13\bin;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\Programme\Java\j2sdk1.4.2_09\bin;D:\usr\sap\J2E\JC01\j2ee\os_libs;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;c:\orabase\1020\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;c:\prgramme\sharepoint portal server\bin;C:\Programme\Gemeinsame Dateien\Microsoft Shared\web server extensions\60\BIN;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;c:\Programme\Java\jdk1.5.0_13\bin;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 1352] Wed May 07 13:30:12 2008
    [Thr 1352] JControlExecuteBootstrap: read instance values after global bootstrap
    [Thr 1352] *** WARNING => INFO: Unknown property [instance.box.number=J2EJC01sope75] [jstartxx.c   841]
    [Thr 1352] *** WARNING => INFO: Unknown property [instance.en.host=sope75] [jstartxx.c   841]
    [Thr 1352] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 1352] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties;D:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : sope75
    -> ms port    : 3900
    -> OS libs    : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    [Thr 1352] JControlExecuteBootstrap: enumerate the nodes after global bootstrap
    Used property files
    -> files [00] : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> files [01] : D:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : sope75
    -> ms port    : 3900
    -> os libs    : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID18439000 : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID18439050 : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID18439000           : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] ID18439050           : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] sdm                  : D:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties
    [Thr 1352] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID18439000]
    [Thr 1352] [Node: dispatcher bootstrap] java home is set by profile parameter
         Java Home: C:\Programme\Java\j2sdk1.4.2_09
    [Thr 1352] Wed May 07 13:30:16 2008
    [Thr 1352] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap_ID18439000]
    -> node name          : dispatcher bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\Programme\Java\j2sdk1.4.2_09
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_09-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 256M
    -> root path          : D:\usr\sap\J2E\JC01\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\J2E\JC01\exe\jstartup.jar;D:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID018439000
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = D:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = D:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    -> arg[02] = -DSAPINFO=J2E_01_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_2644
    -> arg[06] = -nodeName=bootstrap_ID18439000
    -> arg[07] = -jvmOutFile=D:\usr\sap\J2E\JC01\work\jvm_bootstrap_ID18439000.out
    -> arg[08] = -stdOutFile=D:\usr\sap\J2E\JC01\work\std_bootstrap_ID18439000.out
    -> arg[09] = -locOutFile=D:\usr\sap\J2E\JC01\work\dev_bootstrap_ID18439000
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    -> lib path = PATH=C:\Programme\Java\j2sdk1.4.2_09\jre\bin\server;C:\Programme\Java\j2sdk1.4.2_09\jre\bin;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;c:\orabase\1020\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;c:\prgramme\sharepoint portal server\bin;C:\Programme\Gemeinsame Dateien\Microsoft Shared\web server extensions\60\BIN;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;c:\Programme\Java\jdk1.5.0_13\bin;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\Programme\Java\j2sdk1.4.2_09\bin;D:\usr\sap\J2E\JC01\j2ee\os_libs;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;c:\orabase\1020\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;c:\prgramme\sharepoint portal server\bin;C:\Programme\Gemeinsame Dateien\Microsoft Shared\web server extensions\60\BIN;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;c:\Programme\Java\jdk1.5.0_13\bin;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 1352] Wed May 07 13:31:04 2008
    [Thr 1352] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID18439050]
    [Thr 1352] [Node: server0 bootstrap] java home is set by profile parameter
         Java Home: C:\Programme\Java\j2sdk1.4.2_09
    [Thr 1352] Wed May 07 13:31:06 2008
    [Thr 1352] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap_ID18439050]
    -> node name          : server0 bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\Programme\Java\j2sdk1.4.2_09
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_09-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 256M
    -> root path          : D:\usr\sap\J2E\JC01\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\J2E\JC01\exe\jstartup.jar;D:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID018439050
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = D:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = D:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    -> arg[02] = -DSAPINFO=J2E_01_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_2644
    -> arg[06] = -nodeName=bootstrap_ID18439050
    -> arg[07] = -jvmOutFile=D:\usr\sap\J2E\JC01\work\jvm_bootstrap_ID18439050.out
    -> arg[08] = -stdOutFile=D:\usr\sap\J2E\JC01\work\std_bootstrap_ID18439050.out
    -> arg[09] = -locOutFile=D:\usr\sap\J2E\JC01\work\dev_bootstrap_ID18439050
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    -> lib path = PATH=C:\Programme\Java\j2sdk1.4.2_09\jre\bin\server;C:\Programme\Java\j2sdk1.4.2_09\jre\bin;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;c:\orabase\1020\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;c:\prgramme\sharepoint portal server\bin;C:\Programme\Gemeinsame Dateien\Microsoft Shared\web server extensions\60\BIN;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;c:\Programme\Java\jdk1.5.0_13\bin;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\Programme\Java\j2sdk1.4.2_09\bin;D:\usr\sap\J2E\JC01\j2ee\os_libs;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;c:\orabase\1020\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;c:\prgramme\sharepoint portal server\bin;C:\Programme\Gemeinsame Dateien\Microsoft Shared\web server extensions\60\BIN;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;c:\Programme\Java\jdk1.5.0_13\bin;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 1352] Wed May 07 13:33:15 2008
    [Thr 1352] JControlIBuildProcessList: Maximum error count is set to 4
    [Thr 1308] JControlRequestFunc: Thread 1308 started as listener thread for np messages.
    [Thr 1352] [Node: dispatcher] java home is set by profile parameter
         Java Home: C:\Programme\Java\j2sdk1.4.2_09
    [Thr 1352] Wed May 07 13:33:17 2008
    [Thr 1352] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID18439000]
    -> node name          : dispatcher
    -> node type          : dispatcher
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\Programme\Java\j2sdk1.4.2_09
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -verbose:gc  -verbose:gc -XX:NewSize=28m -XX:MaxNewSize=28m -XX:+DisableExplicitGC
    -> java vm version    : 1.4.2_09-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 170M
    -> init heap size     : 170M
    -> root path          : D:\usr\sap\J2E\JC01\j2ee\cluster\dispatcher
    -> class path         : .\bin\boot\boot.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\J2E\JC01\exe\jstartup.jar;D:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    [Thr 1352] [Node: server0] java home is set by profile parameter
         Java Home: C:\Programme\Java\j2sdk1.4.2_09
    [Thr 1352] Wed May 07 13:33:18 2008
    [Thr 1352] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID18439050]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\Programme\Java\j2sdk1.4.2_09
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -verbose:gc -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer -XX:NewSize=145m -XX:MaxNewSize=145m -XX:MaxPermSize=192m -XX:PermSize=192m -XX:+DisableExplicitGC -XX:+UseParNewGC -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc
    -> java vm version    : 1.4.2_09-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 874M
    -> init heap size     : 874M
    -> root path          : D:\usr\sap\J2E\JC01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\J2E\JC01\exe\jstartup.jar;D:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> parameters         :
    -> debuggable         : yes
    -> debug mode         : yes
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 1352] INFO: Invalid property value [Debbugable=yes]
    [Thr 1352] [Node: SDM] java home is set by profile parameter
         Java Home: C:\Programme\Java\j2sdk1.4.2_09
    [Thr 1352] Wed May 07 13:33:19 2008
    [Thr 1352] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [sdm]
    -> node name          : SDM
    -> node type          : sdm
    -> node execute       : yes
    -> java path          : C:\Programme\Java\j2sdk1.4.2_09
    -> java parameters    :
    -> java vm version    : 1.4.2_09-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 256M
    -> root path          : D:\usr\sap\J2E\JC01\SDM\program
    -> class path         : D:\usr\sap\J2E\JC01\SDM\program\bin\SDM.jar
    -> OS libs path       : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : SDMInternal
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\J2E\JC01\exe\jstartup.jar;D:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> shutdown class     : com.sap.sdm.jstartup.shutdown.InternalShutDown
    -> parameters         : server sdmhome=D:\usr\sap\J2E\JC01\SDM\program
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    [Thr 1352] JControlMSConnect: attached to message server (sope75/3900)
    JControlStartJLaunch: program = D:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = D:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    -> arg[02] = -DSAPINFO=J2E_01_dispatcher
    -> arg[03] = -nodeId=0
    -> arg[04] = -file=D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_2644
    -> arg[06] = -nodeName=ID18439000
    -> arg[07] = -jvmOutFile=D:\usr\sap\J2E\JC01\work\jvm_dispatcher.out
    -> arg[08] = -stdOutFile=D:\usr\sap\J2E\JC01\work\std_dispatcher.out
    -> arg[09] = -locOutFile=D:\usr\sap\J2E\JC01\work\dev_dispatcher
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    -> lib path = PATH=C:\Programme\Java\j2sdk1.4.2_09\jre\bin\server;C:\Programme\Java\j2sdk1.4.2_09\jre\bin;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;c:\orabase\1020\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;c:\prgramme\sharepoint portal server\bin;C:\Programme\Gemeinsame Dateien\Microsoft Shared\web server extensions\60\BIN;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;c:\Programme\Java\jdk1.5.0_13\bin;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\Programme\Java\j2sdk1.4.2_09\bin;D:\usr\sap\J2E\JC01\j2ee\os_libs;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;c:\orabase\1020\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;c:\prgramme\sharepoint portal server\bin;C:\Programme\Gemeinsame Dateien\Microsoft Shared\web server extensions\60\BIN;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;c:\Programme\Java\jdk1.5.0_13\bin;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3376] JControlMSMessageFunc: Thread 3376 started as listener thread for ms messages.
    [Thr 1352] JControlICheckProcessList: process dispatcher started (PID:724)
    JControlStartJLaunch: program = D:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = D:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    -> arg[02] = -DSAPINFO=J2E_01_server
    -> arg[03] = -nodeId=1
    -> arg[04] = -file=D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_2644
    -> arg[06] = -nodeName=ID18439050
    -> arg[07] = -jvmOutFile=D:\usr\sap\J2E\JC01\work\jvm_server0.out
    -> arg[08] = -stdOutFile=D:\usr\sap\J2E\JC01\work\std_server0.out
    -> arg[09] = -locOutFile=D:\usr\sap\J2E\JC01\work\dev_server0
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = -debugMode=yes
    -> arg[12] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    -> lib path = PATH=C:\Programme\Java\j2sdk1.4.2_09\jre\bin\server;C:\Programme\Java\j2sdk1.4.2_09\jre\bin;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;c:\orabase\1020\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;c:\prgramme\sharepoint portal server\bin;C:\Programme\Gemeinsame Dateien\Microsoft Shared\web server extensions\60\BIN;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;c:\Programme\Java\jdk1.5.0_13\bin;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\Programme\Java\j2sdk1.4.2_09\bin;D:\usr\sap\J2E\JC01\j2ee\os_libs;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;c:\orabase\1020\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;c:\prgramme\sharepoint portal server\bin;C:\Programme\Gemeinsame Dateien\Microsoft Shared\web server extensions\60\BIN;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;c:\Programme\Java\jdk1.5.0_13\bin;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 1352] JControlICheckProcessList: process server0 started (PID:2276)
    JControlStartJLaunch: program = D:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = D:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    -> arg[02] = -DSAPINFO=J2E_01_sdm
    -> arg[03] = -nodeId=2
    -> arg[04] = -file=D:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_2644
    -> arg[06] = -nodeName=sdm
    -> arg[07] = -jvmOutFile=D:\usr\sap\J2E\JC01\work\jvm_sdm.out
    -> arg[08] = -stdOutFile=D:\usr\sap\J2E\JC01\work\std_sdm.out
    -> arg[09] = -locOutFile=D:\usr\sap\J2E\JC01\work\dev_sdm
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_sope75
    -> lib path = PATH=C:\Programme\Java\j2sdk1.4.2_09\jre\bin\server;C:\Programme\Java\j2sdk1.4.2_09\jre\bin;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;c:\orabase\1020\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;c:\prgramme\sharepoint portal server\bin;C:\Programme\Gemeinsame Dateien\Microsoft Shared\web server extensions\60\BIN;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;c:\Programme\Java\jdk1.5.0_13\bin;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\Programme\Java\j2sdk1.4.2_09\bin;D:\usr\sap\J2E\JC01\j2ee\os_libs;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;c:\orabase\1020\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32\WBEM;c:\prgramme\sharepoint portal server\bin;C:\Programme\Gemeinsame Dateien\Microsoft Shared\web server extensions\60\BIN;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;c:\Programme\Java\jdk1.5.0_13\bin;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 1352] JControlICheckProcessList: process SDM started (PID:3312)
    [Thr 1352] JControlMSSendLogon: delete SDM logon information (rc=0)
    [Thr 3376] Wed May 07 13:33:47 2008
    [Thr 3376] JControlIEnableProcesses: disable processes of type (Exclude:0) [SDM Server]
    [Thr 3376] JControlIDisableProcess: disable process SDM
    [Thr 3376] JControlIProcessSoftKill: soft kill of process SDM (pid:3312)
    [Thr 1352] Wed May 07 13:33:52 2008
    [Thr 1352] JControlICheckProcessList: process SDM (pid:3312) died (STOPPING)
    [Thr 1352] JControlIResetProcess: reset process SDM
    [Thr 1352] Wed May 07 14:20:27 2008
    [Thr 1352] JControlICheckProcessList: process dispatcher (pid:724) died (RUN-FLAG)
    [Thr 1352] JControlIResetProcess: reset process dispatcher
    *[Thr 1352] JControlICheckProcessList: license check failed*
    *[Thr 1352] JControlMainLoop: license check failed -> shutdown the instance*
    [Thr 1352] JControlProcessMessage: received <shutdown without restart> command
    [Thr 1352] JControlIStopInstance: shutting down (command: 0)
    [Thr 1352] JControlIProcessSoftKill: soft kill of process server0 (pid:2276)
    [Thr 1352] Wed May 07 14:22:33 2008
    [Thr 1352] *** ERROR => Can't terminate process (pid = 2276,handle = 00000678,err = 5) [jstartnt.c   690]
    [Thr 1352] *** ERROR => Critical error, can't terminate process server0 (pid:2276) (rc=-2) [jcntrxxi.c   407]
    [Thr 1352] JControlICheckProcessList: process server0 (pid:2276) died (STOPPING)
    [Thr 1352] JControlIResetProcess: reset process server0
    [Thr 1352] JControlCloseProgram: started (exitcode = 0)
    [Thr 3376] JControlMSMessageFunc: shutdown -> terminate message listener
    [Thr 3376] JControlMSMessageFunc: leave listener thread
    [Thr 1352] Wed May 07 14:22:34 2008
    [Thr 1352] JControlCloseProgram: good bye... (exitcode = -11111)
    Regards
    RandomStudent
    Edited by: RandomStudent on May 7, 2008 4:45 PM
    Edited by: RandomStudent on May 7, 2008 4:47 PM

    Hello Vijith, thanks for your answer.
    Installed a Sneak Preview of SAP NetWeaver 7.1 CE on Monday(5th May), but it failed.
    Deinstalled the 7.1 CE Software on Tuesday (6th May).
    Installed Sneak Preview of SAP Netweaver (2004s) 7.0 SP9 on Wednesday (7th May) and it was installed correctly, but i got the problem with the license check.
    So the Options are:
    Change the date on OS before starting the Software
    or
    Deinstalling the Software and installing SAP Netweaver (2004s) 7.0 SP9 SR 3 (which i downloaded this night). But i think i have to get the registry clean then. Are there Tools to clean the registry from all SAP entries?

  • Port error while deploying a dictonary project to j2ee server

    Hello,
    I created a dictonary project in sap netweaver developer studio 7.1.The j2ee server and the database (both on a remote server) are running and configured.
    When i try to deploy it i get the following errors
    [#3]: DC API is trying to connect to '<server name>:50004' [INFO: Jan 31, 2008 9:28:26 PM /userOut/daView_category (eclipse.UserOutLocation) [Thread[main,6,main]] ]
    om.sap.ide.eclipse.deployer.api.APIException: ConnectionException,cause=[ERROR CODE DPL.DCAPI.1144] NamingException.Cannot get initial context.
    Reason: Exception during getInitialContext operation. Cannot establish connection to the remote server.
    The error is guess is the port number.My server is configured on port 50000 and here it is showing 50004.If i am correct then how do i configure my applications port number?
    I searched  and saw some messages like open \usr\SAP\<SID>\SYS\profile ,edit the port and similar solutions.Where is this "\usr\SAP\<SID>\SYS\profile " location?My server is on a remote machine.How do i configure my client to pick up the correct port ?
    Thank you in advance.
    Thanks and Regards
    Siri

    the issue got solved..the error was not about the port..on restarting the server i was able to deploy my project..

  • Error when starting J2EE server

    I can't start my J2EE server, when I type "j2ee verbose" on windows console, it showed an error like this :
    J2EE server listen port: 1050
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/corba/se/internal/util/IdentityHashtable
         at com.sun.corba.ee.internal.javax.rmi.CORBA.Util.<clinit>(Util.java:87)
         at com.sun.corba.ee.internal.POA.POAImpl.activate(POAImpl.java:935)
         at com.sun.corba.ee.internal.POA.POAImpl.activate_object(POAImpl.java:895)
         at com.sun.corba.ee.internal.CosNaming.TransientNameService.initialize(TransientNameService.java:117)
         at com.sun.corba.ee.internal.CosNaming.TransientNameService.<init>(TransientNameService.java:70)
         at com.sun.enterprise.iiop.POAProtocolMgr.initializeNaming(POAProtocolMgr.java:103)
         at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:226)
         at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    I used J2EE 1.3.1 and JDK 1.5.0. I also have set an environment variable like shown below :
    JAVA_HOME=C:\jdk1.5.0
    J2EE_HOME=C:\j2sdkee1.3.1
    PATH=%JAVA_HOME%\bin;%J2EE_HOME%\bin
    CLASSPATH=%J2EE_HOME%\lib\j2ee.jar;%J2EE_HOME%\lib\locale
    all that env. variable have been set in System Properties through control panel in my windows. Plz help me if there anything wrong with my setting or there are another problems that I didn't noticed before. Thank you.
    Irfan R.

    Modify your JAVA_HOME to C:\Program%20%Files\j2sdk1.4.2_08
    as spaces are not allowed. Most probably it will work.
    I have installed J2EE SDK 1.3 on my machine. I have
    set
    J2EE_HOME=C:\j2sdkee1.3.1
    JAVA_HOME=C:\Program Files\j2sdk1.4.2_08
    and
    PATH=C:\j2sdkee1.3.1\bin
    CLASSPATH
    =%J2EE_HOME%\lib\j2ee.jar;%J2EE_HOME%\lib\locale
    environmental variables. All the four path seem to
    OK. But when I'm trying to start application server
    using j2ee -verbose command on my dos prompt I'm
    getting following error
    'C:\Program' is not recognized as an internal or
    external command, operable program or batch file.
    I tried j2ee -verbose command from C: prompt as well
    as from C:\j2sdkee1.3.1\bin prompt in which j2ee
    batch file is present.
    Please help/guide on above issue

  • Pros and cons of installing a local J2EE server

    Hi,
    We are about to start developing portal applications with Web Dynpro and will use NWDI (DTR/CBS/CMS). I would like to know what SAP recommends for team development, each developer installs a local J2EE server or they all deploy and test on a central server?
    From my past experiences, using only one central server can cause problems with debugging, deployment and collisions of a DC tested simultanously by two developers. Running a local server can solve these problems but this could be costly; first because PCs often don't have enough CPU/RAM to run it, and second to support all these complex installations.
    I have read Benny's two blogs and some SAP documentation but it is still not clear to me which option is best. If you have lived good or bad experiences with one or the other please let me know!
    Thanks,
    Martin

    I would strongly suggest you avoid having a single runtime environment for multiple developers.  The nature of Java development makes working in a runtime environment such as this very difficult.  It's far too easy to have multiple developers working on the same component making changes that result in different versions of the same component getting deployed to the same runtime environment.  Unless communication is very good, you're developers will end up clobbering each others changes.  Obviously not good, since the developers will spend time trying to debug problems which really don't exist!
    At the other end of the spectrum, each developer can have their own Java stack running locally on their desktop PC.  This was the solution that we first tested out, but due to the amount of virus scanning and the overall 'weight' of the other software tools on our desktop PC's, this didn't work too well - performance wasn't all that good.  It was also too easy for the developer to clobber their own environment by accidentally removing files, or by making changes to the configuration that would render their engine unusable.
    What we opted for was something in the middle: a dedicated multi-cpu system with lots of RAM that runs multiple J2EE instances, each of which is assigned to a single developer.  What you get from this sort of configuration is this: only a single operating system to patch when you are required to do upgrades; a controlled environment where the developer doesn't have file system access to the system (which they don't need anyways); if you're lucky, basis support to perform installation and patching duties.
    We've been using this environment for about a year now, and it works well.  I have full access to the J2EE container via the Visual Admin, and since the dev instances are configured as single server debuggable instances, I can restart the server via the Dev Studio with just two clicks.
    Hope that gives you an idea of another possible config.

  • NW2004sSP7_Preview J2EE Server error

    Hi,
    I am not able to start the J2ee server after install.
    Here is the trace file from the server.
    trc file: "C:\usr\sap\J2E\JC01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID14203250
    pid         : 5668
    system name : J2E
    system nr.  : 01
    started at  : Sun May 14 14:24:29 2006
    arguments       :
           arg[00] : C:\usr\sap\J2E\JC01\exe\jlaunch.exe
           arg[01] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_TWCALA203437
           arg[02] : -DSAPINFO=J2E_01_server
           arg[03] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_TWCALA203437
    [Thr 5004] Sun May 14 14:24:29 2006
    [Thr 5004] *** WARNING => INFO: Unknown property [instance.box.number=J2EJC01twcala203437] [jstartxx.c   841]
    [Thr 5004] *** WARNING => INFO: Unknown property [instance.en.host=TWCALA203437] [jstartxx.c   841]
    [Thr 5004] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 5004] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties]
    -> ms host    : TWCALA203437
    -> ms port    : 3900
    -> OS libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : TWCALA203437
    -> ms port    : 3900
    -> os libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID14203200 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID14203250 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID14203200           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] ID14203250           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    [Thr 5004] Sun May 14 14:24:30 2006
    [Thr 5004] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 5004] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 4616] JLaunchRequestFunc: Thread 4616 started as listener thread for np messages.
    [Thr 5672] WaitSyncSemThread: Thread 5672 started as semaphore monitor thread.
    [Thr 5004] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 5004] CPIC (version=700.2005.12.02)
    [Thr 5004] JStartupIReadSection: debug mode is specified by program arguments
    [Thr 5004] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_09
    [Thr 5004] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID14203250]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_09
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -verbose:gc -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer -XX:NewSize=170m -XX:MaxNewSize=170m -XX:MaxPermSize=192m -XX:PermSize=192m -XX:DisableExplicitGC -XX:UseParNewGC -XX:PrintGCDetails -XX:PrintGCTimeStamps -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc
    -> java vm version    : 1.4.2_09-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 1023M
    -> init heap size     : 1023M
    -> root path          : C:\usr\sap\J2E\JC01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : yes
    -> debug mode         : yes
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 5004] JLaunchISetDebugMode: set debug mode [yes]
    [Thr 5696] JLaunchIStartFunc: Thread 5696 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Denv.class.path=.;C:\Program Files\QuickTime\QTSystem\QTJava.zip;C:\j2sdk1.4.2_09\jre\lib;C:\Program Files\SAP\JDT\eclipse\plugins\org.apache.ant_1.5.3
    -> arg[  4]: -Djava.security.policy=./java.policy
    -> arg[  5]: -Djava.security.egd=file:/dev/urandom
    -> arg[  6]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  7]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  8]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  9]: -Djco.jarm=1
    -> arg[ 10]: -verbose:gc
    -> arg[ 11]: -Djava.awt.headless=true
    -> arg[ 12]: -Dsun.io.useCanonCaches=false
    -> arg[ 13]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 14]: -XX:NewSize=170m
    -> arg[ 15]: -XX:MaxNewSize=170m
    -> arg[ 16]: -XX:MaxPermSize=192m
    -> arg[ 17]: -XX:PermSize=192m
    -> arg[ 18]: -XX:+DisableExplicitGC
    -> arg[ 19]: -XX:+UseParNewGC
    -> arg[ 20]: -XX:+PrintGCDetails
    -> arg[ 21]: -XX:+PrintGCTimeStamps
    -> arg[ 22]: -XX:SurvivorRatio=2
    -> arg[ 23]: -XX:TargetSurvivorRatio=90
    -> arg[ 24]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 25]: -verbose:gc
    -> arg[ 26]: -Dsys.global.dir=C:\usr\sap\J2E\SYS\global
    -> arg[ 27]: -Dapplication.home=C:\usr\sap\J2E\JC01\exe
    -> arg[ 28]: -Djava.class.path=C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 29]: -Djava.library.path=C:\j2sdk1.4.2_09\jre\bin\server;C:\j2sdk1.4.2_09\jre\bin;C:\j2sdk1.4.2_09\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\Program Files\ThinkPad\Utilities;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\QuickTime\QTSystem\;C:\j2sdk1.4.2_09\bin;C:\Program Files\Intel\Wireless\Bin\;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> arg[ 30]: -Xdebug
    -> arg[ 31]: -Xnoagent
    -> arg[ 32]: -Djava.compiler=NONE
    -> arg[ 33]: -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=50121
    -> arg[ 34]: -Dmemory.manager=1023M
    -> arg[ 35]: -Xmx1023M
    -> arg[ 36]: -Xms1023M
    -> arg[ 37]: -DLoadBalanceRestricted=no
    -> arg[ 38]: -Djstartup.mode=JCONTROL
    -> arg[ 39]: -Djstartup.ownProcessId=5668
    -> arg[ 40]: -Djstartup.ownHardwareId=K0385668384
    -> arg[ 41]: -Djstartup.whoami=server
    -> arg[ 42]: -Djstartup.debuggable=yes
    -> arg[ 43]: -DSAPINFO=J2E_01_server
    -> arg[ 44]: -DSAPSTARTUP=1
    -> arg[ 45]: -DSAPSYSTEM=01
    -> arg[ 46]: -DSAPSYSTEMNAME=J2E
    -> arg[ 47]: -DSAPMYNAME=TWCALA203437_J2E_01
    -> arg[ 48]: -DSAPDBHOST=TWCALA203437
    -> arg[ 49]: -Dj2ee.dbhost=TWCALA203437
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    [Thr 5696] JLaunchIAbortJava: abort hook is called
    [Thr 5696] JLaunchCloseProgram: good bye (exitcode = -2)

    Hi,
    I have the same problem: the J2EE services do not start after installation,
    and reducing the heap size did not help!
    I have 3GB of RAM.
    This is my trace (please note the error code "exitcode = -11113"
    - what does it mean?):
    node name   : ID19941450
    pid         : 4944
    system name : X11
    system nr.  : 01
    started at  : Fri Jun 30 11:12:14 2006
    arguments       :
           arg[00] : C:\usr\sap\X11\DVEBMGS01\exe\jlaunch.exe
           arg[01] : pf=C:\usr\sap\X11\SYS\profile\X11_DVEBMGS01_testxi
           arg[02] : -DSAPINFO=X11_01_server
           arg[03] : pf=C:\usr\sap\X11\SYS\profile\X11_DVEBMGS01_testxi
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=1058
           arg[06] : -DSAPSYSTEM=01
           arg[07] : -DSAPSYSTEMNAME=X11
           arg[08] : -DSAPMYNAME=testxi_X11_01
           arg[09] : -DSAPPROFILE=C:\usr\sap\X11\SYS\profile\X11_DVEBMGS01_testxi
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 4948] Fri Jun 30 11:12:14 2006
    [Thr 4948] *** WARNING => INFO: Unknown property [instance.box.number=X11DVEBMGS01testxi] [jstartxx.c   841]
    [Thr 4948] *** WARNING => INFO: Unknown property [instance.en.host=testxi] [jstartxx.c   841]
    [Thr 4948] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 4948] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\X11\DVEBMGS01\j2ee\cluster\instance.properties]
    -> ms host    : testxi
    -> ms port    : 3900
    -> OS libs    : C:\usr\sap\X11\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : C:\usr\sap\X11\DVEBMGS01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : testxi
    -> ms port    : 3900
    -> os libs    : C:\usr\sap\X11\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : C:\usr\sap\X11\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID19941400 : C:\usr\sap\X11\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID19941450 : C:\usr\sap\X11\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID19941400           : C:\usr\sap\X11\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID19941450           : C:\usr\sap\X11\DVEBMGS01\j2ee\cluster\instance.properties
    [Thr 4948] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 4948] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 4952] JLaunchRequestFunc: Thread 4952 started as listener thread for np messages.
    [Thr 4960] WaitSyncSemThread: Thread 4960 started as semaphore monitor thread.
    [Thr 4948] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 4948] CPIC (version=700.2005.12.02)
    [Thr 4948] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_12
    [Thr 4948] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\X11\DVEBMGS01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID19941450]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_12
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Dorg.xml.sax.driver=com.sap.engine.lib.xml.parser.SAXParser -Djco.jarm=1 -Dsun.io.useCanonCaches=false -XX:NewSize=170m -XX:MaxNewSize=170m -XX:MaxPermSize=256m -Djava.awt.headless=true -XX:PermSize=256m -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc -XX:DisableExplicitGC -XX:PrintGCDetails -XX:PrintGCTimeStamps -XX:UseParNewGC -Drdbms.driverLocation=C:/sapdb/programs/runtime/jar/sapdbc.jar
    -> java vm version    : 1.4.2_12-b03
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 512M
    -> init heap size     : 512M
    -> root path          : C:\usr\sap\X11\DVEBMGS01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : C:\usr\sap\X11\DVEBMGS01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\X11\DVEBMGS01\exe\jstartup.jar;C:\usr\sap\X11\DVEBMGS01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 4948] JLaunchISetDebugMode: set debug mode [no]
    [Thr 4492] JLaunchIStartFunc: Thread 4492 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Dorg.xml.sax.driver=com.sap.engine.lib.xml.parser.SAXParser
    -> arg[  9]: -Djco.jarm=1
    -> arg[ 10]: -Dsun.io.useCanonCaches=false
    -> arg[ 11]: -XX:NewSize=170m
    -> arg[ 12]: -XX:MaxNewSize=170m
    -> arg[ 13]: -XX:MaxPermSize=256m
    -> arg[ 14]: -Djava.awt.headless=true
    -> arg[ 15]: -XX:PermSize=256m
    -> arg[ 16]: -XX:SurvivorRatio=2
    -> arg[ 17]: -XX:TargetSurvivorRatio=90
    -> arg[ 18]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 19]: -verbose:gc
    -> arg[ 20]: -XX:+DisableExplicitGC
    -> arg[ 21]: -XX:+PrintGCDetails
    -> arg[ 22]: -XX:+PrintGCTimeStamps
    -> arg[ 23]: -XX:+UseParNewGC
    -> arg[ 24]: -Drdbms.driverLocation=C:/sapdb/programs/runtime/jar/sapdbc.jar
    -> arg[ 25]: -Dsys.global.dir=C:\usr\sap\X11\SYS\global
    -> arg[ 26]: -Dapplication.home=C:\usr\sap\X11\DVEBMGS01\exe
    -> arg[ 27]: -Djava.class.path=C:\usr\sap\X11\DVEBMGS01\exe\jstartup.jar;C:\usr\sap\X11\DVEBMGS01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 28]: -Djava.library.path=C:\j2sdk1.4.2_12\jre\bin\server;C:\j2sdk1.4.2_12\jre\bin;C:\j2sdk1.4.2_12\bin;C:\usr\sap\X11\DVEBMGS01\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\usr\sap\X11\SYS\exe\uc\NTI386
    -> arg[ 29]: -Dmemory.manager=512M
    -> arg[ 30]: -Xmx512M
    -> arg[ 31]: -Xms512M
    -> arg[ 32]: -DLoadBalanceRestricted=no
    -> arg[ 33]: -Djstartup.mode=JCONTROL
    -> arg[ 34]: -Djstartup.ownProcessId=4944
    -> arg[ 35]: -Djstartup.ownHardwareId=B0489370142
    -> arg[ 36]: -Djstartup.whoami=server
    -> arg[ 37]: -Djstartup.debuggable=no
    -> arg[ 38]: -DSAPINFO=X11_01_server
    -> arg[ 39]: -DSAPSTART=1
    -> arg[ 40]: -DCONNECT_PORT=1058
    -> arg[ 41]: -DSAPSYSTEM=01
    -> arg[ 42]: -DSAPSYSTEMNAME=X11
    -> arg[ 43]: -DSAPMYNAME=testxi_X11_01
    -> arg[ 44]: -DSAPPROFILE=C:\usr\sap\X11\SYS\profile\X11_DVEBMGS01_testxi
    -> arg[ 45]: -DFRFC_FALLBACK=ON
    -> arg[ 46]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 47]: -DSAPSTARTUP=1
    -> arg[ 48]: -DSAPSYSTEM=01
    -> arg[ 49]: -DSAPSYSTEMNAME=X11
    -> arg[ 50]: -DSAPMYNAME=testxi_X11_01
    -> arg[ 51]: -DSAPDBHOST=testxi
    -> arg[ 52]: -Dj2ee.dbhost=testxi
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    [Thr 4492] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 5028] Fri Jun 30 11:12:16 2006
    [Thr 5028] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 5028] Fri Jun 30 11:12:17 2006
    [Thr 5028] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 5028] JLaunchISetClusterId: set cluster id 19941450
    [Thr 5028] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 5028] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Fri Jun 30 11:12:20 2006
    0.000: [GC 0.000: [ParNew: 87039K->2301K(130560K), 0.0361967 secs] 87039K->2301K(480768K), 0.0365311 secs]
    Fri Jun 30 11:12:30 2006
    10.462: [GC 10.462: [ParNew: 89341K->6046K(130560K), 0.0395094 secs] 89341K->6046K(480768K), 0.0396748 secs]
    Fri Jun 30 11:12:37 2006
    17.296: [GC 17.296: [ParNew: 93086K->12485K(130560K), 0.0808105 secs] 93086K->12485K(480768K), 0.0809729 secs]
    Fri Jun 30 11:12:46 2006
    26.032: [GC 26.032: [ParNew: 99524K->15336K(130560K), 0.0757925 secs] 99524K->15336K(480768K), 0.0759567 secs]
    [Thr 5372] Fri Jun 30 11:12:51 2006
    [Thr 5372] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 5372] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 5000] Fri Jun 30 11:12:52 2006
    [Thr 5000] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 5000] JLaunchCloseProgram: good bye (exitcode = -11113)

  • J2EE server not running. 503 service unavailable

    Hi ,
    J2EE Server is not starting. Rest all are running in mmc console.The contents of the file std_server0.out is as below.
    stdout/stderr redirect
    node name : server0
    pid : 584
    system name : J2E
    system nr. : 00
    started at : Tue Feb 15 10:12:46 2005
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude iaik/security/md/SHA a
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    SAP J2EE Engine Version 6.40 PatchLevel 87289.311 is starting...
    Loading: LogManager ... 1656 ms.
    Loading: PoolManager ... 0 ms.
    Loading: ApplicationThreadManager ... 282 ms.
    Loading: ThreadManager ... 1360 ms.
    Loading: IpVerificationManager ... 47 ms.
    Loading: ClassLoaderManager ... 31 ms.
    Loading: ClusterManager ... 1047 ms.
    Loading: LockingManager ... 719 ms.
    Loading: ConfigurationManager ... 2093 ms.
    Loading: LicensingManager ... 125 ms.
    Loading: ServiceManager ...
    0.000: [GC 0.000: [ParNew: 43517K->2681K(65280K), 0.1899077 secs] 43517K->2681K(502528K), 0.1900163 secs]
    Loading services.:
    Service memory started. (125 ms).
    Service cross started. (125 ms).
    Service jmx_notification started. (110 ms).
    Service trex.service started. (140 ms).
    Service file started. (47 ms).
    Service runtimeinfo started. (0 ms).
    Service timeout started. (188 ms).
    Service userstore started. (16 ms).
    7.557: [GC 7.557: [ParNew: 46201K->4641K(65280K), 0.0511883 secs] 46201K->4641K(502528K), 0.0513121 secs]
    Service tcsecvsi~service started. (953 ms).
    Service tcsecwssec~service started. (1016 ms).
    Service p4 started. (578 ms).
    Service classpath_resolver started. (32 ms).
    Service deploy started. (5922 ms).
    14.157: [GC 14.157: [ParNew: 48161K->7636K(65280K), 0.0653829 secs] 48161K->7636K(502528K), 0.0655197 secs]
    Service apptracing started. (390 ms).
    Service log_configurator started. (11172 ms).
    Service locking started. (0 ms).
    Service http started. (563 ms).
    Service naming started. (765 ms).
    Service failover started. (94 ms).
    Service appclient started. (250 ms).
    Service ts started. (234 ms).
    Service javamail started. (282 ms).
    Service jmsconnector started. (282 ms).
    Service licensing started. (47 ms).
    Service connector started. (547 ms).
    Service configuration started. (250 ms).
    Service webservices started. (1234 ms).
    19.873: [GC 19.873: [ParNew: 51143K->8276K(65280K), 0.0746933 secs] 51143K->8276K(502528K), 0.0748063 secs]
    25.284: [GC 25.284: [ParNew: 51796K->8763K(65280K), 0.0613457 secs] 51796K->8763K(502528K), 0.0614361 secs]
    Service dbpool started. (6796 ms).
    Timed out services:
    Service ssl.
    Service tc.monitoring.logviewer.
    Service keystore.
    Service shell.
    Service prtbridge.
    Service webdynpro.
    Service com.sap.security.core.ume.service.
    Service pmi.
    Service tcsecsaml~service.
    Service sld.
    Service com.sap.portal.prt.sapj2ee.
    Service jms_provider.
    Service basicadmin.
    Service classload.
    Service adminadapter.
    Service telnet.
    Service servlet_jsp.
    Service ejb.
    Service dsr.
    Service monitor.
    Service tcsecdestinations~service.
    Service tcsecsecurestorage~service.
    Service security.
    Service applocking.
    Service jmx.
    Service DQE.
    Service tceCATTPingservice.
    Service rfcengine.
    ServiceManager started for 315217 ms.
    Framework started for 323623 ms.
    SAP J2EE Engine Version 6.40 PatchLevel 87289.311 is running!
    PatchLevel 87289.311 November 18, 2004 20:31 GMT
    608.267: [GC 608.268: [ParNew: 52274K->10357K(65280K), 0.1024975 secs] 52274K->10357K(502528K), 0.1026132 secs]
    Excluding compile: iaik.security.md.SHA::a
    The Developer Trace of J2EE Server is as below.
    trc file: "D:\usr\sap\J2E\JC00\work\dev_server0", trc level: 1, release: "640"
    node name : ID3718450
    pid : 3964
    system name : J2E
    system nr. : 00
    started at : Tue Feb 15 10:12:46 2005
    arguments :
    arg[00] : D:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    arg[01] : pf=D:\usr\sap\J2E\SYS\profile\J2E_JC00_igtehydsapweb
    arg[02] : -DSAPINFO=J2E_00_server
    arg[03] : pf=D:\usr\sap\J2E\SYS\profile\J2E_JC00_igtehydsapweb
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties]
    -> ms host : igtehydsapweb
    -> ms port : 3601
    -> OS libs : D:\usr\sap\J2E\JC00\j2ee\os_libs
    -> Admin URL :
    -> run mode : NORMAL
    -> run action : NONE
    -> enabled : yes
    Used property files
    -> files [00] : D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    Instance properties
    -> ms host : igtehydsapweb
    -> ms port : 3601
    -> os libs : D:\usr\sap\J2E\JC00\j2ee\os_libs
    -> admin URL :
    -> run mode : NORMAL
    -> run action : NONE
    -> enabled : yes
    Bootstrap nodes
    -> [00] bootstrap : D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID3718400 : D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID3718450 : D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID3718400 : D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] ID3718450 : D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    [Thr 4256] Tue Feb 15 10:12:46 2005
    [Thr 4256] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 4256] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 3328] JLaunchRequestFunc: Thread 3328 started as listener thread for np messages.
    [Thr 1800] WaitSyncSemThread: Thread 1800 started as semaphore monitor thread.
    [Thr 4256] Tue Feb 15 10:12:47 2005
    [Thr 4256] INFO: Invalid property value [JLaunchParameters/]
    [Thr 4256] *** WARNING => Maximum Java heap size specified twice (through maxHeapSize and in javaParameters) - using -Xmx512M [jstartxx.c 2282]
    [Thr 4256] [Node: server0] java home is set by profile parameter
    Java Home: D:\j2sdk1.4.2_07
    JStartupIReadSection: read node properties [ID3718450]
    -> node name : server0
    -> node type : server
    -> java path : D:\j2sdk1.4.2_07
    -> java parameters : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -Dsun.io.useCanonCaches=false -Djava.awt.headless=true -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc -XX:PrintGCDetails -XX:PrintGCTimeStamps -XX:UseParNewGC -XX:MaxNewSize=85M -XX:NewSize=85M -XX:DisableExplicitGC -XX:MaxPermSize=192M -XX:PermSize=192M -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Drdbms.driverLocation=D:/sapdb/programs/runtime/jar/sapdbc.jar -Dsys.global.dir=D:/usr/sap/J2E/SYS/global/
    -> java vm version : 1.4.2_07-b05
    -> java vm vendor : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type : server
    -> java vm cpu : x86
    -> heap size : 512M
    -> init heap size : 512M
    -> root path : D:\usr\sap\J2E\JC00\j2ee\cluster\server0
    -> class path : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path : D:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class : com.sap.engine.boot.Start
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path : D:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> shutdown class : com.sap.engine.boot.Start
    -> parameters :
    -> debuggable : no
    -> debug mode : no
    -> debug port : 50021
    -> shutdown timeout: 120000
    [Thr 4256] JLaunchISetDebugMode: set debug mode [no]
    [Thr 1784] JLaunchIStartFunc: Thread 1784 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack : 262144 Bytes
    -> arg[ 0]: exit
    -> arg[ 1]: abort
    -> arg[ 2]: -Denv.class.path=D:\j2sdk1.4.2_07\%JAVA_HOME%\lib;
    -> arg[ 3]: -Djava.security.policy=./java.policy
    -> arg[ 4]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 8]: -Djco.jarm=1
    -> arg[ 9]: -Dsun.io.useCanonCaches=false
    -> arg[ 10]: -Djava.awt.headless=true
    -> arg[ 11]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 12]: -verbose:gc
    -> arg[ 13]: -XX:+PrintGCDetails
    -> arg[ 14]: -XX:+PrintGCTimeStamps
    -> arg[ 15]: -XX:+UseParNewGC
    -> arg[ 16]: -XX:MaxNewSize=85M
    -> arg[ 17]: -XX:NewSize=85M
    -> arg[ 18]: -XX:+DisableExplicitGC
    -> arg[ 19]: -XX:MaxPermSize=192M
    -> arg[ 20]: -XX:PermSize=192M
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Drdbms.driverLocation=D:/sapdb/programs/runtime/jar/sapdbc.jar
    -> arg[ 24]: -Dsys.global.dir=D:/usr/sap/J2E/SYS/global/
    -> arg[ 25]: -Dsys.global.dir=D:\usr\sap\J2E\SYS\global
    -> arg[ 26]: -Dapplication.home=D:\usr\sap\J2E\JC00\j2ee\os_libs
    -> arg[ 27]: -Djava.class.path=D:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 28]: -Djava.library.path=D:\j2sdk1.4.2_07\jre\bin\server;D:\j2sdk1.4.2_07\jre\bin;D:\j2sdk1.4.2_07\bin;D:\usr\sap\J2E\JC00\j2ee\os_libs;D:\usr\sap\Python\.;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;D:\j2sdk1.4.2_07\bin;;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC00\exe;D:\usr\sap\J2E\SYS\exe\run
    -> arg[ 29]: -Dmemory.manager=512M
    -> arg[ 30]: -Xmx512M
    -> arg[ 31]: -Xms512M
    -> arg[ 32]: -DLoadBalanceRestricted=no
    -> arg[ 33]: -Djstartup.mode=JCONTROL
    -> arg[ 34]: -Djstartup.ownProcessId=3964
    -> arg[ 35]: -Djstartup.ownHardwareId=W0450436801
    -> arg[ 36]: -Djstartup.whoami=server
    -> arg[ 37]: -Djstartup.debuggable=no
    -> arg[ 38]: -DSAPINFO=J2E_00_server
    -> arg[ 39]: -DSAPSTARTUP=1
    -> arg[ 40]: -DSAPSYSTEM=00
    -> arg[ 41]: -DSAPSYSTEMNAME=J2E
    -> arg[ 42]: -DSAPMYNAME=igtehydsapweb_J2E_00
    -> arg[ 43]: -DSAPDBHOST=
    -> arg[ 44]: -Dj2ee.dbhost=igtehydsapweb
    [Thr 1784] Tue Feb 15 10:12:48 2005
    [Thr 1784] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 3104] Tue Feb 15 10:12:56 2005
    [Thr 3104] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 3104] JLaunchISetClusterId: set cluster id 3718450
    [Thr 3104] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 3104] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 3104] Tue Feb 15 10:18:15 2005
    [Thr 3104] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]
    please do the needful.
    regards,
    sreeram

    Hi Sreeram,
    The reasons for this issue can be numerous and most of them will be present in the default trace in
    /usr/sap/<SID>/JC<instance-nr>/j2ee/cluster/server<0..N>/log
    It would be best to report an OSS message and let the support find the problem for you.
    Best Regards: Iavor

  • J2EE server doesn't start; jcontrol not starting

    Hello guys,
    My installation: NW4 SR1 / Windows 2000 Advanced Server and EP 6.0 SR1, 2GB RAM.
    My SAP J2EE Engine - Config Tool(cluster-data/Instance_ID258376/dispatcher_ID25837600)
    Max heap size 80
    Java Parameters
    -Djava.security.policy=.\java.policy
    -Djava.security.egd=file:/dev/urandom
    -Djco.jarm=1
    -XX:NewSize=28m
    -XX:MaxNewSize=28m
    -XX:+DisableExplicitGC
    -Xms170m
    My SAP J2EE Engine - Config Tool(cluster-data/Instance_ID258376/server_ID25837650)
    Max heap size 1000
    Java Parameters
    -Djava.security.policy=./java.policy
    -Djava.security.egd=file:/dev/urandom
    -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -Djco.jarm=1
    -Dsun.io.useCanonCaches=false
    -Djava.awt.headless=true
    -XX:SoftRefLRUPolicyMSPerMB=1
    -verbose:gc
    -XX:+PrintGCDetails
    -XX:+PrintGCTimeStamps
    -XX:+UseParNewGC
    -Xms512M
    -Xms256M
    -Xmx256M
    -XX:MaxNewSize=128M
    -XX:NewSize=128M
    -XX:+DisableExplicitGC
    -XX:MaxPermSize=192M
    -XX:PermSize=192M
    -XX:SurvivorRatio=2
    -XX:TargetSurvivorRatio=90
    When I try to start J2EE server instance on SAP Management Console i get the following trace response:
    trc file: "D:\usr\sap\J2E\JC02\work\dev_jcontrol", trc level: 1, release: "640"
    node name   : jcontrol
    pid         : 4892
    system name : J2E
    system nr.  : 02
    started at  : Thu Sep 01 19:01:19 2005
    arguments   :
        arg[00] : D:\usr\sap\J2E\JC02\j2ee\os_libs\jcontrol.exe
        arg[01] : pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    [Thr 5176] Thu Sep 01 19:01:19 2005
    [Thr 5176] *** ERROR => Invalid property value [box.number/J2EJC02IUSMXREVAPO01] [jstartxx.c   789]
    [Thr 5176] *** ERROR => Invalid property value [system.id/2] [jstartxx.c   789]
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties;D:\usr\sap\J2E\JC02\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : IUSMXREVAPO01
    -> ms port    : 3601
    -> OS libs    : D:\usr\sap\J2E\JC02\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> files [01] : D:\usr\sap\J2E\JC02\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : IUSMXREVAPO01
    -> ms port    : 3601
    -> os libs    : D:\usr\sap\J2E\JC02\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID25837600 : D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID25837650 : D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID25837600           : D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> [01] ID25837650           : D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> [02] sdm                  : D:\usr\sap\J2E\JC02\SDM\program\config\sdm_jstartup.properties
    [Thr 5176] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 5176] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [bootstrap]
    -> node name       : bootstrap
    -> node type       : bootstrap
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 512M
    -> root path       : D:\usr\sap\J2E\JC02\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : D:\usr\sap\J2E\JC02\j2ee\os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : D:\usr\sap\J2E\JC02\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0258376
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = D:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[00] = D:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    -> arg[02] = -DSAPINFO=J2E_02_bootstrap
    -> arg[03] = -file=D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_4892
    -> arg[07] = -jvmOutFile=D:\usr\sap\J2E\JC02\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=D:\usr\sap\J2E\JC02\work\std_bootstrap.out
    -> arg[09] = -locOutFile=D:\usr\sap\J2E\JC02\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;f:\sapdb\programs\bin;f:\sapdb\programs\pgm;F:\usr\sap\Python\.;D:\orant\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\j2sdk1.4.2_08\bin;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;F:\jdom-1.0\build\jdom.jar;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC02\exe;D:\usr\sap\J2E\SYS\exe\run
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;D:\usr\sap\J2E\JC02\j2ee\os_libs;f:\sapdb\programs\bin;f:\sapdb\programs\pgm;F:\usr\sap\Python\.;D:\orant\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\j2sdk1.4.2_08\bin;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;F:\jdom-1.0\build\jdom.jar;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC02\exe;D:\usr\sap\J2E\SYS\exe\run
    [Thr 5176] Thu Sep 01 19:01:25 2005
    [Thr 5176] JControlExecuteBootstrap: read instance values after global bootstrap
    [Thr 5176] *** ERROR => Invalid property value [box.number/J2EJC02IUSMXREVAPO01] [jstartxx.c   789]
    [Thr 5176] *** ERROR => Invalid property value [system.id/2] [jstartxx.c   789]
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties;D:\usr\sap\J2E\JC02\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : IUSMXREVAPO01
    -> ms port    : 3601
    -> OS libs    : D:\usr\sap\J2E\JC02\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    [Thr 5176] JControlExecuteBootstrap: enumerate the nodes after global bootstrap
    Used property files
    -> files [00] : D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> files [01] : D:\usr\sap\J2E\JC02\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : IUSMXREVAPO01
    -> ms port    : 3601
    -> os libs    : D:\usr\sap\J2E\JC02\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID25837600 : D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID25837650 : D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID25837600           : D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> [01] ID25837650           : D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> [02] sdm                  : D:\usr\sap\J2E\JC02\SDM\program\config\sdm_jstartup.properties
    [Thr 5176] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID25837600]
    [Thr 5176] INFO: Invalid property value [JLaunchParameters/]
    [Thr 5176] [Node: dispatcher bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [bootstrap_ID25837600]
    -> node name       : dispatcher bootstrap
    -> node type       : bootstrap
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 170M
    -> root path       : D:\usr\sap\J2E\JC02\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : D:\usr\sap\J2E\JC02\j2ee\os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : D:\usr\sap\J2E\JC02\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID025837600
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = D:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[00] = D:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    -> arg[02] = -DSAPINFO=J2E_02_bootstrap
    -> arg[03] = -file=D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap_ID25837600
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_4892
    -> arg[07] = -jvmOutFile=D:\usr\sap\J2E\JC02\work\jvm_bootstrap_ID25837600.out
    -> arg[08] = -stdOutFile=D:\usr\sap\J2E\JC02\work\std_bootstrap_ID25837600.out
    -> arg[09] = -locOutFile=D:\usr\sap\J2E\JC02\work\dev_bootstrap_ID25837600
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;f:\sapdb\programs\bin;f:\sapdb\programs\pgm;F:\usr\sap\Python\.;D:\orant\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\j2sdk1.4.2_08\bin;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;F:\jdom-1.0\build\jdom.jar;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC02\exe;D:\usr\sap\J2E\SYS\exe\run
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;D:\usr\sap\J2E\JC02\j2ee\os_libs;f:\sapdb\programs\bin;f:\sapdb\programs\pgm;F:\usr\sap\Python\.;D:\orant\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\j2sdk1.4.2_08\bin;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;F:\jdom-1.0\build\jdom.jar;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC02\exe;D:\usr\sap\J2E\SYS\exe\run
    [Thr 5176] Thu Sep 01 19:01:31 2005
    [Thr 5176] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID25837650]
    [Thr 5176] INFO: Invalid property value [JLaunchParameters/]
    [Thr 5176] [Node: server0 bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [bootstrap_ID25837650]
    -> node name       : server0 bootstrap
    -> node type       : bootstrap
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 512M
    -> root path       : D:\usr\sap\J2E\JC02\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : D:\usr\sap\J2E\JC02\j2ee\os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : D:\usr\sap\J2E\JC02\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID025837650
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = D:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[00] = D:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    -> arg[02] = -DSAPINFO=J2E_02_bootstrap
    -> arg[03] = -file=D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap_ID25837650
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_4892
    -> arg[07] = -jvmOutFile=D:\usr\sap\J2E\JC02\work\jvm_bootstrap_ID25837650.out
    -> arg[08] = -stdOutFile=D:\usr\sap\J2E\JC02\work\std_bootstrap_ID25837650.out
    -> arg[09] = -locOutFile=D:\usr\sap\J2E\JC02\work\dev_bootstrap_ID25837650
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;f:\sapdb\programs\bin;f:\sapdb\programs\pgm;F:\usr\sap\Python\.;D:\orant\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\j2sdk1.4.2_08\bin;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;F:\jdom-1.0\build\jdom.jar;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC02\exe;D:\usr\sap\J2E\SYS\exe\run
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;D:\usr\sap\J2E\JC02\j2ee\os_libs;f:\sapdb\programs\bin;f:\sapdb\programs\pgm;F:\usr\sap\Python\.;D:\orant\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\j2sdk1.4.2_08\bin;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;F:\jdom-1.0\build\jdom.jar;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC02\exe;D:\usr\sap\J2E\SYS\exe\run
    [Thr 5176] Thu Sep 01 19:01:38 2005
    [Thr 5176] JControlIBuildProcessList: Maximum error count is set to 4
    [Thr 5008] JControlRequestFunc: Thread 5008 started as listener thread for np messages.
    [Thr 5176] INFO: Invalid property value [JLaunchParameters/]
    [Thr 5176] [Node: dispatcher] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [ID25837600]
    -> node name       : dispatcher
    -> node type       : dispatcher
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Djco.jarm=1 -Drdbms.driverLocation=f:/sapdb/programs/runtime/jar/sapdbc.jar -Dsys.global.dir=D:/usr/sap/J2E/SYS/global -XX:NewSize=28m -XX:MaxNewSize=28m -XX:+DisableExplicitGC
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 170M
    -> init heap size  : 170M
    -> root path       : D:\usr\sap\J2E\JC02\j2ee\cluster\dispatcher
    -> class path      : .\bin\boot\boot.jar;.\bin\system\bytecode.jar;.
    -> OS libs path    : D:\usr\sap\J2E\JC02\j2ee\os_libs
    -> main class      : com.sap.engine.boot.Start
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : D:\usr\sap\J2E\JC02\j2ee\os_libs\jstartup.jar
    -> parameters      :
    -> debuggable      : no
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    [Thr 5176] INFO: Invalid property value [JLaunchParameters/]
    [Thr 5176] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [ID25837650]
    -> node name       : server0
    -> node type       : server
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer -Djco.jarm=1 -Dsun.io.useCanonCaches=false -Djava.awt.headless=true -verbose:gc -Drdbms.driverLocation=f:/sapdb/programs/runtime/jar/sapdbc.jar -Dsys.global.dir=D:/usr/sap/J2E/SYS/global -XX:NewSize=85m -XX:MaxNewSize=85m -XX:MaxPermSize=192m -XX:PermSize=192m -XX:DisableExplicitGC -XX:UseParNewGC -XX:PrintGCDetails -XX:PrintGCTimeStamps -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 512M
    -> init heap size  : 512M
    -> root path       : D:\usr\sap\J2E\JC02\j2ee\cluster\server0
    -> class path      : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.C:\j2sdk1.4.2_08\jre\lib\ext\xml.jar;.C:\j2sdk1.4.2_08\jre\lib\TestXmlBean.jar;.
    -> OS libs path    : D:\usr\sap\J2E\JC02\j2ee\os_libs
    -> main class      : com.sap.engine.boot.Start
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : D:\usr\sap\J2E\JC02\j2ee\os_libs\jstartup.jar
    -> parameters      :
    -> debuggable      : no
    -> debug mode      : no
    -> debug port      : 50221
    -> shutdown timeout: 120000
    [Thr 5176] [Node: SDM] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [sdm]
    -> node name       : SDM
    -> node type       : sdm
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters :
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 128M
    -> root path       : D:\usr\sap\J2E\JC02\SDM\program
    -> class path      : D:\usr\sap\J2E\JC02\SDM\program\bin\SDM.jar
    -> OS libs path    : D:\usr\sap\J2E\JC02\j2ee\os_libs
    -> main class      : SDMInternal
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : D:\usr\sap\J2E\JC02\j2ee\os_libs\jstartup.jar
    -> shutdown class  : com.sap.sdm.jstartup.shutdown.InternalShutDown
    -> parameters      : server sdmhome=D:\usr\sap/J2E/JC02/SDM/program
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    [Thr 5176] JControlMSConnect: attached to message server (IUSMXREVAPO01/3601)
    JStartupStartJLaunch: program = D:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[00] = D:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    -> arg[02] = -DSAPINFO=J2E_02_dispatcher
    -> arg[03[Thr 5820] JControlMSMessageFunc: Thread 5820 started as listener thread for ms messages.
    ] = -file=D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=ID25837600
    -> arg[05] = -nodeId=0
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_4892
    -> arg[07] = -jvmOutFile=D:\usr\sap\J2E\JC02\work\jvm_dispatcher.out
    -> arg[08] = -stdOutFile=D:\usr\sap\J2E\JC02\work\std_dispatcher.out
    -> arg[09] = -locOutFile=D:\usr\sap\J2E\JC02\work\dev_dispatcher
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;f:\sapdb\programs\bin;f:\sapdb\programs\pgm;F:\usr\sap\Python\.;D:\orant\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\j2sdk1.4.2_08\bin;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;F:\jdom-1.0\build\jdom.jar;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC02\exe;D:\usr\sap\J2E\SYS\exe\run
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;D:\usr\sap\J2E\JC02\j2ee\os_libs;f:\sapdb\programs\bin;f:\sapdb\programs\pgm;F:\usr\sap\Python\.;D:\orant\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\j2sdk1.4.2_08\bin;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;F:\jdom-1.0\build\jdom.jar;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC02\exe;D:\usr\sap\J2E\SYS\exe\run
    [Thr 5176] JControlICheckProcessList: process dispatcher started (PID:5768)
    JStartupStartJLaunch: program = D:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[00] = D:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    -> arg[02] = -DSAPINFO=J2E_02_server
    -> arg[03] = -file=D:\usr\sap\J2E\JC02\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=ID25837650
    -> arg[05] = -nodeId=1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_4892
    -> arg[07] = -locOutFile=D:\usr\sap\J2E\JC02\work\dev_server0
    -> arg[08] = -mode=JCONTROL
    -> arg[09] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;f:\sapdb\programs\bin;f:\sapdb\programs\pgm;F:\usr\sap\Python\.;D:\orant\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\j2sdk1.4.2_08\bin;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;F:\jdom-1.0\build\jdom.jar;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC02\exe;D:\usr\sap\J2E\SYS\exe\run
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;D:\usr\sap\J2E\JC02\j2ee\os_libs;f:\sapdb\programs\bin;f:\sapdb\programs\pgm;F:\usr\sap\Python\.;D:\orant\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\j2sdk1.4.2_08\bin;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;F:\jdom-1.0\build\jdom.jar;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC02\exe;D:\usr\sap\J2E\SYS\exe\run
    [Thr 5176] JControlICheckProcessList: process server0 started (PID:5076)
    JStartupStartJLaunch: program = D:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[00] = D:\usr\sap\J2E\JC02/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    -> arg[02] = -DSAPINFO=J2E_02_sdm
    -> arg[03] = -file=D:\usr\sap\J2E\JC02\SDM\program\config\sdm_jstartup.properties
    -> arg[04] = -nodeName=sdm
    -> arg[05] = -nodeId=2
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_4892
    -> arg[07] = -jvmOutFile=D:\usr\sap\J2E\JC02\work\jvm_sdm.out
    -> arg[08] = -stdOutFile=D:\usr\sap\J2E\JC02\work\std_sdm.out
    -> arg[09] = -locOutFile=D:\usr\sap\J2E\JC02\work\dev_sdm
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=D:\usr\sap\J2E\SYS\profile\J2E_JC02_IUSMXREVAPO01
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;f:\sapdb\programs\bin;f:\sapdb\programs\pgm;F:\usr\sap\Python\.;D:\orant\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\j2sdk1.4.2_08\bin;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;F:\jdom-1.0\build\jdom.jar;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC02\exe;D:\usr\sap\J2E\SYS\exe\run
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;D:\usr\sap\J2E\JC02\j2ee\os_libs;f:\sapdb\programs\bin;f:\sapdb\programs\pgm;F:\usr\sap\Python\.;D:\orant\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\j2sdk1.4.2_08\bin;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;F:\jdom-1.0\build\jdom.jar;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC02\exe;D:\usr\sap\J2E\SYS\exe\run
    [Thr 5176] JControlICheckProcessList: process SDM started (PID:5484)
    [Thr 5820] Thu Sep 01 19:02:10 2005
    [Thr 5820] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 5820] Thu Sep 01 19:07:07 2005
    [Thr 5820] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 5820] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 5820] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 5820] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 5820] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 5820] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 5820] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 5820] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 5820] Thu Sep 01 19:12:14 2005
    [Thr 5820] JControlMSReadMessage: NiPeek() returns -5 NIETIMEOUT
    [Thr 5820] Thu Sep 01 19:17:15 2005
    [Thr 5820] JControlMSReadMessage: NiPeek() returns -5 NIETIMEOUT
    [Thr 5820] Thu Sep 01 19:22:16 2005
    [Thr 5820] JControlMSReadMessage: NiPeek() returns -5 NIETIMEOUT
    [Thr 5820] Thu Sep 01 19:27:37 2005
    [Thr 5820] JControlMSReadMessage: NiPeek() returns -5 NIETIMEOUT
    [Thr 5820] Thu Sep 01 19:32:57 2005
    [Thr 5820] JControlMSReadMessage: NiPeek() returns -5 NIETIMEOUT
    [Thr 5820] Thu Sep 01 19:37:58 2005
    [Thr 5820] JControlMSReadMessage: NiPeek() returns -5 NIETIMEOUT
    [Thr 5820] Thu Sep 01 19:43:18 2005
    [Thr 5820] JControlMSReadMessage: NiPeek() returns -5 NIETIMEOUT
    [Thr 5820] Thu Sep 01 19:48:19 2005
    [Thr 5820] JControlMSReadMessage: NiPeek() returns -5 NIETIMEOUT
    [Thr 5820] Thu Sep 01 19:53:39 2005
    [Thr 5820] JControlMSReadMessage: NiPeek() returns -5 NIETIMEOUT
    [Thr 5820] Thu Sep 01 19:58:40 2005
    [Thr 5820] JControlMSReadMessage: NiPeek() returns -5 NIETIMEOUT
    I change the java max heap size trying to solve to the problem but nothing it works.
    I am thankful beforehand if somebody can help me.
    Thanks a Lot.
    tino.com

    Hi,
    did u see the
    503   Service Unavailable
    http://help.sap.com/saphelp_nw04/helpdata/en/d8/b8fa40badbf46fe10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/a2/bb0a412a06f023e10000000a155106/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/81/df5641998e061de10000000a155106/content.htm
    Hope this helps,
    Thanks,
    Praveen

  • J2EE Server doesn't start anymore

    Hi,
    after patching the Web AS 7.0 on SP Level 10.6 the J2EE Server freezes with the status 'some processes running'. All other processes are running properly.
    The developer trace says:
    JControlICheckProcessList: process server0 (pid:3028) died (RUN-FLAG)
    The complete developer trace:
    trc file: "C:\usr\sap\J2E\JC01\work\dev_jcontrol", trc level: 1, release: "700"
    node name   : jcontrol
    pid         : 816
    system name : J2E
    system nr.  : 01
    started at  : Wed Jan 24 11:05:42 2007
    arguments       :
           arg[00] : C:\usr\sap\J2E\JC01\exe\jcontrol.EXE
           arg[01] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    [Thr 2188] Wed Jan 24 11:05:42 2007
    [Thr 2188] *** WARNING => INFO: Unknown property [instance.box.number=J2EJC01fdk50eco] [jstartxx.c   841]
    [Thr 2188] *** WARNING => INFO: Unknown property [instance.en.host=fdk50eco] [jstartxx.c   841]
    [Thr 2188] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 2188] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties;C:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : fdk50eco
    -> ms port    : 3900
    -> OS libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> files [01] : C:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : fdk50eco
    -> ms port    : 3900
    -> os libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID14227200 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID14227250 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID14227200           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] ID14227250           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] sdm                  : C:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties
    [Thr 2188] *** ERROR => can't adjust privileges (rc = 1300) [jstartnt.c   1144]
    [Thr 2188] *** ERROR => can't set privilege (rc = -1) [jstartnt.c   1043]
    [Thr 2188] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 2188] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 2188] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap]
    -> node name          : bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 768M
    -> root path          : C:\usr\sap\J2E\JC01\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0142272
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> arg[02] = -DSAPINFO=J2E_01_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_816
    -> arg[06] = -nodeName=bootstrap
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC01\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC01\work\std_bootstrap.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC01\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 2188] Wed Jan 24 11:05:48 2007
    [Thr 2188] JControlExecuteBootstrap: read instance values after global bootstrap
    [Thr 2188] *** WARNING => INFO: Unknown property [instance.box.number=J2EJC01fdk50eco] [jstartxx.c   841]
    [Thr 2188] *** WARNING => INFO: Unknown property [instance.en.host=fdk50eco] [jstartxx.c   841]
    [Thr 2188] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 2188] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties;C:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : fdk50eco
    -> ms port    : 3900
    -> OS libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    [Thr 2188] JControlExecuteBootstrap: enumerate the nodes after global bootstrap
    Used property files
    -> files [00] : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> files [01] : C:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : fdk50eco
    -> ms port    : 3900
    -> os libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID14227200 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID14227250 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID14227200           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] ID14227250           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] sdm                  : C:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties
    [Thr 2188] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID14227200]
    [Thr 2188] [Node: dispatcher bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 2188] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap_ID14227200]
    -> node name          : dispatcher bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 256M
    -> root path          : C:\usr\sap\J2E\JC01\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID014227200
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> arg[02] = -DSAPINFO=J2E_01_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_816
    -> arg[06] = -nodeName=bootstrap_ID14227200
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC01\work\jvm_bootstrap_ID14227200.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC01\work\std_bootstrap_ID14227200.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC01\work\dev_bootstrap_ID14227200
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 2188] Wed Jan 24 11:05:53 2007
    [Thr 2188] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID14227250]
    [Thr 2188] [Node: server0 bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 2188] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap_ID14227250]
    -> node name          : server0 bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 256M
    -> root path          : C:\usr\sap\J2E\JC01\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID014227250
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> arg[02] = -DSAPINFO=J2E_01_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_816
    -> arg[06] = -nodeName=bootstrap_ID14227250
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC01\work\jvm_bootstrap_ID14227250.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC01\work\std_bootstrap_ID14227250.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC01\work\dev_bootstrap_ID14227250
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 2188] Wed Jan 24 11:06:05 2007
    [Thr 2188] JControlIBuildProcessList: Maximum error count is set to 4
    [Thr 2188] [Node: dispatcher] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 2188] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID14227200]
    -> node name          : dispatcher
    -> node type          : dispatcher
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -XX:NewSize=68m -XX:MaxNewSize=68m -XX:NewRatio=3 -XX:DisableExplicitGC -verbose:gc -XX:UseConcMarkSweepGC
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 203M
    -> init heap size     : 203M
    -> root path          : C:\usr\sap\J2E\JC01\j2ee\cluster\dispatcher
    -> class path         : .\bin\boot\boot.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    [Thr 2188] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 2188] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID14227250]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 768M
    -> init heap size     : 768M
    -> root path          : C:\usr\sap\J2E\JC01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> parameters         :
    -> debuggable         : yes
    -> debug mode         : yes
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 2188] INFO: Invalid property value [Debbugable=yes]
    [Thr 2188] [Node: SDM] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 2188] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [sdm]
    -> node name          : SDM
    -> node type          : sdm
    -> node execute       : yes
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    :
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 128M
    -> root path          : C:\usr\sap\J2E\JC01\SDM\program
    -> class path         : C:\usr\sap\J2E\JC01\SDM\program\bin\SDM.jar
    -> OS libs path       : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : SDMInternal
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> shutdown class     : com.sap.sdm.jstartup.shutdown.InternalShutDown
    -> parameters         : server sdmhome=C:\usr\sap\J2E\JC01\SDM\program
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    [Thr 3228] JControlRequestFunc: Thread 3228 started as listener thread for np messages.
    [Thr 2188] JControlMSConnect: attached to message server (fdk50eco/3900)
    JControlStartJLaunch: program = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> arg[02] = -DSAPINFO=J2E_01_dispatcher
    -> arg[03] = -nodeId=0
    -> arg[04] = -file=C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_816
    -> arg[06] = -nodeName=ID14227200
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC01\work\jvm_dispatcher.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC01\work\std_dispatcher.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC01\work\dev_dispatcher
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 2768] JControlMSMessageFunc: Thread 2768 started as listener thread for ms messages.
    [Thr 2188] JControlICheckProcessList: process dispatcher started (PID:3436)
    JControlStartJLaunch: program = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> arg[02] = -DSAPINFO=J2E_01_server
    -> arg[03] = -nodeId=1
    -> arg[04] = -file=C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_816
    -> arg[06] = -nodeName=ID14227250
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC01\work\jvm_server0.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC01\work\std_server0.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC01\work\dev_server0
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = -debugMode=yes
    -> arg[12] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 2188] JControlICheckProcessList: process server0 started (PID:3404)
    JControlStartJLaunch: program = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> arg[02] = -DSAPINFO=J2E_01_sdm
    -> arg[03] = -nodeId=2
    -> arg[04] = -file=C:\usr\sap\J2E\JC01\SDM\program\config\sdm_jstartup.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_816
    -> arg[06] = -nodeName=sdm
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC01\work\jvm_sdm.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC01\work\std_sdm.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC01\work\dev_sdm
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 2188] JControlICheckProcessList: process SDM started (PID:300)
    [Thr 2188] JControlMSSendLogon: delete SDM logon information (rc=0)
    [Thr 2188] Wed Jan 24 11:06:20 2007
    [Thr 2188] JControlMSSendLogon: insert SDM logon information (port=50118; rc=0)
    [Thr 2188] Wed Jan 24 11:07:22 2007
    [Thr 2188] JControlICheckProcessList: process server0 (pid:3404) died (RUN-FLAG)
    [Thr 2188] JControlIResetProcess: reset process server0
    [Thr 2188] JControlIResetProcess: [server0] not running -> increase error count (1)
    [Thr 2188] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID14227250 1169633165 -bz C:\usr\sap\J2E\SYS\global
    JControlStartJLaunch: program = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> arg[02] = -DSAPINFO=J2E_01_server
    -> arg[03] = -nodeId=1
    -> arg[04] = -file=C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_816
    -> arg[06] = -nodeName=ID14227250
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC01\work\jvm_server0.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=C:\usr\sap\J2E\JC01\work\std_server0.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=C:\usr\sap\J2E\JC01\work\dev_server0
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = -debugMode=yes
    -> arg[15] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 2188] Wed Jan 24 11:07:23 2007
    [Thr 2188] JControlICheckProcessList: process server0 started (PID:2156)
    [Thr 2188] Wed Jan 24 11:08:12 2007
    [Thr 2188] JControlICheckProcessList: process server0 (pid:2156) died (RUN-FLAG)
    [Thr 2188] JControlIResetProcess: reset process server0
    [Thr 2188] JControlIResetProcess: [server0] not running -> increase error count (2)
    [Thr 2188] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID14227250 1169633243 -bz C:\usr\sap\J2E\SYS\global
    JControlStartJLaunch: program = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> arg[02] = -DSAPINFO=J2E_01_server
    -> arg[03] = -nodeId=1
    -> arg[04] = -file=C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_816
    -> arg[06] = -nodeName=ID14227250
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC01\work\jvm_server0.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=C:\usr\sap\J2E\JC01\work\std_server0.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=C:\usr\sap\J2E\JC01\work\dev_server0
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = -debugMode=yes
    -> arg[15] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 2188] JControlICheckProcessList: process server0 started (PID:3000)
    [Thr 2188] Wed Jan 24 11:09:02 2007
    [Thr 2188] JControlICheckProcessList: process server0 (pid:3000) died (RUN-FLAG)
    [Thr 2188] JControlIResetProcess: reset process server0
    [Thr 2188] JControlIResetProcess: [server0] not running -> increase error count (3)
    [Thr 2188] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID14227250 1169633292 -bz C:\usr\sap\J2E\SYS\global
    JControlStartJLaunch: program = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC01\exe\jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> arg[02] = -DSAPINFO=J2E_01_server
    -> arg[03] = -nodeId=1
    -> arg[04] = -file=C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_816
    -> arg[06] = -nodeName=ID14227250
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC01\work\jvm_server0.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=C:\usr\sap\J2E\JC01\work\std_server0.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=C:\usr\sap\J2E\JC01\work\dev_server0
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = -debugMode=yes
    -> arg[15] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 2188] JControlICheckProcessList: process server0 started (PID:3028)
    [Thr 2188] Wed Jan 24 11:09:49 2007
    [Thr 2188] JControlICheckProcessList: process server0 (pid:3028) died (RUN-FLAG)
    [Thr 2188] JControlIResetProcess: reset process server0
    [Thr 2188] JControlIResetProcess: [server0] not running -> increase error count (4)
    [Thr 2188] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID14227250 1169633342 -bz C:\usr\sap\J2E\SYS\global
    I alreade tried to increase the heapsize, but it didn't help.
    Thanks for your help ...
    Felix

    Hi,
    restoring the Defaults of server0 didn't help as well.
    Here is the dev_server0 file, probably this could help:
    trc file: "C:\usr\sap\J2E\JC01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID14227250
    pid         : 3388
    system name : J2E
    system nr.  : 01
    started at  : Wed Jan 31 15:00:49 2007
    arguments       :
           arg[00] : C:\usr\sap\J2E\JC01\exe\jlaunch.exe
           arg[01] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
           arg[02] : -DSAPINFO=J2E_01_server
           arg[03] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    [Thr 436] Wed Jan 31 15:00:49 2007
    [Thr 436] *** WARNING => INFO: Unknown property [instance.box.number=J2EJC01fdk50eco] [jstartxx.c   841]
    [Thr 436] *** WARNING => INFO: Unknown property [instance.en.host=fdk50eco] [jstartxx.c   841]
    [Thr 436] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 436] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties]
    -> ms host    : fdk50eco
    -> ms port    : 3900
    -> OS libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : fdk50eco
    -> ms port    : 3900
    -> os libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID14227200 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID14227250 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID14227200           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] ID14227250           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    [Thr 436] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 436] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 400] JLaunchRequestFunc: Thread 400 started as listener thread for np messages.
    [Thr 1956] WaitSyncSemThread: Thread 1956 started as semaphore monitor thread.
    [Thr 436] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 436] CPIC (version=700.2005.12.02)
    [Thr 436] JStartupIReadSection: debug mode is specified by program arguments
    [Thr 436] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 436] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID14227250]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 768M
    -> init heap size     : 768M
    -> root path          : C:\usr\sap\J2E\JC01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : yes
    -> debug mode         : yes
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 436] JLaunchISetDebugMode: set debug mode [yes]
    [Thr 3712] JLaunchIStartFunc: Thread 3712 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=256M
    -> arg[ 11]: -XX:NewSize=171M
    -> arg[ 12]: -XX:MaxNewSize=171M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=C:\usr\sap\J2E\SYS\global
    -> arg[ 25]: -Dapplication.home=C:\usr\sap\J2E\JC01\exe
    -> arg[ 26]: -Djava.class.path=C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> arg[ 28]: -Xdebug
    -> arg[ 29]: -Xnoagent
    -> arg[ 30]: -Djava.compiler=NONE
    -> arg[ 31]: -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=50121
    -> arg[ 32]: -Dmemory.manager=768M
    -> arg[ 33]: -Xmx768M
    -> arg[ 34]: -Xms768M
    -> arg[ 35]: -DLoadBalanceRestricted=no
    -> arg[ 36]: -Djstartup.mode=JCONTROL
    -> arg[ 37]: -Djstartup.ownProcessId=3388
    -> arg[ 38]: -Djstartup.ownHardwareId=M1253601270
    -> arg[ 39]: -Djstartup.whoami=server
    -> arg[ 40]: -Djstartup.debuggable=yes
    -> arg[ 41]: -DSAPINFO=J2E_01_server
    -> arg[ 42]: -DSAPSTARTUP=1
    -> arg[ 43]: -DSAPSYSTEM=01
    -> arg[ 44]: -DSAPSYSTEMNAME=J2E
    -> arg[ 45]: -DSAPMYNAME=fdk50eco_J2E_01
    -> arg[ 46]: -DSAPDBHOST=FDK50ECO
    -> arg[ 47]: -Dj2ee.dbhost=FDK50ECO
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 3712] Wed Jan 31 15:00:50 2007
    [Thr 3712] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 3492] Wed Jan 31 15:01:11 2007
    [Thr 3492] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 3492] Wed Jan 31 15:01:12 2007
    [Thr 3492] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 3492] JLaunchISetClusterId: set cluster id 14227250
    [Thr 3492] Wed Jan 31 15:01:13 2007
    [Thr 3492] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 3492] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 2104] Wed Jan 31 15:02:37 2007
    [Thr 2104] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 2104] JLaunchCloseProgram: good bye (exitcode = -11113)
    trc file: "C:\usr\sap\J2E\JC01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID14227250
    pid         : 4520
    system name : J2E
    system nr.  : 01
    started at  : Wed Jan 31 15:02:44 2007
    arguments       :
           arg[00] : C:\usr\sap\J2E\JC01\exe\jlaunch.exe
           arg[01] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
           arg[02] : -DSAPINFO=J2E_01_server
           arg[03] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    [Thr 4524] Wed Jan 31 15:02:44 2007
    [Thr 4524] *** WARNING => INFO: Unknown property [instance.box.number=J2EJC01fdk50eco] [jstartxx.c   841]
    [Thr 4524] *** WARNING => INFO: Unknown property [instance.en.host=fdk50eco] [jstartxx.c   841]
    [Thr 4524] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 4524] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties]
    -> ms host    : fdk50eco
    -> ms port    : 3900
    -> OS libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : fdk50eco
    -> ms port    : 3900
    -> os libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID14227200 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID14227250 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID14227200           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] ID14227250           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    [Thr 4524] Wed Jan 31 15:02:45 2007
    [Thr 4524] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 4524] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 4528] JLaunchRequestFunc: Thread 4528 started as listener thread for np messages.
    [Thr 4532] WaitSyncSemThread: Thread 4532 started as semaphore monitor thread.
    [Thr 4524] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 4524] CPIC (version=700.2005.12.02)
    [Thr 4524] JStartupIReadSection: debug mode is specified by program arguments
    [Thr 4524] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 4524] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID14227250]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 768M
    -> init heap size     : 768M
    -> root path          : C:\usr\sap\J2E\JC01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : yes
    -> debug mode         : yes
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 4524] JLaunchISetDebugMode: set debug mode [yes]
    [Thr 4544] JLaunchIStartFunc: Thread 4544 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=256M
    -> arg[ 11]: -XX:NewSize=171M
    -> arg[ 12]: -XX:MaxNewSize=171M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=C:\usr\sap\J2E\SYS\global
    -> arg[ 25]: -Dapplication.home=C:\usr\sap\J2E\JC01\exe
    -> arg[ 26]: -Djava.class.path=C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> arg[ 28]: -Xdebug
    -> arg[ 29]: -Xnoagent
    -> arg[ 30]: -Djava.compiler=NONE
    -> arg[ 31]: -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=50121
    -> arg[ 32]: -Dmemory.manager=768M
    -> arg[ 33]: -Xmx768M
    -> arg[ 34]: -Xms768M
    -> arg[ 35]: -DLoadBalanceRestricted=no
    -> arg[ 36]: -Djstartup.mode=JCONTROL
    -> arg[ 37]: -Djstartup.ownProcessId=4520
    -> arg[ 38]: -Djstartup.ownHardwareId=M1253601270
    -> arg[ 39]: -Djstartup.whoami=server
    -> arg[ 40]: -Djstartup.debuggable=yes
    -> arg[ 41]: -DSAPINFO=J2E_01_server
    -> arg[ 42]: -DSAPSTARTUP=1
    -> arg[ 43]: -DSAPSYSTEM=01
    -> arg[ 44]: -DSAPSYSTEMNAME=J2E
    -> arg[ 45]: -DSAPMYNAME=fdk50eco_J2E_01
    -> arg[ 46]: -DSAPDBHOST=FDK50ECO
    -> arg[ 47]: -Dj2ee.dbhost=FDK50ECO
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 4544] Wed Jan 31 15:02:46 2007
    [Thr 4544] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 4600] Wed Jan 31 15:02:52 2007
    [Thr 4600] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 4600] Wed Jan 31 15:02:53 2007
    [Thr 4600] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 4600] JLaunchISetClusterId: set cluster id 14227250
    [Thr 4600] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 4600] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 4548] Wed Jan 31 15:03:45 2007
    [Thr 4548] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 4548] JLaunchCloseProgram: good bye (exitcode = -11113)
    trc file: "C:\usr\sap\J2E\JC01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID14227250
    pid         : 5608
    system name : J2E
    system nr.  : 01
    started at  : Wed Jan 31 15:03:51 2007
    arguments       :
           arg[00] : C:\usr\sap\J2E\JC01\exe\jlaunch.exe
           arg[01] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
           arg[02] : -DSAPINFO=J2E_01_server
           arg[03] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    [Thr 5612] Wed Jan 31 15:03:51 2007
    [Thr 5612] *** WARNING => INFO: Unknown property [instance.box.number=J2EJC01fdk50eco] [jstartxx.c   841]
    [Thr 5612] *** WARNING => INFO: Unknown property [instance.en.host=fdk50eco] [jstartxx.c   841]
    [Thr 5612] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 5612] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties]
    -> ms host    : fdk50eco
    -> ms port    : 3900
    -> OS libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : fdk50eco
    -> ms port    : 3900
    -> os libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID14227200 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID14227250 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID14227200           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] ID14227250           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    [Thr 5612] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 5612] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 5616] JLaunchRequestFunc: Thread 5616 started as listener thread for np messages.
    [Thr 5620] WaitSyncSemThread: Thread 5620 started as semaphore monitor thread.
    [Thr 5612] Wed Jan 31 15:03:52 2007
    [Thr 5612] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 5612] CPIC (version=700.2005.12.02)
    [Thr 5612] JStartupIReadSection: debug mode is specified by program arguments
    [Thr 5612] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 5612] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID14227250]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 768M
    -> init heap size     : 768M
    -> root path          : C:\usr\sap\J2E\JC01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : yes
    -> debug mode         : yes
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 5612] JLaunchISetDebugMode: set debug mode [yes]
    [Thr 5632] JLaunchIStartFunc: Thread 5632 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=256M
    -> arg[ 11]: -XX:NewSize=171M
    -> arg[ 12]: -XX:MaxNewSize=171M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=C:\usr\sap\J2E\SYS\global
    -> arg[ 25]: -Dapplication.home=C:\usr\sap\J2E\JC01\exe
    -> arg[ 26]: -Djava.class.path=C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> arg[ 28]: -Xdebug
    -> arg[ 29]: -Xnoagent
    -> arg[ 30]: -Djava.compiler=NONE
    -> arg[ 31]: -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=50121
    -> arg[ 32]: -Dmemory.manager=768M
    -> arg[ 33]: -Xmx768M
    -> arg[ 34]: -Xms768M
    -> arg[ 35]: -DLoadBalanceRestricted=no
    -> arg[ 36]: -Djstartup.mode=JCONTROL
    -> arg[ 37]: -Djstartup.ownProcessId=5608
    -> arg[ 38]: -Djstartup.ownHardwareId=M1253601270
    -> arg[ 39]: -Djstartup.whoami=server
    -> arg[ 40]: -Djstartup.debuggable=yes
    -> arg[ 41]: -DSAPINFO=J2E_01_server
    -> arg[ 42]: -DSAPSTARTUP=1
    -> arg[ 43]: -DSAPSYSTEM=01
    -> arg[ 44]: -DSAPSYSTEMNAME=J2E
    -> arg[ 45]: -DSAPMYNAME=fdk50eco_J2E_01
    -> arg[ 46]: -DSAPDBHOST=FDK50ECO
    -> arg[ 47]: -Dj2ee.dbhost=FDK50ECO
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 5632] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 5688] Wed Jan 31 15:03:57 2007
    [Thr 5688] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 5688] Wed Jan 31 15:04:01 2007
    [Thr 5688] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 5688] JLaunchISetClusterId: set cluster id 14227250
    [Thr 5688] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 5688] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 5636] Wed Jan 31 15:05:19 2007
    [Thr 5636] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 5636] JLaunchCloseProgram: good bye (exitcode = -11113)
    trc file: "C:\usr\sap\J2E\JC01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID14227250
    pid         : 3820
    system name : J2E
    system nr.  : 01
    started at  : Wed Jan 31 15:05:25 2007
    arguments       :
           arg[00] : C:\usr\sap\J2E\JC01\exe\jlaunch.exe
           arg[01] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
           arg[02] : -DSAPINFO=J2E_01_server
           arg[03] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC01_fdk50eco
    [Thr 3316] Wed Jan 31 15:05:25 2007
    [Thr 3316] *** WARNING => INFO: Unknown property [instance.box.number=J2EJC01fdk50eco] [jstartxx.c   841]
    [Thr 3316] *** WARNING => INFO: Unknown property [instance.en.host=fdk50eco] [jstartxx.c   841]
    [Thr 3316] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 3316] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties]
    -> ms host    : fdk50eco
    -> ms port    : 3900
    -> OS libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : fdk50eco
    -> ms port    : 3900
    -> os libs    : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID14227200 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID14227250 : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID14227200           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] ID14227250           : C:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    [Thr 3316] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 3316] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 3828] JLaunchRequestFunc: Thread 3828 started as listener thread for np messages.
    [Thr 3832] WaitSyncSemThread: Thread 3832 started as semaphore monitor thread.
    [Thr 3316] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 3316] CPIC (version=700.2005.12.02)
    [Thr 3316] JStartupIReadSection: debug mode is specified by program arguments
    [Thr 3316] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 3316] JStartupICheckFrameworkPackage: can't find framework package C:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID14227250]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 768M
    -> init heap size     : 768M
    -> root path          : C:\usr\sap\J2E\JC01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : C:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : yes
    -> debug mode         : yes
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 3316] JLaunchISetDebugMode: set debug mode [yes]
    [Thr 1728] JLaunchIStartFunc: Thread 1728 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=256M
    -> arg[ 11]: -XX:NewSize=171M
    -> arg[ 12]: -XX:MaxNewSize=171M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=C:\usr\sap\J2E\SYS\global
    -> arg[ 25]: -Dapplication.home=C:\usr\sap\J2E\JC01\exe
    -> arg[ 26]: -Djava.class.path=C:\usr\sap\J2E\JC01\exe\jstartup.jar;C:\usr\sap\J2E\JC01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;C:\j2sdk1.4.2_13\bin;C:\usr\sap\J2E\JC01\j2ee\os_libs;C:\j2sdk1.4.2_13\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Programme\UltraEdit;C:\Programme\Microsoft SQL Server\80\Tools\BINN;C:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> arg[ 28]: -Xdebug
    -> arg[ 29]: -Xnoagent
    -> arg[ 30]: -Djava.compiler=NONE
    -> arg[ 31]: -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=50121
    -> arg[ 32]: -Dmemory.manager=768M
    -> arg[ 33]: -Xmx768M
    -> arg[ 34]: -Xms768M
    -> arg[ 35]: -DLoadBalanceRestricted=no
    -> arg[ 36]: -Djstartup.mode=JCONTROL
    -> arg[ 37]: -Djstartup.ownProcessId=3820
    -> arg[ 38]: -Djstartup.ownHardwareId=M1253601270
    -> arg[ 39]: -Djstartup.whoami=server
    -> arg[ 40]: -Djstartup.debuggable=yes
    -> arg[ 41]: -DSAPINFO=J2E_01_server
    -> arg[ 42]: -DSAPSTARTUP=1
    -> arg[ 43]: -DSAPSYSTEM=01
    -> arg[ 44]: -DSAPSYSTEMNAME=J2E
    -> arg[ 45]: -DSAPMYNAME=fdk50eco_J2E_01
    -> arg[ 46]: -DSAPDBHOST=FDK50ECO
    -> arg[ 47]: -Dj2ee.dbhost=FDK50ECO
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 1728] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 3880] Wed Jan 31 15:05:28 2007
    [Thr 3880] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 3880] Wed Jan 31 15:05:29 2007
    [Thr 3880] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 3880] JLaunchISetClusterId: set cluster id 14227250
    [Thr 3880] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 3880] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 3840] Wed Jan 31 15:06:22 2007
    [Thr 3840] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 3840] JLaunchCloseProgram: good bye (exitcode = -11113)
    Thanks for your help
    Felix

  • J2EE Server stays in Yellow status saying "Starting Apps"

    Dear Experts,
    In our BI system, the J2EE server SERVER0 is not coming to running state. After I stop and start the sap instance of the BI system it remains in yellow status showing starting apps. I could not find any error message in dev_server0, std_server0.out and server.0.log, please find below log of dev_server0
    dev_server0
    trc file: "F:\usr\sap\B23\DVEBMGS00\work\dev_server0", trc level: 1, release: "700"
    node name   : ID6587850
    pid         : 1384
    system name : B23
    system nr.  : 00
    started at  : Thu Sep 18 12:42:53 2008
    arguments       :
           arg[00] : F:\usr\sap\B23\DVEBMGS00\exe\jlaunch.exe
           arg[01] : pf=F:\usr\sap\B23\SYS\profile\B23_DVEBMGS00_bidq001
           arg[02] : -DSAPINFO=B23_00_server
           arg[03] : pf=F:\usr\sap\B23\SYS\profile\B23_DVEBMGS00_bidq001
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=4600
           arg[06] : -DSAPSYSTEM=00
           arg[07] : -DSAPSYSTEMNAME=B23
           arg[08] : -DSAPMYNAME=bidq001_B23_00
           arg[09] : -DSAPPROFILE=F:\usr\sap\B23\SYS\profile\B23_DVEBMGS00_bidq001
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 2412] Thu Sep 18 12:42:53 2008
    [Thr 2412] *** WARNING => INFO: Unknown property [instance.box.number=B23DVEBMGS00bidq001] [jstartxx.c   841]
    [Thr 2412] *** WARNING => INFO: Unknown property [instance.en.host=bidq001] [jstartxx.c   841]
    [Thr 2412] *** WARNING => INFO: Unknown property [instance.en.port=3201] [jstartxx.c   841]
    [Thr 2412] *** WARNING => INFO: Unknown property [instance.system.id=0] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties]
    -> ms host    : bidq001
    -> ms port    : 3901
    -> OS libs    : F:\usr\sap\B23\DVEBMGS00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : bidq001
    -> ms port    : 3901
    -> os libs    : F:\usr\sap\B23\DVEBMGS00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID6587800  : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID6587850  : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID6587800            : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] ID6587850            : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties
    [Thr 2412] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 2412] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 2752] JLaunchRequestFunc: Thread 2752 started as listener thread for np messages.
    [Thr 4064] WaitSyncSemThread: Thread 4064 started as semaphore monitor thread.
    [Thr 2412] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 2412] CPIC (version=700.2006.09.13)
    [Thr 2412] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16-x64
    [Thr 2412] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\B23\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID6587850]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_16-x64
    -> java parameters    : -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\B23\DVEBMGS00\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\B23\DVEBMGS00\exe\jstartup.jar;F:\usr\sap\B23\DVEBMGS00\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50021
    -> shutdown timeout   : 120000
    [Thr 2412] JLaunchISetDebugMode: set debug mode [no]
    [Thr 3380] JLaunchIStartFunc: Thread 3380 started as Java VM thread.
    [Thr 3380] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -XX:MaxPermSize=256M
    -> arg[  5]: -XX:PermSize=256M
    -> arg[  6]: -XX:NewSize=171M
    -> arg[  7]: -XX:MaxNewSize=171M
    -> arg[  8]: -XX:+DisableExplicitGC
    -> arg[  9]: -verbose:gc
    -> arg[ 10]: -Xloggc:GC.log
    -> arg[ 11]: -XX:+PrintGCDetails
    -> arg[ 12]: -XX:+PrintGCTimeStamps
    -> arg[ 13]: -Djava.awt.headless=true
    -> arg[ 14]: -Dsun.io.useCanonCaches=false
    -> arg[ 15]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 16]: -XX:SurvivorRatio=2
    -> arg[ 17]: -XX:TargetSurvivorRatio=90
    -> arg[ 18]: -Djava.security.policy=./java.policy
    -> arg[ 19]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 20]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 21]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 22]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 23]: -Dsys.global.dir=F:\usr\sap\B23\SYS\global
    -> arg[ 24]: -Dapplication.home=F:\usr\sap\B23\DVEBMGS00\exe
    -> arg[ 25]: -Djava.class.path=F:\usr\sap\B23\DVEBMGS00\exe\jstartup.jar;F:\usr\sap\B23\DVEBMGS00\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 26]: -Djava.library.path=C:\j2sdk1.4.2_16-x64\jre\bin\server;C:\j2sdk1.4.2_16-x64\jre\bin;C:\j2sdk1.4.2_16-x64\bin;F:\usr\sap\B23\DVEBMGS00\j2ee\os_libs;D:\oracle\B23\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Dell\SysMgt\RAC5;C:\Program Files (x86)\Dell\SysMgt\oma\bin;C:\j2sdk1.4.2_16-x64\bin;F:\usr\sap\B23\SYS\exe\uc\NTAMD64
    -> arg[ 27]: -Dmemory.manager=1024M
    -> arg[ 28]: -Xmx1024M
    -> arg[ 29]: -Xms1024M
    -> arg[ 30]: -DLoadBalanceRestricted=no
    -> arg[ 31]: -Djstartup.mode=JCONTROL
    -> arg[ 32]: -Djstartup.ownProcessId=1384
    -> arg[ 33]: -Djstartup.ownHardwareId=Z1382384873
    -> arg[ 34]: -Djstartup.whoami=server
    -> arg[ 35]: -Djstartup.debuggable=no
    -> arg[ 36]: -Xss2m
    -> arg[ 37]: -DSAPINFO=B23_00_server
    -> arg[ 38]: -DSAPSTART=1
    -> arg[ 39]: -DCONNECT_PORT=4600
    -> arg[ 40]: -DSAPSYSTEM=00
    -> arg[ 41]: -DSAPSYSTEMNAME=B23
    -> arg[ 42]: -DSAPMYNAME=bidq001_B23_00
    -> arg[ 43]: -DSAPPROFILE=F:\usr\sap\B23\SYS\profile\B23_DVEBMGS00_bidq001
    -> arg[ 44]: -DFRFC_FALLBACK=ON
    -> arg[ 45]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 46]: -DSAPSTARTUP=1
    -> arg[ 47]: -DSAPSYSTEM=00
    -> arg[ 48]: -DSAPSYSTEMNAME=B23
    -> arg[ 49]: -DSAPMYNAME=bidq001_B23_00
    -> arg[ 50]: -DSAPDBHOST=bidq001
    -> arg[ 51]: -Dj2ee.dbhost=bidq001
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 3380] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 2604] Thu Sep 18 12:42:58 2008
    [Thr 2604] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 2604] Thu Sep 18 12:43:07 2008
    [Thr 2604] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 2604] JLaunchISetClusterId: set cluster id 6587850
    [Thr 2604] Thu Sep 18 12:43:08 2008
    [Thr 2604] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 2604] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 5780] Thu Sep 18 12:43:48 2008
    [Thr 5780] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 5780] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 5780] Thu Sep 18 12:43:52 2008
    [Thr 5780] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.engine.Compress
    [Thr 1764] Thu Sep 18 12:44:02 2008
    [Thr 1764] JHVM_RegisterNatives: registering methods in com.sap.security.core.server.vsi.service.jni.VirusScanInterface
    [Thr 2604] Thu Sep 18 12:44:24 2008
    [Thr 2604] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]
    [Thr 2752] Tue Sep 23 14:16:00 2008
    [Thr 2752] JLaunchRequestFunc: receive command:17, argument:0 from pid:5616
    [Thr 2752] JLaunchIShutdownInvoke: set shutdown interval (stop:1222159560/end:1222159680/TO:120)
    [Thr 2752] JLaunchProcessCommand: Invoke VM Shutdown
    [Thr 2752] JHVM_FrameworkShutdownDirect: invoke direct shutdown
    [Thr 6268] Tue Sep 23 14:16:20 2008
    [Thr 6268] JLaunchISetState: change state from [Starting applications (10)] to [Waiting for stop (4)]
    [Thr 6268] JLaunchISetState: change state from [Waiting for stop (4)] to [Stopping (5)]
    trc file: "F:\usr\sap\B23\DVEBMGS00\work\dev_server0", trc level: 1, release: "700"
    node name   : ID6587850
    pid         : 4116
    system name : B23
    system nr.  : 00
    started at  : Tue Sep 23 14:18:06 2008
    arguments       :
           arg[00] : F:\usr\sap\B23\DVEBMGS00\exe\jlaunch.exe
           arg[01] : pf=F:\usr\sap\B23\SYS\profile\B23_DVEBMGS00_bidq001
           arg[02] : -DSAPINFO=B23_00_server
           arg[03] : pf=F:\usr\sap\B23\SYS\profile\B23_DVEBMGS00_bidq001
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=4600
           arg[06] : -DSAPSYSTEM=00
           arg[07] : -DSAPSYSTEMNAME=B23
           arg[08] : -DSAPMYNAME=bidq001_B23_00
           arg[09] : -DSAPPROFILE=F:\usr\sap\B23\SYS\profile\B23_DVEBMGS00_bidq001
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 5340] Tue Sep 23 14:18:06 2008
    [Thr 5340] *** WARNING => INFO: Unknown property [instance.box.number=B23DVEBMGS00bidq001] [jstartxx.c   841]
    [Thr 5340] *** WARNING => INFO: Unknown property [instance.en.host=bidq001] [jstartxx.c   841]
    [Thr 5340] *** WARNING => INFO: Unknown property [instance.en.port=3201] [jstartxx.c   841]
    [Thr 5340] *** WARNING => INFO: Unknown property [instance.system.id=0] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties]
    -> ms host    : bidq001
    -> ms port    : 3901
    -> OS libs    : F:\usr\sap\B23\DVEBMGS00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : bidq001
    -> ms port    : 3901
    -> os libs    : F:\usr\sap\B23\DVEBMGS00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID6587800  : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID6587850  : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID6587800            : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] ID6587850            : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\instance.properties
    [Thr 5340] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 5340] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 5460] JLaunchRequestFunc: Thread 5460 started as listener thread for np messages.
    [Thr 5580] WaitSyncSemThread: Thread 5580 started as semaphore monitor thread.
    [Thr 5340] Tue Sep 23 14:18:07 2008
    [Thr 5340] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 5340] CPIC (version=700.2006.09.13)
    [Thr 5340] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_16-x64
    [Thr 5340] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\B23\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID6587850]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_16-x64
    -> java parameters    : -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> java vm version    : 1.4.2_16-b05
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : F:\usr\sap\B23\DVEBMGS00\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\B23\DVEBMGS00\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\B23\DVEBMGS00\exe\jstartup.jar;F:\usr\sap\B23\DVEBMGS00\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50021
    -> shutdown timeout   : 120000
    [Thr 5340] JLaunchISetDebugMode: set debug mode [no]
    [Thr 3176] JLaunchIStartFunc: Thread 3176 started as Java VM thread.
    [Thr 3176] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -XX:MaxPermSize=256M
    -> arg[  5]: -XX:PermSize=256M
    -> arg[  6]: -XX:NewSize=171M
    -> arg[  7]: -XX:MaxNewSize=171M
    -> arg[  8]: -XX:+DisableExplicitGC
    -> arg[  9]: -verbose:gc
    -> arg[ 10]: -Xloggc:GC.log
    -> arg[ 11]: -XX:+PrintGCDetails
    -> arg[ 12]: -XX:+PrintGCTimeStamps
    -> arg[ 13]: -Djava.awt.headless=true
    -> arg[ 14]: -Dsun.io.useCanonCaches=false
    -> arg[ 15]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 16]: -XX:SurvivorRatio=2
    -> arg[ 17]: -XX:TargetSurvivorRatio=90
    -> arg[ 18]: -Djava.security.policy=./java.policy
    -> arg[ 19]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 20]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 21]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 22]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 23]: -Dsys.global.dir=F:\usr\sap\B23\SYS\global
    -> arg[ 24]: -Dapplication.home=F:\usr\sap\B23\DVEBMGS00\exe
    -> arg[ 25]: -Djava.class.path=F:\usr\sap\B23\DVEBMGS00\exe\jstartup.jar;F:\usr\sap\B23\DVEBMGS00\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 26]: -Djava.library.path=C:\j2sdk1.4.2_16-x64\jre\bin\server;C:\j2sdk1.4.2_16-x64\jre\bin;C:\j2sdk1.4.2_16-x64\bin;F:\usr\sap\B23\DVEBMGS00\j2ee\os_libs;D:\oracle\B23\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Dell\SysMgt\RAC5;C:\Program Files (x86)\Dell\SysMgt\oma\bin;C:\j2sdk1.4.2_16-x64\bin;F:\usr\sap\B23\SYS\exe\uc\NTAMD64
    -> arg[ 27]: -Dmemory.manager=1024M
    -> arg[ 28]: -Xmx1024M
    -> arg[ 29]: -Xms1024M
    -> arg[ 30]: -DLoadBalanceRestricted=no
    -> arg[ 31]: -Djstartup.mode=JCONTROL
    -> arg[ 32]: -Djstartup.ownProcessId=4116
    -> arg[ 33]: -Djstartup.ownHardwareId=Z1382384873
    -> arg[ 34]: -Djstartup.whoami=server
    -> arg[ 35]: -Djstartup.debuggable=no
    -> arg[ 36]: -Xss2m
    -> arg[ 37]: -DSAPINFO=B23_00_server
    -> arg[ 38]: -DSAPSTART=1
    -> arg[ 39]: -DCONNECT_PORT=4600
    -> arg[ 40]: -DSAPSYSTEM=00
    -> arg[ 41]: -DSAPSYSTEMNAME=B23
    -> arg[ 42]: -DSAPMYNAME=bidq001_B23_00
    -> arg[ 43]: -DSAPPROFILE=F:\usr\sap\B23\SYS\profile\B23_DVEBMGS00_bidq001
    -> arg[ 44]: -DFRFC_FALLBACK=ON
    -> arg[ 45]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 46]: -DSAPSTARTUP=1
    -> arg[ 47]: -DSAPSYSTEM=00
    -> arg[ 48]: -DSAPSYSTEMNAME=B23
    -> arg[ 49]: -DSAPMYNAME=bidq001_B23_00
    -> arg[ 50]: -DSAPDBHOST=bidq001
    -> arg[ 51]: -Dj2ee.dbhost=bidq001
    Tue Sep 23 14:18:09 2008
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 3176] Tue Sep 23 14:18:10 2008
    [Thr 3176] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 6368] Tue Sep 23 14:18:26 2008
    [Thr 6368] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 6368] Tue Sep 23 14:18:35 2008
    [Thr 6368] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 6368] JLaunchISetClusterId: set cluster id 6587850
    [Thr 6368] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 6368] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 6696] Tue Sep 23 14:19:11 2008
    [Thr 6696] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 6696] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 6696] Tue Sep 23 14:19:12 2008
    [Thr 6696] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.engine.Compress
    [Thr 6376] Tue Sep 23 14:19:20 2008
    [Thr 6376] JHVM_RegisterNatives: registering methods in com.sap.security.core.server.vsi.service.jni.VirusScanInterface
    [Thr 6368] Tue Sep 23 14:19:41 2008
    [Thr 6368] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]
    [Thr 5460] Wed Sep 24 12:20:46 2008
    [Thr 5460] JLaunchRequestFunc: receive command:10, argument:0 from pid:5616
    [Thr 5460] JLaunchProcessCommand: caught dump stack trace
    Full thread dump Java HotSpot(TM) 64-Bit Server VM (1.4.2_16-b05 mixed mode):
    "SeedGenerator Thread" daemon prio=2 tid=0x00000000092d0900 nid=0x1b80 in Object.wait() [0x0000000072b7f000..0x0000000072b7fb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0000000015590070> (a sun.security.provider.SeedGenerator$ThreadedSeedGenerator)
         at java.lang.Object.wait(Object.java:429)
         at sun.security.provider.SeedGenerator$ThreadedSeedGenerator.run(SeedGenerator.java:282)
         - locked <0x0000000015590070> (a sun.security.provider.SeedGenerator$ThreadedSeedGenerator)
         at java.lang.Thread.run(Thread.java:534)
    "DSR_Write_Rate_Monitor: bidq001.tvse.int_B23_6587850" prio=5 tid=0x000000006de58420 nid=0x1ac0 waiting on condition [0x000000007297f000..0x000000007297fb80]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.engine.services.dsr.DSRComponentImpl0$SubmitRateMonitor.run(DSRComponentImpl0.java:1505)
    "Thread-35" prio=5 tid=0x000000006de58190 nid=0x5f0 in Object.wait() [0x000000007277f000..0x000000007277fb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0000000015590198> (a com.sap.engine.services.shell.processor.ShellWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.shell.core.ServerShellProcessor.run(ServerShellProcessor.java:118)
         - locked <0x0000000015590198> (a com.sap.engine.services.shell.processor.ShellWrapper)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-33" prio=10 tid=0x00000000092d2530 nid=0x1b6c waiting on condition [0x000000007257f000..0x000000007257fb80]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.mp.base.caching.MemoryCache$ValidationThread.run(MemoryCache.java:144)
    "Thread-32" daemon prio=10 tid=0x00000000092d1d80 nid=0x1b0c in Object.wait() [0x0000000071aff000..0x0000000071affb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0000000015590378> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <0x0000000015590378> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "JCoRequestDispatcher" daemon prio=5 tid=0x00000000092d2010 nid=0x1b08 runnable [0x00000000720bf000..0x00000000720bfb80]
         at com.sap.mw.rfc.driver.CpicDriver.nativeSAP_CMLISTEN(Native Method)
         at com.sap.mw.rfc.driver.CpicDriver.SAP_CMLISTEN(CpicDriver.java:1126)
         at com.sap.mw.rfc.driver.RfcTypeRegisterCpic.waitForRequest(RfcTypeRegisterCpic.java:593)
         at com.sap.mw.rfc.api.RfcApi.RfcWaitForCpicRequest(RfcApi.java:1261)
         at com.sap.mw.jco.MiddlewareJRfc.waitForRequest(MiddlewareJRfc.java:580)
         at com.sap.mw.jco.RequestDispatcher$DispatcherWorker.run(RequestDispatcher.java:157)
         at java.lang.Thread.run(Thread.java:534)
    "SAPEngine_CCMSCommandConsumer_0" prio=10 tid=0x00000000092d1af0 nid=0x1a90 in Object.wait() [0x0000000071cff000..0x0000000071cffb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x00000000155904f8> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.concurrent.LinkedQueue.take(LinkedQueue.java:104)
         - locked <0x00000000155904f8> (a java.lang.Object)
         at com.sapmarkets.bam.jmxadapter.CCMSCommandConsumer.run(CCMSCommandConsumer.java:38)
         at java.lang.Thread.run(Thread.java:534)
    "SAPDSR_updater" prio=10 tid=0x00000000092d15d0 nid=0x1b88 waiting on condition [0x00000000718ff000..0x00000000718ffb80]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.jdsr.writer.DsrPortUpdater.run(DsrPortUpdater.java:55)
    "SAPDSR_watcher" prio=10 tid=0x00000000092d1340 nid=0x1b78 runnable [0x00000000716ff000..0x00000000716ffb80]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
         - locked <0x0000000015590700> (a java.net.PlainSocketImpl)
         at java.net.ServerSocket.implAccept(ServerSocket.java:448)
         at java.net.ServerSocket.accept(ServerSocket.java:419)
         at com.sap.jdsr.writer.DsrListener.run(DsrListener.java:748)
    "Thread-24" prio=10 tid=0x00000000092d0e20 nid=0x1b30 in Object.wait() [0x00000000714ff000..0x00000000714ffb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0000000015590cb8> (a com.sap.jmx.provider.ProviderConnectionTimer)
         at com.sap.jmx.provider.ProviderConnectionTimer.run(ProviderConnectionTimer.java:31)
         - locked <0x0000000015590cb8> (a com.sap.jmx.provider.ProviderConnectionTimer)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-23" prio=10 tid=0x00000000092d10b0 nid=0x1ab4 in Object.wait() [0x00000000712ff000..0x00000000712ffb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0000000015590d50> (a com.sap.jmx.provider.LazyMBeanLoader)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.jmx.provider.LazyMBeanLoader.run(LazyMBeanLoader.java:133)
         - locked <0x0000000015590d50> (a com.sap.jmx.provider.LazyMBeanLoader)
         at java.lang.Thread.run(Thread.java:534)
    "_keystore_managed_system_thread_" prio=10 tid=0x00000000092d0b90 nid=0x1ab0 in Object.wait() [0x00000000710ff000..0x00000000710ffb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0000000015590e00> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.keystore.impl.security.SystemThreadWorker.run(SystemThreadWorker.java:56)
         - locked <0x0000000015590e00> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "R3RoleDataSource_UpdateThread[114603123]" daemon prio=10 tid=0x00000000092d0670 nid=0x1af4 waiting on condition [0x0000000070eff000..0x0000000070effb80]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.security.core.persistence.datasource.imp.R3RoleDataSource$1.run(R3RoleDataSource.java:661)
         at java.lang.Thread.run(Thread.java:534)
    "JarmCondense" daemon prio=10 tid=0x00000000092d03e0 nid=0x1af8 in Object.wait() [0x000000006cb7f000..0x000000006cb7fb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0000000015590f30> (a java.lang.Object)
         at com.sap.util.monitor.jarm.CondenseThread.threadShouldContinue(CondenseThread.java:217)
         - locked <0x0000000015590f30> (a java.lang.Object)
         at com.sap.util.monitor.jarm.CondenseThread.run(CondenseThread.java:196)
         at java.lang.Thread.run(Thread.java:534)
    "JCO.TimeoutChecker" daemon prio=10 tid=0x00000000092d0150 nid=0x1b60 in Object.wait() [0x000000006c80f000..0x000000006c80fb80]
         at java.lang.Object.wait(Native Method)
         at com.sap.mw.jco.JCO$PoolManager$TimeoutChecker.run(JCO.java:5672)
         - locked <0x0000000015590fd0> (a com.sap.mw.jco.util.ObjectList)
         at java.lang.Thread.run(Thread.java:534)
    "ConnectionSetCleaner Thread (UNMANAGED)." prio=10 tid=0x00000000092cf9a0 nid=0x1b8c in Object.wait() [0x000000006c60f000..0x000000006c60fb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0000000015591028> (a com.sap.engine.services.connector.jca.ConnectionHashSet$ConnectionSetCleaner)
         at com.sap.engine.services.connector.jca.ConnectionHashSet$ConnectionSetCleaner.run(ConnectionHashSet.java:682)
         - locked <0x0000000015591028> (a com.sap.engine.services.connector.jca.ConnectionHashSet$ConnectionSetCleaner)
    "SAPEngine_TREXRefreshCache_0" prio=10 tid=0x00000000092cf710 nid=0x196c waiting on condition [0x000000006a40f000..0x000000006a40fb80]
         at java.lang.Thread.sleep(Native Method)
         at com.sapportals.trex.util.cache.CacheFactory$RefreshThread.run(CacheFactory.java:522)
    "SAPEngine_System_Thread[impl:5]_87" prio=5 tid=0x00000000092cf480 nid=0x894 in Object.wait() [0x000000006a20f000..0x000000006a20fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_86" prio=5 tid=0x00000000092cf1f0 nid=0x68c in Object.wait() [0x000000006a00f000..0x000000006a00fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_85" prio=5 tid=0x00000000092cef60 nid=0x61c in Object.wait() [0x0000000069e0f000..0x0000000069e0fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_84" prio=5 tid=0x00000000092cecd0 nid=0x270 in Object.wait() [0x0000000069c0f000..0x0000000069c0fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_83" prio=5 tid=0x00000000092cea40 nid=0x1b18 in Object.wait() [0x0000000069a0f000..0x0000000069a0fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_82" prio=5 tid=0x0000000008b92530 nid=0x1afc in Object.wait() [0x000000006980f000..0x000000006980fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_81" prio=5 tid=0x0000000008b922a0 nid=0x4b8 in Object.wait() [0x000000006960f000..0x000000006960fb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x000000001af2a070> (a com.sap.engine.services.log_configurator.archive.Buffer)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.log_configurator.archive.Buffer.getTask(Buffer.java:38)
         - locked <0x000000001af2a070> (a com.sap.engine.services.log_configurator.archive.Buffer)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:37)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_80" prio=5 tid=0x0000000008b92010 nid=0x1ad0 in Object.wait() [0x000000006940f000..0x000000006940fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_79" prio=5 tid=0x0000000008b91d80 nid=0x1aac in Object.wait() [0x000000006920f000..0x000000006920fb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x00000000155910b0> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.jms.server.destinationcontainer.AgentThreadSystem.run(AgentThreadSystem.java:148)
         - locked <0x00000000155910b0> (a java.lang.Object)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_78" prio=5 tid=0x0000000008b91af0 nid=0x1b00 in Object.wait() [0x000000006900f000..0x000000006900fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Timeout Service Internal Thread" prio=5 tid=0x0000000008b91860 nid=0x1448 in Object.wait() [0x0000000068e0f000..0x0000000068e0fb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x000000001af2a3f8> (a java.lang.Object)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.multiThreadRun(TimeoutManagerImpl.java:483)
         - locked <0x000000001af2a3f8> (a java.lang.Object)
         at com.sap.engine.services.timeout.TimeoutManagerRunner.run(TimeoutManagerRunner.java:20)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_76" prio=5 tid=0x0000000008b915d0 nid=0x1960 in Object.wait() [0x0000000068c0f000..0x0000000068c0fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Timeout Service Integrity Watcher Thread" prio=10 tid=0x0000000008b91340 nid=0x1ab8 in Object.wait() [0x0000000068a0f000..0x0000000068a0fb80]
         at java.lang.Object.wait(Native Method)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x000000001af2a6a0> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_74" prio=5 tid=0x0000000008b910b0 nid=0x1a9c in Object.wait() [0x000000006880f000..0x000000006880fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_73" prio=5 tid=0x0000000008b90e20 nid=0x1aa0 in Object.wait() [0x000000006860f000..0x000000006860fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_72" prio=5 tid=0x0000000008b90b90 nid=0x1a94 in Object.wait() [0x000000006840f000..0x000000006840fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Timeout Service Synchronous Internal Thread" prio=5 tid=0x0000000008b90900 nid=0x1a98 in Object.wait() [0x000000006820f000..0x000000006820fb80]
         at java.lang.Object.wait(Native Method)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.singleThreadRun(TimeoutManagerImpl.java:596)
         - locked <0x000000001af2aa40> (a java.lang.Object)
         at com.sap.engine.services.timeout.TimeoutManagerRunner.run(TimeoutManagerRunner.java:18)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_70" prio=5 tid=0x0000000008b90670 nid=0x1aa8 in Object.wait() [0x000000006800f000..0x000000006800fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Timeout Service Integrity Watcher Thread" prio=10 tid=0x0000000008b903e0 nid=0x19b8 in Object.wait() [0x0000000067e0f000..0x0000000067e0fb80]
         at java.lang.Object.wait(Native Method)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x000000001af2ac60> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_68" prio=5 tid=0x0000000008b90150 nid=0x1a04 in Object.wait() [0x0000000067c0f000..0x0000000067c0fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_67" prio=5 tid=0x0000000008b8fec0 nid=0x18dc in Object.wait() [0x0000000067a0f000..0x0000000067a0fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_66" prio=5 tid=0x0000000008b8fc30 nid=0x19e4 in Object.wait() [0x000000006780f000..0x000000006780fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_65" prio=5 tid=0x0000000008b8f9a0 nid=0x1a78 in Object.wait() [0x000000006760f000..0x000000006760fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_64" prio=5 tid=0x0000000008b8f710 nid=0x1a38 in Object.wait() [0x000000006740f000..0x000000006740fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_63" prio=5 tid=0x0000000008b8f480 nid=0x1a60 in Object.wait() [0x000000006720f000..0x000000006720fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_62" prio=5 tid=0x0000000008b8f1f0 nid=0x1a64 in Object.wait() [0x000000006700f000..0x000000006700fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_61" prio=5 tid=0x0000000008b8ef60 nid=0x1a8c in Object.wait() [0x0000000066e0f000..0x0000000066e0fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_60" prio=5 tid=0x0000000008b8ecd0 nid=0x19f8 in Object.wait() [0x0000000066c0f000..0x0000000066c0fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_59" prio=5 tid=0x0000000008b8ea40 nid=0x19dc in Object.wait() [0x0000000066a0f000..0x0000000066a0fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_58" prio=5 tid=0x0000000008656ce0 nid=0xdbc in Object.wait() [0x000000006680f000..0x000000006680fb80]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x0000000015591210> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x0000000015591210> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
         at com.sap.engine.lib.util.cache.CacheGroup.run(CacheGroup.java:76)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_57" prio=5 tid=0x0000000008656a50 nid=0x1a0c in Object.wait() [0x000000006660f000..0x000000006660fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_56" prio=5 tid=0x00000000086567c0 nid=0x1a28 in Object.wait() [0x000000006640f000..0x000000006640fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_55" prio=5 tid=0x0000000008656530 nid=0x1a54 in Object.wait() [0x000000006620f000..0x000000006620fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_54" prio=5 tid=0x00000000086562a0 nid=0x1a4c in Object.wait() [0x000000006600f000..0x000000006600fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_53" prio=5 tid=0x0000000008656010 nid=0x1a48 in Object.wait() [0x0000000065e0f000..0x0000000065e0fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_52" prio=5 tid=0x0000000008655d80 nid=0x18e8 in Object.wait() [0x0000000065c0f000..0x0000000065c0fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_51" prio=5 tid=0x0000000008655af0 nid=0x1a68 in Object.wait() [0x0000000065a0f000..0x0000000065a0fb80]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x000000001ab100a8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_50" prio=5 tid=0x0000000008655860 nid=0x1a74 in Object.wait() [0x000000006580f000..0x000000006580fb80]

    Could you please send the default trace.Default trace will contain the detailed description of the error message , but you will have to search a lot in that .The trace file is BIG!!!
    This trace can be found in .../DV**/j2ee/cluster/server0/log.
    Check for the latest File.
    Regards,
    Yogesh

  • J2EE SERVER 0 not running after ADS Update

    Hi Experts,
    I have updated ADS patch 10 in our server, but ADS update terminated after that J2ee server not comming up. Please find the Log file.
    trc file: "D:\usr\sap\MID\DVEBMGS01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID17582250
    pid         : 2588
    system name : MID
    system nr.  : 01
    started at  : Tue Dec 22 13:58:33 2009
    arguments       :
           arg[00] : D:\usr\sap\MID\DVEBMGS01\exe\jlaunch.exe
           arg[01] : pf=D:\usr\sap\MID\SYS\profile\MID_DVEBMGS01_mvglqas
           arg[02] : -DSAPINFO=MID_01_server
           arg[03] : pf=D:\usr\sap\MID\SYS\profile\MID_DVEBMGS01_mvglqas
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=1201
           arg[06] : -DSAPSYSTEM=01
           arg[07] : -DSAPSYSTEMNAME=MID
           arg[08] : -DSAPMYNAME=mvglqas_MID_01
           arg[09] : -DSAPPROFILE=D:\usr\sap\MID\SYS\profile\MID_DVEBMGS01_mvglqas
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 2540] Tue Dec 22 13:58:33 2009
    [Thr 2540] *** WARNING => INFO: Unknown property [instance.box.number=MIDDVEBMGS01mvglqas] [jstartxx.c   841]
    [Thr 2540] *** WARNING => INFO: Unknown property [instance.en.host=mvglqas] [jstartxx.c   841]
    [Thr 2540] *** WARNING => INFO: Unknown property [instance.en.port=3202] [jstartxx.c   841]
    [Thr 2540] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties]
    -> ms host    : mvglqas
    -> ms port    : 3902
    -> OS libs    : D:\usr\sap\MID\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : mvglqas
    -> ms port    : 3902
    -> os libs    : D:\usr\sap\MID\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID17582200 : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID17582250 : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID17582200           : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID17582250           : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\instance.properties
    [Thr 2540] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 2540] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 2560] JLaunchRequestFunc: Thread 2560 started as listener thread for np messages.
    [Thr 704] WaitSyncSemThread: Thread 704 started as semaphore monitor thread.
    [Thr 2540] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 2540] CPIC (version=700.2006.09.13)
    [Thr 2540] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13-x64
    [Thr 2540] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\MID\DVEBMGS01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID17582250]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13-x64
    -> java parameters    : -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=256M -XX:NewSize=171M -XX:MaxNewSize=171M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine. services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 1024M
    -> init heap size     : 1024M
    -> root path          : D:\usr\sap\MID\DVEBMGS01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : D:\usr\sap\MID\DVEBMGS01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\MID\DVEBMGS01\exe\jstartup.jar;D:\usr\sap\MID\DVEBMGS01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 2540] JLaunchISetDebugMode: set debug mode [no]
    [Thr 5060] JLaunchIStartFunc: Thread 5060 started as Java VM thread.
    [Thr 5060] *** WARNING => Using non-standard VM option 'services.ts.jts.ots.PortableInterceptor.JTSInitializer' [jhvmxx.c     1007]
    [Thr 5060] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -XX:MaxPermSize=256M
    -> arg[  5]: -XX:PermSize=256M
    -> arg[  6]: -XX:NewSize=171M
    -> arg[  7]: -XX:MaxNewSize=171M
    -> arg[  8]: -XX:+DisableExplicitGC
    -> arg[  9]: -verbose:gc
    -> arg[ 10]: -Xloggc:GC.log
    -> arg[ 11]: -XX:+PrintGCDetails
    -> arg[ 12]: -XX:+PrintGCTimeStamps
    -> arg[ 13]: -Djava.awt.headless=true
    -> arg[ 14]: -Dsun.io.useCanonCaches=false
    -> arg[ 15]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 16]: -XX:SurvivorRatio=2
    -> arg[ 17]: -XX:TargetSurvivorRatio=90
    -> arg[ 18]: -Djava.security.policy=./java.policy
    -> arg[ 19]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 20]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 21]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 22]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.
    -> arg[ 24]: services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 25]: -Dsys.global.dir=D:\usr\sap\MID\SYS\global
    -> arg[ 26]: -Dapplication.home=D:\usr\sap\MID\DVEBMGS01\exe
    -> arg[ 27]: -Djava.class.path=D:\usr\sap\MID\DVEBMGS01\exe\jstartup.jar;D:\usr\sap\MID\DVEBMGS01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 28]: -Djava.library.path=C:\j2sdk1.4.2_13-x64\jre\bin\server;C:\j2sdk1.4.2_13-x64\jre\bin;C:\j2sdk1.4.2_13-x64\bin;D:\usr\sap\MID\DVEBMGS01\j2ee\os_libs;C:\oracle\MVS\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\;D:\usr\sap\MID\SYS\exe\uc\NTAMD64\sappfpar.exe;D:\usr\sap\MID\SYS\exe\uc\NTAMD64
    -> arg[ 29]: -Dmemory.manager=1024M
    -> arg[ 30]: -Xmx1024M
    -> arg[ 31]: -Xms1024M
    -> arg[ 32]: -DLoadBalanceRestricted=no
    -> arg[ 33]: -Djstartup.mode=JCONTROL
    -> arg[ 34]: -Djstartup.ownProcessId=2588
    -> arg[ 35]: -Djstartup.ownHardwareId=T1140933696
    -> arg[ 36]: -Djstartup.whoami=server
    -> arg[ 37]: -Djstartup.debuggable=no
    -> arg[ 38]: -Xss2m
    -> arg[ 39]: -DSAPINFO=MID_01_server
    -> arg[ 40]: -DSAPSTART=1
    -> arg[ 41]: -DCONNECT_PORT=1201
    -> arg[ 42]: -DSAPSYSTEM=01
    -> arg[ 43]: -DSAPSYSTEMNAME=MID
    -> arg[ 44]: -DSAPMYNAME=mvglqas_MID_01
    -> arg[ 45]: -DSAPPROFILE=D:\usr\sap\MID\SYS\profile\MID_DVEBMGS01_mvglqas
    -> arg[ 46]: -DFRFC_FALLBACK=ON
    -> arg[ 47]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 48]: -DSAPSTARTUP=1
    -> arg[ 49]: -DSAPSYSTEM=01
    -> arg[ 50]: -DSAPSYSTEMNAME=MID
    -> arg[ 51]: -DSAPMYNAME=mvglqas_MID_01
    -> arg[ 52]: -DSAPDBHOST=mvglqas
    -> arg[ 53]: -Dj2ee.dbhost=mvglqas
    Unrecognized option: services.ts.jts.ots.PortableInterceptor.JTSInitializer
    [Thr 5060] *** ERROR => JHVM_LoadJavaVM: Cannot create Java VM (rc=-1) [jhvmxx.c     542]
    [Thr 5060] *** ERROR => Cannot load Java VM (server) (rc=-1) [jlnchxxi.c   752]
    [Thr 5060] **********************************************************************
    ERROR => Java VM initialization failed.
    Please see SAP Note 943602 , section 'Java VM initialization issues'
    for additional information and trouble shooting.
    [Thr 5060] JLaunchCloseProgram: good bye (exitcode = -1)
    Thanks  in Advance
    Jose H

    Hi Markus,
    I have changed the heap size but the status is same.
    when i am trying to open the Visula Admin
    "Default" its shows
    "Unable to lookup connection default
    http://<host>:8101/msgserver/text/logon return empty list of connection parameter
    I ihave created the new connection with port 50104 user name J2EE_ADMIN and give the password
    I got the other error End of stream reached unexpectly during input from socket [addr=/local ip, port=50104,localport=2485]
    find the trace file
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[./log/defaultTrace.trc]/>
    <!PATTERN[defaultTrace.trc]/>
    <!FORMATTER[com.sap.tc.logging.ListFormatter]/>
    <!ENCODING[Cp1252]/>
    <!FILESET[0, 20, 10485760]/>
    <!PREVIOUSFILE[defaultTrace.19.trc]/>
    <!NEXTFILE[defaultTrace.1.trc]/>
    <!LOGHEADER[END]/>
    #1.5#001AA00F0673000000000015000000FC000470C650D48281#1249896968781#System.err##System.err#######Thread[Thread-1,5,main]##0#0#Error##Plain###com.sap.engine.frame.core.configuration.ConfigurationLockedException: Cannot lock Configuration; it is already locked.
         at com.sap.engine.core.configuration.impl.ServerEnvironment.addLock(ServerEnvironment.java:316)
         at com.sap.engine.core.configuration.impl.ServerEnvironment.addLock(ServerEnvironment.java:340)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.openConfiguration(ConfigurationCache.java:756)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:734)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:693)
         at com.sap.engine.core.cache.impl.spi.storage.DBStorage.<init>(DBStorage.java:64)
         at com.sap.engine.core.cache.impl.CacheManagerImpl.init(CacheManagerImpl.java:223)
         at com.sap.engine.core.Framework.loadSingleManager(Framework.java:560)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:254)
         at com.sap.engine.core.Framework.start(Framework.java:188)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.boot.FrameThread.run(FrameThread.java:61)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: com.sap.engine.frame.core.locking.LockException: Cannot lock [2009081015060876500000mvglqas.....................17582250, !J2EE_CONFIGURATION_MANAGER, 94d735ee/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@, X]; it is in use by another owner. The lock collision occurred with user <internal>.
         at com.sap.engine.core.locking.impl3.LockingManagerImpl.lockInternal(LockingManagerImpl.java:257)
         at com.sap.engine.core.locking.AbstractLockingManagerImpl.lock(AbstractLockingManagerImpl.java:421)
         at com.sap.engine.core.locking.AbstractLockingManagerImpl.lock(AbstractLockingManagerImpl.java:441)
         at com.sap.engine.core.locking.ServerInternalLockingImpl.lock(ServerInternalLockingImpl.java:42)
         at com.sap.engine.core.configuration.impl.ServerEnvironment.addLock(ServerEnvironment.java:312)
         ... 15 more
    #1.5#001AA00F0673002200000000000000FC000470C6520CD509#1249896989250#com.sap.caf.um.metadata.imp.MetaDataTools##com.sap.caf.um.metadata.imp.MetaDataTools.MetaDataTools()#######SAPEngine_System_Thread[impl:5]_46##0#0#Info#1#/System/Server#Plain###sap.com caf/um/metadata/imp MAIN_APL70VAL_C 935484#
    #1.5#001AA00F0673002B00000000000000FC000470C652194CAA#1249896990078#com.sap.caf.um.relgroups.imp.persistence.DataSource##com.sap.caf.um.relgroups.imp.persistence.DataSource.DataSource()#######SAPEngine_System_Thread[impl:5]_20##0#0#Info#1#/System/Server#Plain###sap.com caf/um/relgroups/imp MAIN_APL70VAL_C 935567#
    #1.5#001AA00F0673002C00000001000000FC000470C652196EC5#1249896990078#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.RFCRuntimeInterfaceImpl.newProperties(int prcs, int conn)#######SAPEngine_System_Thread[impl:5]_36##0#0#Error#1#/System/Server#Java###enter  newProperties()##
    #1.5#001AA00F0673002B00000002000000FC000470C6522C2655#1249896991328#com.sap.caf.um.relgroups.imp.principals.RelGroupFactory##com.sap.caf.um.relgroups.imp.principals.RelGroupFactory.RelGroupFactory()#######SAPEngine_System_Thread[impl:5]_20##0#0#Info#1#/System/Server#Plain###sap.com caf/um/relgroups/imp MAIN_APL70VAL_C 935567#
    #1.5#001AA00F0673003800000000000000FC000470C6522E45DE#1249896991468#com.sap.engine.services.iiop.server##com.sap.engine.services.iiop.server.PICurrentImpl#######SAPEngine_System_Thread[impl:5]_65##0#0#Error##Plain###
    java.lang.NullPointerException
         at com.sap.engine.services.iiop.internal.interceptors.PICurrentImpl.getThreadSlotTable(PICurrentImpl.java:85)
         at com.sap.engine.services.iiop.internal.giop.ClientRequest.<init>(ClientRequest.java:66)
         at com.sap.engine.services.iiop.server.portable.Delegate_1_2$ClientRequest_1_2.<init>(Delegate_1_2.java:41)
         at com.sap.engine.services.iiop.server.portable.Delegate_1_2.createRequestLocal(Delegate_1_2.java:32)
         at com.sap.engine.services.iiop.server.portable.Delegate.createRequest(Delegate.java:370)
         at com.sap.engine.services.iiop.server.portable.Delegate.request(Delegate.java:170)
         at org.omg.CORBA.portable.ObjectImpl._request(ObjectImpl.java:431)
         at com.adobe.service._FontManagerStub.getAdobeServerFontDirectory(_FontManagerStub.java:18)
         at com.adobe.document.XMLFormService.getFontDirectories(Unknown Source)
         at com.adobe.document.XMLFormService.onStartService(Unknown Source)
         at com.adobe.service.Service.start(Service.java:387)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:214)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:144)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    Looking for your urgetnt response
    Thanks & Regards
    Jose H

  • J2EE Server does not start

    Hi,
    I get the following trace when I try to start a newly installed J2EE Server. (sp11).
    The only errors I see are :
    [Thr 2108] *** ERROR => Invalid property value [system.id/0] [jstartxx.c   789]
    [Thr 2108] *** ERROR => Invalid property value [box.number/J2EJC00PALN00404448A] [jstartxx.c   789]
    Appreciate any help
    trc file: "C:\usr\sap\J2E\JC00\work\dev_jcontrol", trc level: 1, release: "640"
    node name   : jcontrol
    pid         : 3852
    system name : J2E
    system nr.  : 00
    started at  : Tue Sep 13 11:09:34 2005
    arguments   :
        arg[00] : C:\usr\sap\J2E\JC00\j2ee\os_libs\jcontrol.exe
        arg[01] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    [Thr 2108] Tue Sep 13 11:09:34 2005
    [Thr 2108] *** ERROR => Invalid property value [system.id/0] [jstartxx.c   789]
    [Thr 2108] *** ERROR => Invalid property value [box.number/J2EJC00PALN00404448A] [jstartxx.c   789]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties;C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : PALN00404448A
    -> ms port    : 3601
    -> OS libs    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> files [01] : C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : PALN00404448A
    -> ms port    : 3601
    -> os libs    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap_ID5336850  : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID5336800  : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID5336850            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] ID5336800            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] sdm                  : C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    [Thr 2108] Tue Sep 13 11:09:35 2005
    [Thr 2108] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 2108] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [bootstrap]
    -> node name       : bootstrap
    -> node type       : bootstrap
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 512M
    -> root path       : C:\usr\sap\J2E\JC00\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0053368
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> arg[02] = -DSAPINFO=J2E_00_bootstrap
    -> arg[03] = -file=C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3852
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC00\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC00\work\std_bootstrap.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC00\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    [Thr 2108] Tue Sep 13 11:18:11 2005
    [Thr 2108] JControlExecuteBootstrap: read instance values after global bootstrap
    [Thr 2108] *** ERROR => Invalid property value [box.number/J2EJC00PALN00404448A] [jstartxx.c   789]
    [Thr 2108] *** ERROR => Invalid property value [system.id/0] [jstartxx.c   789]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties;C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : PALN00404448A
    -> ms port    : 3601
    -> OS libs    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    [Thr 2108] JControlExecuteBootstrap: enumerate the nodes after global bootstrap
    Used property files
    -> files [00] : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> files [01] : C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : PALN00404448A
    -> ms port    : 3601
    -> os libs    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID5336800  : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID5336850  : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID5336800            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] ID5336850            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] sdm                  : C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    [Thr 2108] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID5336800]
    [Thr 2108] INFO: Invalid property value [JLaunchParameters/]
    [Thr 2108] [Node: dispatcher bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [bootstrap_ID5336800]
    -> node name       : dispatcher bootstrap
    -> node type       : bootstrap
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 170M
    -> root path       : C:\usr\sap\J2E\JC00\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID005336800
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> arg[02] = -DSAPINFO=J2E_00_bootstrap
    -> arg[03] = -file=C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap_ID5336800
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3852
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC00\work\jvm_bootstrap_ID5336800.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC00\work\std_bootstrap_ID5336800.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC00\work\dev_bootstrap_ID5336800
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    [Thr 2108] Tue Sep 13 11:19:24 2005
    [Thr 2108] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID5336850]
    [Thr 2108] INFO: Invalid property value [JLaunchParameters/]
    [Thr 2108] [Node: server0 bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [bootstrap_ID5336850]
    -> node name       : server0 bootstrap
    -> node type       : bootstrap
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 512M
    -> root path       : C:\usr\sap\J2E\JC00\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID005336850
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> arg[02] = -DSAPINFO=J2E_00_bootstrap
    -> arg[03] = -file=C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap_ID5336850
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3852
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC00\work\jvm_bootstrap_ID5336850.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC00\work\std_bootstrap_ID5336850.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC00\work\dev_bootstrap_ID5336850
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    [Thr 2108] Tue Sep 13 11:25:08 2005
    [Thr 2108] JControlIBuildProcessList: Maximum error count is set to 4
    [Thr 2108] INFO: Invalid property value [JLaunchParameters/]
    [Thr 2108] [Node: dispatcher] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    [Thr 1000] JControlRequestFunc: Thread 1000 started as listener thread for np messages.
    JStartupIReadSection: read node properties [ID5336800]
    -> node name       : dispatcher
    -> node type       : dispatcher
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Djco.jarm=1 -Drdbms.driverLocation=c:/sapdb/programs/runtime/jar/sapdbc.jar -Dsys.global.dir=C:/usr/sap/J2E/SYS/global -XX:NewSize=28m -XX:MaxNewSize=28m -XX:+DisableExplicitGC
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 170M
    -> init heap size  : 170M
    -> root path       : C:\usr\sap\J2E\JC00\j2ee\cluster\dispatcher
    -> class path      : .\bin\boot\boot.jar;.\bin\system\bytecode.jar;.
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.boot.Start
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      :
    -> debuggable      : no
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    [Thr 2108] INFO: Invalid property value [JLaunchParameters/]
    [Thr 2108] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [ID5336850]
    -> node name       : server0
    -> node type       : server
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer -Djco.jarm=1 -Dsun.io.useCanonCaches=false -Djava.awt.headless=true -verbose:gc -Drdbms.driverLocation=c:/sapdb/programs/runtime/jar/sapdbc.jar -Dsys.global.dir=C:/usr/sap/J2E/SYS/global -XX:NewSize=85m -XX:MaxNewSize=85m -XX:MaxPermSize=192m -XX:PermSize=192m -XX:DisableExplicitGC -XX:UseParNewGC -XX:PrintGCDetails -XX:PrintGCTimeStamps -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 512M
    -> init heap size  : 512M
    -> root path       : C:\usr\sap\J2E\JC00\j2ee\cluster\server0
    -> class path      : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.boot.Start
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      :
    -> debuggable      : no
    -> debug mode      : no
    -> debug port      : 50021
    -> shutdown timeout: 120000
    [Thr 2108] Tue Sep 13 11:25:09 2005
    [Thr 2108] [Node: SDM] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [sdm]
    -> node name       : SDM
    -> node type       : sdm
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters :
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 128M
    -> root path       : C:\usr\sap\J2E\JC00\SDM\program
    -> class path      : C:\usr\sap\J2E\JC00\SDM\program\bin\SDM.jar
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : SDMInternal
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> shutdown class  : com.sap.sdm.jstartup.shutdown.InternalShutDown
    -> parameters      : server sdmhome=C:\usr\sap/J2E/JC00/SDM/program
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    [Thr 2108] Tue Sep 13 11:25:10 2005
    [Thr 2108] JControlMSConnect: attached to message server (PALN00404448A/3601)
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> arg[02] = -DSAPINFO=J2E_00_dispatcher
    -> arg[03] = -file=C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=ID5336800
    -> arg[05] = -nodeId=0
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3852
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC00\work\jvm_dispatcher.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC00\work\std_dispatcher.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC00\work\dev_dispatcher
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    [Thr 2876] JControlMSMessageFunc: Thread 2876 started as listener thread for ms messages.
    [Thr 2108] JControlICheckProcessList: process dispatcher started (PID:3248)
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> arg[02] = -DSAPINFO=J2E_00_server
    -> arg[03] = -file=C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=ID5336850
    -> arg[05] = -nodeId=1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3852
    -> arg[07] = -locOutFile=C:\usr\sap\J2E\JC00\work\dev_server0
    -> arg[08] = -mode=JCONTROL
    -> arg[09] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    [Thr 2108] JControlICheckProcessList: process server0 started (PID:4084)
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> arg[02] = -DSAPINFO=J2E_00_sdm
    -> arg[03] = -file=C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    -> arg[04] = -nodeName=sdm
    -> arg[05] = -nodeId=2
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3852
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC00\work\jvm_sdm.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC00\work\std_sdm.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC00\work\dev_sdm
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    [Thr 2108] JControlICheckProcessList: process SDM started (PID:3776)
    [Thr 2876] Tue Sep 13 11:25:32 2005
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] Tue Sep 13 11:25:44 2005
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] Tue Sep 13 11:27:18 2005
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server

    Hi,
    I get the following trace when I try to start a newly installed J2EE Server. (sp11).
    The only errors I see are :
    [Thr 2108] *** ERROR => Invalid property value [system.id/0] [jstartxx.c   789]
    [Thr 2108] *** ERROR => Invalid property value [box.number/J2EJC00PALN00404448A] [jstartxx.c   789]
    Appreciate any help
    trc file: "C:\usr\sap\J2E\JC00\work\dev_jcontrol", trc level: 1, release: "640"
    node name   : jcontrol
    pid         : 3852
    system name : J2E
    system nr.  : 00
    started at  : Tue Sep 13 11:09:34 2005
    arguments   :
        arg[00] : C:\usr\sap\J2E\JC00\j2ee\os_libs\jcontrol.exe
        arg[01] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    [Thr 2108] Tue Sep 13 11:09:34 2005
    [Thr 2108] *** ERROR => Invalid property value [system.id/0] [jstartxx.c   789]
    [Thr 2108] *** ERROR => Invalid property value [box.number/J2EJC00PALN00404448A] [jstartxx.c   789]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties;C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : PALN00404448A
    -> ms port    : 3601
    -> OS libs    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> files [01] : C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : PALN00404448A
    -> ms port    : 3601
    -> os libs    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap_ID5336850  : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID5336800  : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID5336850            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] ID5336800            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] sdm                  : C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    [Thr 2108] Tue Sep 13 11:09:35 2005
    [Thr 2108] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 2108] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [bootstrap]
    -> node name       : bootstrap
    -> node type       : bootstrap
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 512M
    -> root path       : C:\usr\sap\J2E\JC00\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0053368
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> arg[02] = -DSAPINFO=J2E_00_bootstrap
    -> arg[03] = -file=C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3852
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC00\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC00\work\std_bootstrap.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC00\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    [Thr 2108] Tue Sep 13 11:18:11 2005
    [Thr 2108] JControlExecuteBootstrap: read instance values after global bootstrap
    [Thr 2108] *** ERROR => Invalid property value [box.number/J2EJC00PALN00404448A] [jstartxx.c   789]
    [Thr 2108] *** ERROR => Invalid property value [system.id/0] [jstartxx.c   789]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties;C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : PALN00404448A
    -> ms port    : 3601
    -> OS libs    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    [Thr 2108] JControlExecuteBootstrap: enumerate the nodes after global bootstrap
    Used property files
    -> files [00] : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> files [01] : C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : PALN00404448A
    -> ms port    : 3601
    -> os libs    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID5336800  : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID5336850  : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID5336800            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] ID5336850            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] sdm                  : C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    [Thr 2108] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID5336800]
    [Thr 2108] INFO: Invalid property value [JLaunchParameters/]
    [Thr 2108] [Node: dispatcher bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [bootstrap_ID5336800]
    -> node name       : dispatcher bootstrap
    -> node type       : bootstrap
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 170M
    -> root path       : C:\usr\sap\J2E\JC00\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID005336800
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> arg[02] = -DSAPINFO=J2E_00_bootstrap
    -> arg[03] = -file=C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap_ID5336800
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3852
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC00\work\jvm_bootstrap_ID5336800.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC00\work\std_bootstrap_ID5336800.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC00\work\dev_bootstrap_ID5336800
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    [Thr 2108] Tue Sep 13 11:19:24 2005
    [Thr 2108] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID5336850]
    [Thr 2108] INFO: Invalid property value [JLaunchParameters/]
    [Thr 2108] [Node: server0 bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [bootstrap_ID5336850]
    -> node name       : server0 bootstrap
    -> node type       : bootstrap
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 512M
    -> root path       : C:\usr\sap\J2E\JC00\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID005336850
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> arg[02] = -DSAPINFO=J2E_00_bootstrap
    -> arg[03] = -file=C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap_ID5336850
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3852
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC00\work\jvm_bootstrap_ID5336850.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC00\work\std_bootstrap_ID5336850.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC00\work\dev_bootstrap_ID5336850
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    [Thr 2108] Tue Sep 13 11:25:08 2005
    [Thr 2108] JControlIBuildProcessList: Maximum error count is set to 4
    [Thr 2108] INFO: Invalid property value [JLaunchParameters/]
    [Thr 2108] [Node: dispatcher] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    [Thr 1000] JControlRequestFunc: Thread 1000 started as listener thread for np messages.
    JStartupIReadSection: read node properties [ID5336800]
    -> node name       : dispatcher
    -> node type       : dispatcher
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Djco.jarm=1 -Drdbms.driverLocation=c:/sapdb/programs/runtime/jar/sapdbc.jar -Dsys.global.dir=C:/usr/sap/J2E/SYS/global -XX:NewSize=28m -XX:MaxNewSize=28m -XX:+DisableExplicitGC
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 170M
    -> init heap size  : 170M
    -> root path       : C:\usr\sap\J2E\JC00\j2ee\cluster\dispatcher
    -> class path      : .\bin\boot\boot.jar;.\bin\system\bytecode.jar;.
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.boot.Start
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      :
    -> debuggable      : no
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    [Thr 2108] INFO: Invalid property value [JLaunchParameters/]
    [Thr 2108] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [ID5336850]
    -> node name       : server0
    -> node type       : server
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer -Djco.jarm=1 -Dsun.io.useCanonCaches=false -Djava.awt.headless=true -verbose:gc -Drdbms.driverLocation=c:/sapdb/programs/runtime/jar/sapdbc.jar -Dsys.global.dir=C:/usr/sap/J2E/SYS/global -XX:NewSize=85m -XX:MaxNewSize=85m -XX:MaxPermSize=192m -XX:PermSize=192m -XX:DisableExplicitGC -XX:UseParNewGC -XX:PrintGCDetails -XX:PrintGCTimeStamps -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 512M
    -> init heap size  : 512M
    -> root path       : C:\usr\sap\J2E\JC00\j2ee\cluster\server0
    -> class path      : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.boot.Start
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      :
    -> debuggable      : no
    -> debug mode      : no
    -> debug port      : 50021
    -> shutdown timeout: 120000
    [Thr 2108] Tue Sep 13 11:25:09 2005
    [Thr 2108] [Node: SDM] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [sdm]
    -> node name       : SDM
    -> node type       : sdm
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters :
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 128M
    -> root path       : C:\usr\sap\J2E\JC00\SDM\program
    -> class path      : C:\usr\sap\J2E\JC00\SDM\program\bin\SDM.jar
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : SDMInternal
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> shutdown class  : com.sap.sdm.jstartup.shutdown.InternalShutDown
    -> parameters      : server sdmhome=C:\usr\sap/J2E/JC00/SDM/program
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    [Thr 2108] Tue Sep 13 11:25:10 2005
    [Thr 2108] JControlMSConnect: attached to message server (PALN00404448A/3601)
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> arg[02] = -DSAPINFO=J2E_00_dispatcher
    -> arg[03] = -file=C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=ID5336800
    -> arg[05] = -nodeId=0
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3852
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC00\work\jvm_dispatcher.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC00\work\std_dispatcher.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC00\work\dev_dispatcher
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    [Thr 2876] JControlMSMessageFunc: Thread 2876 started as listener thread for ms messages.
    [Thr 2108] JControlICheckProcessList: process dispatcher started (PID:3248)
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> arg[02] = -DSAPINFO=J2E_00_server
    -> arg[03] = -file=C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=ID5336850
    -> arg[05] = -nodeId=1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3852
    -> arg[07] = -locOutFile=C:\usr\sap\J2E\JC00\work\dev_server0
    -> arg[08] = -mode=JCONTROL
    -> arg[09] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    [Thr 2108] JControlICheckProcessList: process server0 started (PID:4084)
    JStartupStartJLaunch: program = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> arg[02] = -DSAPINFO=J2E_00_sdm
    -> arg[03] = -file=C:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    -> arg[04] = -nodeName=sdm
    -> arg[05] = -nodeId=2
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_3852
    -> arg[07] = -jvmOutFile=C:\usr\sap\J2E\JC00\work\jvm_sdm.out
    -> arg[08] = -stdOutFile=C:\usr\sap\J2E\JC00\work\std_sdm.out
    -> arg[09] = -locOutFile=C:\usr\sap\J2E\JC00\work\dev_sdm
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_PALN00404448A
    -> lib path = PATH=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    -> exe path = PATH=C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\apache-ant-1.6.3\bin;C:\usr\sap\Python\.;C:\j2sdk1.4.2_06\bin;C:\PROGRA1\SECUDE\SECUDE1;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\ATI Technologies\ATI Control Panel;C:\Program Files\ATI Technologies\Fire GL 3D Studio Max;C:\Program Files\Common Files\Roxio Shared\DLLShared;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\Program Files\Perforce;C:\Program Files\Common Files\OpSession\Shared;C:\Program Files\Common Files\OpSession\Viewer Shared
    [Thr 2108] JControlICheckProcessList: process SDM started (PID:3776)
    [Thr 2876] Tue Sep 13 11:25:32 2005
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] Tue Sep 13 11:25:44 2005
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] Tue Sep 13 11:27:18 2005
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2876] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server

Maybe you are looking for

  • LR5 version 5.3 abends when selecting media type in the print module; on Mac OSX 10.9.1. Why?

    LR5 version 5.3 abends when selecting media type in the print module; on Mac OSX 10.9.1. Why? The printer is an Epson 4900.

  • Enter a valid value

    Hi! I get the message "Enter a valid date ". Whats wrong ? Can u please help. Or do you know another FM for such purposes ? I must be able to populate various date formats e.g 04/24/2007, 04-24-2007 ..... Regards sas data s type sy-datum. *04/24/2007

  • N97 Software Update C: Phone Memory

    I just happened to check my Sofware update from my phone and noticed a "N97 C: Phone Memory" update. Description This update reorganizes the C: Phone memory to optimize it for more user memory available for possible SW installations on this drive. Ve

  • HT1386 Help please

    I've just updated itunes on my windows (vista) pc and iphone 3gs. Somehow I've lost all my calendar dataI can't find a previous backup on my pc or icloud in Sept which I know I have done! Having re-entered some appointments in my MS Outlook calendar

  • X-Fi Xtreme Audio Line-In no

    Hello there!I bought recently an X-Fi Xtreme Audio card and the purpose is to record my electric guitar.With my old Sound Blaster card I used to plug the guitar into an amp and from the amp go to the line-in. It worked OK, but the latency was quite b