Date Posted: May 13, 2009
Update: November 17, 2009
Announcing the IBM Rational C/C++ and COBOL Development Tools for AIX Managed Beta Program.
The Managed Beta program will engage users that are interested in deploying Rational C/C++ and COBOL development tools for AIX to evaluate code and provide feedback on their experiences. Participants will join developers and product management for discussions and have access to a private website. The website will include a tool for reporting problems and feature requests. This program is now open for sponsors to submit nominations for their customers/partners. Get more information and sign up now.
Tab navigation
1. I am getting Java OutOfMemoryExceptions on AIX.
To avoid OutOfMemoryExceptions, try increasing the Java heap size in the daemon.pl and server.sh scripts. First, add write permissions to these two files. Then, edit each script file and insert the parameters "-Xms64m -Xmx128m -Xss2m" in every java command appeared in the files. For example:
system("java -DA_PLUGIN_PATH=\$A_PLUGIN_PATH -DDSTORE_TRACING_ON=$trace org.eclipse.dstore.core.server.ServerLauncher $port $ARGV[1]");
becomes
system("java -Xms64m -Xmx128m -Xss2m -DA_PLUGIN_PATH=\$A_PLUGIN_PATH -DDSTORE_TRACING_ON=$trace org.eclipse.dstore.core.server.ServerLauncher $port $ARGV[1]");
Save the files and restart the RDT server.
