For your information: I had severe errors with some JAVA versions on LINUX.
Try 1.5 or 1.6 for a start; it smells of an internal error.
;JOOP!
Main Topics
Browse All TopicsI am running Java Version 1.4.2 on Redhat linux.
In my code, I keep track of memory usage by using the following:
maxMemory = (Runtime.getRuntime().maxM
So, if I specify on the command line -Xmx300m, maxMemory reports about 300 MB.
But, out of the blue, after restarting my program, maxMemory started reporting back a HUGE number to me: 9223372036854 MB (even if I don't specify -Xmx). And, I am getting java.lang.OutOfMemoryError
BUT, if I run the same program on another machine, I don't have any of these issues.
Why is getRuntime().maxMemory returning such a huge number on just this one linux box?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
ksivananth --
Just did a small test:
public class Main {
public static void main(String[] args) {
System.out.println("hello"
Long maxMemory = (Runtime.getRuntime().maxM
System.out.println("maxMem
}
}
Output:
hello
maxMemory: 9223372036854
On another machine, Output is as follows:
hello
maxMemory: 66
Business Accounts
Answer for Membership
by: ksivananthPosted on 2009-10-16 at 06:57:20ID: 25589572
have you tried running a small test application in that box?