Problem with weblogic 8.1SP5

S

Sam

Hi,

I am deploying my application on bea weblogic 8.1SP5........and it
showing errors below::::


JVMDG217: Dump Handler is Processing OutOfMemory - Please Wait.
JVMDG315: JVM Requesting Heap dump file
..........JVMDG318: Heap dump file written to
/soft_dump/BEA815/user_projects/dom
ains/mydomain/heapdump274442.1150373114.phd
JVMDG303: JVM Requesting Java core file
JVMDG304: Java core file written to
/soft_dump/BEA815/user_projects/domains/mydo
main/javacore274442.1150373147.txt
JVMDG274: Dump Handler has Processed OutOfMemory.

Is dere any solution for it?

Thanks

Samit Katiyar
(e-mail address removed)
 
J

Juha Laiho

Sam said:
I am deploying my application on bea weblogic 8.1SP5........and it
showing errors below:::: ....
JVMDG274: Dump Handler has Processed OutOfMemory.

Is dere any solution for it?

Well, you have three choices:
- you've not allocated enough memory to your server
(JVM startup parameters)
- your code is leaking memory (or, WebLogic server is leaking
memory, but your code is more probable of the two)
- your code (or, again, WebLogic server code) is causing
memory fragmentation; that is, there is free JVM heap
available, but not in large enough contiguous chunks

The first two: look at the memory utilization of your system
(WebLogic console provides graphing tools for this); if it's
steady, linear growth of used memory, and you get OutOfMemory
when the curve hits the top, then there either is not enough
memory or the application is leaking memory. Make an educated
guess whether your application should consume the amount of
memory you've allocated for it, and if it could, increase the
memory allocation. Do this until your memory allocation is
so large that you're certain that you've exceeded the run size
of your application. If you still encounter the OutOfMemory
errors, your code is leaking memory (i.e. not properly releasing
references to created objects), and should be fixed.

The third: looking at the memory usage graph, you get OutOfMemory
error when there seemingly is still memory available. Allocating
more memory may help, also changing VM memory-related parameters
may help.
 
S

Sam

Thanks for ur valuable response........

But unfortunately I m not able to solve my problem...

I tried to view memory lekedge through JRockit but i couldm't configure
my console.......

Can u plz tell me the exact way to solve this problem?

I'll be thankful to u.

Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,995
Messages
2,570,230
Members
46,816
Latest member
SapanaCarpetStudio

Latest Threads

Top