Posts:
8
Registered:
Jun 13, 2009 04:57:28 AM
|
|
|
|
Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 07, 2009 06:40:05 AM
|
|
|
|
Hi,
starting a java application with java 1.5 we get return code 102 and message
FSUM9225 no memory: EDC5132I Not enough memory.
It seems the JVM couldn't be initialized.
The application i'm trying to start is ActiveMQ.
Environment:
z/OS 1.10
Java 1.5
JZOS 2.3.0
Please help
Wolfgang Amon
Raiffeisen Informatik GmbH
Vienna/Austria
|
|
Posts:
6
Registered:
Apr 06, 2009 05:40:14 AM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 01:28:43 AM
in response to: wrzawo's post
|
|
|
|
Guten Morgen nach Österreich!
In which enviroment do you try to start ActiveMQ? Via interactive shellprompt in TSO? The TSO sessions are very limited in memory you should ask the host admin for a less restrictive configuration of your TSO session.
What should work is calling ActiveMQ via Batch. Batches are not as restricted as the TSO session. You should submit a job which invokes the ActiceMQ main class.
The command in the shell script from ActiveMQ is "$JAVACMD" $ACTIVEMQ_DEBUG_OPTS $ACTIVEMQ_OPTS -Dactivemq.classpath="${ACTIVEMQ_CLASSPATH}" -Dactivemq.home="${ACTIVEMQ_HOME}" -Dactivemq.base="${ACTIVEMQ_BASE}" -jar "${ACTIVEMQ_HOME}/bin/run.jar" start $@
The JCL for this shell could use BPXBATCH to invoke this command for example
//STEP01 EXEC PGM=BPXBATCH,
// PARM='SH /u/ActiveMQ/bin/activemq'
or invoke the run.jar directly with
//STEP0001 EXEC PROC=JVMPRC60,
// JAVACLS='$(Main_Class in run.jar)'
Note that you have to specify the enviroment variables, which are used in the shellscript via STDENV DD card.
Viele Grüße aus Dortmund
Sascha Hesse
|
|
Posts:
8
Registered:
Jun 13, 2009 04:57:28 AM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 02:16:45 AM
in response to: wrzawo's post
|
|
|
|
Hi Sascha,
thank you for your comment.
We try to start ActiveMQ in a batch environment via JZOS as described above. Both Java 1.5 and Java 1.6 show the same results.
Maybe we have a problem with USS or LE parameters ...
This is the start of the execution JCL:
//JAVA EXEC PROC=JVMPRC50,
// LOGLVL='+T',
// JAVACLS='org.apache.activemq.console.Main',
// ARGS='start'
//STDENV DD *
. /u/wrzrid/.profile
export JAVA_HOME=/products_nonshr/javafiles/java150/J5.0
JZOS_HOME=/products_nonshr/javafiles/java150/J5.0
ILOG_HOME=/u/wrzrid/
AH=/u/wrzrid/activemq/apache-activemq-5.3.0
ACTIVEMQ_BASE="$AH"
export PATH="$äJAVA_HOMEü"/bin:
LIBPATH=/lib:/usr/lib:"$äJAVA_HOMEü"/bin
LIBPATH="$LIBPATH":"$äJAVA_HOMEü"/bin/classic
export LIBPATH="$LIBPATH":
CLASSPATH="$äJAVA_HOMEü/l/tools.jar"
CLASSPATH="$CLASSPATH":"$AH/conf"
CLASSPATH="$CLASSPATH":"$AH/activemq-all-5.3.0.jar"
CLASSPATH="$CLASSPATH":"$AH/bin/run.jar"
Greetings to Dortmund
Wolfgang
|
|
Posts:
6
Registered:
Apr 06, 2009 05:40:14 AM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 02:44:52 AM
in response to: wrzawo's post
|
|
|
|
Hallo Wolfgang,
if you look into the startscript distributed with ActiveMQ you find
ACTIVEMQ_OPTS="-Xmx512M -Dorg.apache.activemq.UseDedicatedTaskRunner=true -Djava.util.logging.config.file=logging.properties"
Perhaps you can try something with the -Xmx Parm. I don't find this in your JCL. Try to set it to 256MB
Is the REGION in your JCL restricted? That could be a problem.
Is the error message the same when you use BPXBATCH to invoke the startscript from the activemq distribution?
Viele Grüße
Sascha
|
|
Posts:
8
Registered:
Jun 13, 2009 04:57:28 AM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 08:13:21 AM
in response to: wrzawo's post
|
|
|
|
Hi Sascha,
thanks for the hint. My colleague is now running tests with BPXBATCH but JZOS should work fine as well.
Kind regards
Wolfgang
|
|
Posts:
10
Registered:
Aug 05, 2008 02:53:57 PM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 08:21:33 AM
in response to: wrzawo's post
|
|
|
|
That sounds like the error i recieved when i didn't have my REGION size high enough in my JCL Job Card. If you can change the job card in your JCL to REGION=256M (or based on the earlier post ACTIVEMQ_OPTS="-Xmx512M you could do REGION=512M) it should get rid of that particular error.
Justin Majeske
|
|
Posts:
8
Registered:
Jun 13, 2009 04:57:28 AM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 09:05:50 AM
in response to: wrzawo's post
|
|
|
|
Hello Justin,
thanks for the clue.
In our JZOS-JCL we specify "REGION=0M", so we can use about 10M "below the line" and about 1.3GB "above the line". There should be room enough for the java heap.
Kind regards
Wolfgang
|
|
Posts:
195
Registered:
Jan 17, 2006 03:13:58 PM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 09:16:09 AM
in response to: wrzawo's post
|
|
|
|
Please run the JZOS batch launcher with LOGLVL='+D'
This will produce a report that shows the actual memory size available.
Even though you specify REGION=0M, your installation may have an exit that changes the region size available.
|
|
Posts:
8
Registered:
Jun 13, 2009 04:57:28 AM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 09:54:07 AM
in response to: wrzawo's post
|
|
|
|
This is the start of SYSPRINT output:
JVMJZBL2004N Log level has been set to: D
JVMJZBL1001N JZOS batch Launcher Version: 2.3.0 Alphaworks 2008-05-12
JVMJZBL1002N Copyright (C) IBM Corp. 2005. All rights reserved.
JVMJZBL1029I Region requested = 0K, Actual below/above limit = 9M / 1280M
JVMJZBL1053I OS Release R20.00 Machine 2097
JVMJZBL1036D Spawned child shell process with PID: 33620237
JVMJZBL1005I Output from DD:STDENV config shell script:
JVMJZBL1038E Child shell process exited with exit code: 1
JVMJZBL2999I JZOS batch launcher elapsed time=6.287498 seconds, cpu time=0.007154 seconds
JVMJZBL1042E JZOS batch launcher failed, return code=102
Regards
|
|
Posts:
195
Registered:
Jan 17, 2006 03:13:58 PM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 10:01:51 AM
in response to: wrzawo's post
|
|
|
|
See: JVMJZBL1038E Child shell process exited with exit code: 1
This means that your STDENV script had an error.
If you use LOGLVL='+T', you should be able to see a trace of the script, and potentially see the error.
|
|
Posts:
8
Registered:
Jun 13, 2009 04:57:28 AM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 10:13:50 AM
in response to: wrzawo's post
|
|
|
|
I normally use the "+T"-option. Without that you wouldn't see the "FSUM9225 no memory ..." message.
This is the complete SYSPRINT output:
JVMJZBL2004N Log level has been set to: T
JVMJZBL2999T -> JzosVM()
JVMJZBL1001N JZOS batch Launcher Version: 2.3.0 Alphaworks 2008-05-12
JVMJZBL1002N Copyright (C) IBM Corp. 2005. All rights reserved.
JVMJZBL2999T <- JzosVM()
JVMJZBL2999T -> run()
JVMJZBL1029I Region requested = 0K, Actual below/above limit = 9M / 1280M
JVMJZBL1053I OS Release R20.00 Machine 2097
JVMJZBL2999T -> adoptEnvironment()
JVMJZBL2999T -> spawnChild()
JVMJZBL1036D Spawned child shell process with PID: 16843256
JVMJZBL2999T <- spawnChild()
JVMJZBL2999T Writing shell script to child's stdin:
JVMJZBL2999T # This is a shell script which configures
JVMJZBL2999T # any environment variables for the Java JVM.
JVMJZBL2999T # Variables must be exported to be seen by the launcher.
JVMJZBL2999T . /u/wrzrid/.profile
JVMJZBL2999T export JAVA_HOME=/products_nonshr/javafiles/java150/J5.0
JVMJZBL2999T JZOS_HOME=/products_nonshr/javafiles/java150/J5.0
JVMJZBL2999T ILOG_HOME=/u/wrzrid/
JVMJZBL2999T AH=/u/wrzrid/activemq/apache-activemq-5.3.0
JVMJZBL2999T ACTIVEMQ_BASE="$AH"
JVMJZBL2999T export PATH="$äJAVA_HOMEü"/bin:
JVMJZBL2999T LIBPATH=/lib:/usr/lib:"$äJAVA_HOMEü"/bin
JVMJZBL2999T LIBPATH="$LIBPATH":"$äJAVA_HOMEü"/bin/classic
JVMJZBL2999T export LIBPATH="$LIBPATH":
JVMJZBL2999T CLASSPATH="$äJAVA_HOMEü/lib/tools.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/conf"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/activemq-all-5.3.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/bin/run.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/bin/wrapper.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/activation-1.1.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/activemq-console-5.3.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/activemq-camel-5.3.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/activemq-core-5.3.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/activemq-jaas-5.3.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/activemq-protobuf-1.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/activemq-web-5.3.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/camel-core-2.0.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/camel-jms-2.0.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/camel-spring-2.0.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/commons-logging-1.1.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/geronimo-j2ee-management_1.0_spec-1.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/geronimo-jms_1.1_spec-1.1.1.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/geronimo-jta_1.0.1B_spec-1.0.1.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/jaxb-api-2.1.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/jaxb-impl-2.1.6.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/kahadb-5.3.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/stax-1.2.0.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/l/stax-api-1.0.1.jar"
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/activeio-core-3.1.2.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/activemq-jmdns_1.0-5.3.0.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/activemq-optional-5.3.0.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/activemq-pool-5.3.0.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/activemq-rar-5.3.0.rar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/activemq-xmpp-5.3.0.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/commons-beanutils-1.6.1.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/commons-codec-1.2.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/commons-collections-3.2.1.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/commons-dbcp-1.2.2.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/commons-httpclient-3.1.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/commons-net-2.0.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/commons-pool-1.4.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/geronimo-j2ee-connector_1.5_spec-2.0.0.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/jettison-1.1.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/log4j-1.2.14.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-aop-2.5.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-beans-2.5.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-context-2.5.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-core-2.5.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-jms-2.5.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-oxm-tiger-1.5.8.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-tx-2.5.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/log4j-1.2.14.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-aop-2.5.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-beans-2.5.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-context-2.5.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-core-2.5.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-jms-2.5.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-oxm-tiger-1.5.8.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/spring-tx-2.5.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/wstx-asl-3.0.1.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/xbean-spring-3.6.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/xmlpull-1.1.3.4d_b4_min.jar
JVMJZBL2999T CLASSPATH="$CLASSPATH":"$AH/lo/xstream-1.3.1.jar
JVMJZBL2999T export CLASSPATH="$CLASSPATH":
JVMJZBL2999T # Set JZOS specific options
JVMJZBL2999T # Use this variable to specify encoding for DD STDOUT and STDERR
JVMJZBL2999T #export JZOS_OUTPUT_ENCODING=IBM-1047
JVMJZBL2999T # Use this variable to prevent JZOS from handling MVS operator commands
JVMJZBL2999T #export JZOS_ENABLE_MVS_COMMANDS=false
JVMJZBL2999T # Use this variable to supply additional arguments to main
JVMJZBL2999T #export JZOS_MAIN_ARGS=""
JVMJZBL2999T # Configure JVM options
JVMJZBL2999T # Note that ActiveMQ requires default ASCII file.encoding
JVMJZBL2999T IJO="-Xms256m -Xmx712m -Xjarversion"
JVMJZBL2999T IJO="$IJO -Dfile.encoding=ISO8859-1"
JVMJZBL2999T IJO="$IJO -Dcom.sun.management.jmxremote"
JVMJZBL2999T IJO="$IJO -Dorg.apache.activemq.UseDedicatedTaskRunner=true"
JVMJZBL2999T IJO="$IJO -verbose:gc"
JVMJZBL2999T IJO="$IJO -verbose:jni"
JVMJZBL2999T IJO="$IJO -verbose:dynload"
JVMJZBL2999T IJO="$IJO -verbose:stack"
JVMJZBL2999T IJO="$IJO -Dderby.system.home=$äACTIVEMQ_BASEü/data"
JVMJZBL2999T IJO="$IJO -Dderby.storage.fileSyncTransactionLog=true"
JVMJZBL2999T IJO="$IJO -Djavax.net.ssl.keyStorePassword=password"
JVMJZBL2999T IJO="$IJO -Djavax.net.ssl.trustStorePassword=password"
JVMJZBL2999T IJO="$IJO -Djavax.net.ssl.keyStore=$äACTIVEMQ_BASEü/conf/broker.ks"
JVMJZBL2999T IJO="$IJO -Djavax.net.ssl.trustStore=$äACTIVEMQ_BASEü/conf/broker.ts"
JVMJZBL2999T IJO="$IJO -Dactivemq.classpath=$äCLASSPATHü"
JVMJZBL2999T IJO="$IJO -Dactivemq.base=$äACTIVEMQ_BASEü"
JVMJZBL2999T IJO="$IJO -Dactivemq.home=$äAMQ_HOMEü"
JVMJZBL2999T IJO="$IJO -Djava.io.tmpdir=$äACTIVEMQ_BASEü/temp"
JVMJZBL2999T # Configure SDK5.0 to use shared classes (at group level)
JVMJZBL2999T # You must comment this out if you are not running SDK 5
JVMJZBL2999T groupname=`id -gn`
JVMJZBL2999T IJO="$IJO -Xshareclasses:name=$groupname,groupAccess"
JVMJZBL2999T export IBM_JAVA_OPTIONS="$IJO "
JVMJZBL2999T export JAVA_DUMP_HEAP=false
JVMJZBL2999T export JAVA_PROPAGATE=NO
JVMJZBL2999T export IBM_JAVA_ZOS_TDUMP=NO
JVMJZBL1005I Output from DD:STDENV config shell script:
JVMJZBL2999T FSUM9225 no memory: EDC5132I Not enough memory. <=============
JVMJZBL2999T waiting for child shell process to complete
JVMJZBL2999T -> waitChild()
JVMJZBL1038E Child shell process exited with exit code: 1
JVMJZBL2999T <- waitChild()
JVMJZBL2999T <- adoptEnvironment()
JVMJZBL2999T <- run()
JVMJZBL2999T -> cleanup()
JVMJZBL2999I JZOS batch launcher elapsed time=5.644133 seconds, cpu time=0.006792 seconds
JVMJZBL1042E JZOS batch launcher failed, return code=102
JVMJZBL2999T <- cleanup()
JVMJZBL2999T -> ßJzosVM()
JVMJZBL2999T <- ßJzosVM()
|
|
Posts:
195
Registered:
Jan 17, 2006 03:13:58 PM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 10:19:37 AM
in response to: wrzawo's post
|
|
|
|
This is a little odd. It looks like your STDENV shell script is getting an out-of-memory error.
You might be able to figure out exactly which shell script line is failing if you add the line:
set -x
to the beginning.
|
|
Posts:
8
Registered:
Jun 13, 2009 04:57:28 AM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 11:00:47 AM
in response to: wrzawo's post
|
|
|
|
I'm really perplexed - with this option i got 1.3 million lines in SYSPRINT.
The message beginning with "JVMJZBL2999T CLASSPATH=/" seems to be repeated over and over until the memory is exhausted. Do you want to have a look at the complete joblog?
This is the last page:
activemq/apache /activemq-5.3.0/l/stax-api-1.0.1.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/lo/activeio-core-3.1.2.jar
JVMJZBL2999T CLASSPATH=/products_nonshr/javafiles/java150/J5.0/lib/tools.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/co
nf:/u/wrzrid/activemq/apache-activemq-5.3.0/activemq-all-5.3.0.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/bin/run.jar:
/u/wrzrid/activ
emq/apache-activemq-5.3.0/bin/wrapper.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/l/activation-1.1.jar:/u/wrzrid/active
mq/apache-activemq-5.3.0/l/activemq-console-5.3.0.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/l/activemq-camel-5.3.0.ja
r:/u/wrzrid/act
ivemq/apache-activemq-5.3.0/l/activemq-core-5.3.0.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/l/activemq-jaas-5.3.0.jar
:/u/wrzrid/activemq/apache-activemq-5.3.0/l/activemq-protobuf-1.0.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/l/activem
q-web-5.3.0.jar
:/u/wrzrid/activemq/apache-activemq-5.3.0/l/camel-core-2.0.0.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/l/camel-jms-2.
0.0.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/l/camel-spring-2.0.0.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/l/com
mons-logging-1.
1.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/l/geronimo-j2ee-management_1.0_spec-1.0.jar:/u/wrzrid/activemq/apache-act
ivemq-5.3.0/l/geronimo-jms_1.1_spec-1.1.1.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/l/geronimo-jta_1.0.1B_spec-1.0.1.
jar:/u/wrzrid/a
ctivemq/apache-activemq-5.3.0/l/jaxb-api-2.1.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/l/jaxb-impl-2.1.6.jar:/u/wrzri
d/activemq/apache-activemq-5.3.0/l/kahadb-5.3.0.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/l/stax-1.2.0.jar:/u/wrzrid/
activemq/apache
-activemq-5.3.0/l/stax-api-1.0.1.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/lo/activemq-jmdns_1.0-5.3.0.jar:/u/wrzrid/
activemq/apache-activemq-5.3.0/lo/activemq-pool-5.3.0.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/lo/activemq-xmpp-5.3.
0.jar:/u/wrzrid
/activemq/apache-activemq-5.3.0/lo/commons-codec-1.2.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/lo/commons-dbcp-1.2.2.
jar:/u/wrzrid/activemq/apache-activemq-5.3.0/lo/commons-net-2.0.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/lo/geronimo
-j2ee-connector
_1.5_spec-2.0.0.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/lo/log4j-1.2.14.jar:/u/wrzrid/activemq/apache-activemq-5.3.
0/lo/spring-beans-2.5.6.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/lo/spring-core-2.5.6.jar:/u/wrzrid/activemq/apache-
activemq-5.3.0/
lo/spring-oxm-tiger-1.5.8.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/lo/log4j-1.2.14.jar:/u/wrzrid/activemq/apache-act
ivemq-5.3.0/lo/spring-beans-2.5.6.jar:/u/wrzrid/activemq/apache-activemq-5.3.0/lo/spring-core-2.5.6.jar:/u/wrzrid/active
mq/apache-activ
emq-5.3.0/lo/spring-oxm-tiger-1.5.8.jar
JVMJZBL2999T + FSUM9225 no memory: EDC5132I Not enough memory.
JVMJZBL2999T waiting for child shell process to complete
JVMJZBL2999T -> waitChild()
JVMJZBL1038E Child shell process exited with exit code: 1
JVMJZBL2999T <- waitChild()
JVMJZBL2999T <- adoptEnvironment()
JVMJZBL2999T <- run()
JVMJZBL2999T -> cleanup()
JVMJZBL2999I JZOS batch launcher elapsed time=12.795130 seconds, cpu time=3.3847545 seconds
JVMJZBL1042E JZOS batch launcher failed, return code=102
JVMJZBL2999T <- cleanup()
JVMJZBL2999T -> ßJzosVM()
JVMJZBL2999T <- ßJzosVM()
|
|
Posts:
195
Registered:
Jan 17, 2006 03:13:58 PM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 09, 2009 11:16:37 AM
in response to: wrzawo's post
|
|
|
|
There's something wrong with your z/OS Unix environment, or your script.
What's in the .profile file?
Also, there seems to be a codepage problem in the data your are posting, so its difficult to see exactly what you have.
Is there a reason why you are using the alphaWorks version of JZOS?
I suggest that you use the latest SDK version of JZOS (not alphaWorks) contact the IBM support center for assistance.
|
|
Posts:
6
Registered:
Apr 06, 2009 05:40:14 AM
|
|
|
|
Re: Message "FSUM9225 no memory: EDC5132I Not enough memory."
Posted:
Nov 10, 2009 01:28:48 AM
in response to: KirkWolf's post
|
|
|
|
Guten Morgen Wolfgang,
may there be something wrong with your . /u/wrzrid/.profile ?
What if you remove this from the STDENV Card und put the needed variables directly in the JCL?
Regards
Sascha
|
|
|
|