How to setup the heap size using WAS
This is about heap sizes and JVM arguments while setting up with WAS. I have 16GB memory and 64 bit windows OS. So the initial settings could be as below. And
|
2 answers
Karl Weinert (2.0k●5●27●36)
| answered Dec 05 '12, 12:27 p.m.
JAZZ DEVELOPER edited Dec 06 '12, 8:56 a.m.
The logs should be in the logs directory under the WAS profile
...\WebSphere\AppServer\profiles\AppSrv01\logs\server1 is where they are on my system I suggest stopping the server, deleting the existing logs, restarting the server and looking through any of the new logs with data. I have also seen issues with the -Xgc:preferredHeapBase=0x100000000 setting That requires the memory to be contiguous which seems to be a frequent problem. Although with 16 gigs of RAM that becomes much less likely. Still might be worth testing without it. Update: I have not set up WAS with 8 gigs of memory at least in a while. I usually go much lower because I am on my personal system and only use it for testing. I have seen a number of customers set up that way so it should work. In case there is a problem the settings are contained in the server.xml file. If you create a backup copy of that before making changes it should be easy enough to revert back to the old settings instead of having to recreate the profile. It will be located here: \WebSphere\AppServer\profiles\AppSrv01\config\cells\<servername>Node04Cell\nodes\<servername>Node04\servers\server1\server.xml where <servername> = the name of my computer The jvm settings are under the jvmEntries tag in that file as follows: (Note the heap sizes are in MB) initialHeapSize="4096" maximumHeapSize="4096" -Xgc:preferredHeapBase=0x100000000" To set the values from the admin console Log into WebSphere select server->server types -> WebSphere application servers Choose server1 from the list On the right column expand "Java and Process Management" Select "Process Definition" Under additional properties select "Java Virtual Machine" Set Initial heap size and Maximum heap size to your desired values (in MB) the -Xgc:preferredHeapBase setting will be on the same page under Generic JVM arguments if it is set.
Comments Hi Karl,
Hi Manoj See my update to my answer above (it was a little long for a comment)
|
there is a space in one of the settings - just in case someone decides use these settings
Comments Kim,
Could you clarify a bit further?
Thanks
Kim Soederhamn
commented May 12 '14, 11:36 a.m.
In the value:
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.