cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Web AS Java version 2004s (7.0) installation problem

Former Member
0 Kudos

Hello,

I got the below error during the installation process of SAP Web AS Java. Any clue what is wrong?

ERROR 2007-07-05 07:00:30
CJS-30151  Java process server0 of instance PLV/DVEBMGS55 [ABAP:
ACTIVE, Java: (dispatcher: RUNNING, server0: UNKNOWN)] did not start
after 6:30 minutes. Giving up.
ERROR 2007-07-05 07:00:31
FCO-00011  The step startJava with step key
|NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_StartJava|ind|ind|ind|ind|5|0|startJava
was executed with status ERROR

It seems

software components are installed but failed to start. I have about 10

steps left (most are configuration) before finish.

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Check the heap size using the batch file configtool.bat

Regards

Vinay Paul

Answers (3)

Answers (3)

Former Member
0 Kudos

Please put consistent value between the max/min heap memory together with the value of young memory (NewSize) and tenured memory.

For example:

-Xmx768m

-Xms384m

-XX:NewSize=96m

-XX:MaxNewSize=192m

This will set the start of young memory 96m, and start of tenured memory (384-96)m

Max young memory is 192, and max for tenured is (768-192)m.

Never set something like below, it won't start.

-Xmx768m

-Xms769m

-XX:NewSize=96m

-XX:MaxNewSize=192m

or

-Xmx768m

-Xms384m

-XX:NewSize=385m

-XX:MaxNewSize=192m

etc, etc.

Former Member
0 Kudos

Hello Hiroshi:

Can you explain the procedure?

Thanks

Mario G

Former Member
0 Kudos

Thanks Vinay,

Already solved this last week using configtool.bat and adjusted -xms -xmx value accordingly.

rgs,

hiroshi