Sun Java 7.0: How to increase the value of

Hi everyone,

In Sun Java 6.1 and former webservers there used to be certain parameters in magnus.conf file like:-

RqThrottle 128

DNS off

Security off

PidLog /export/agent6/amit_server/https-server1/logs/pid

User agent6

StackSize 131072

TempDir /tmp/https-server1-0430e9ef

But in the new web server Sun Java 7.0 there are no such parametes.

The application which i am running needs to increase the value of the parameter "StackSize".

I added this parameter in magnus.conf file of the new Sun Java 7.0 web server but it is ignoring it and giving a warning as "StackSize directive ignored".

Can you all suggest some way by which i can increase the StackSize as my application doesn't run without it.

[776 byte] By [divya_shresth] at [2007-11-26 9:00:59]
# 1

In WS 7.0 TP release, the magnus.conf configuration file is retained for NSAPI plug-in configuration, but all functionality not related to NSAPI plug-ins has been moved to server.xml. Most of these configuration parameters are now new elements that will be created/defined in server.xml. For StackSize, I believe the server.xml will have an element like follows:

<stack-size>131072</stack-size>

where 131072 is the stack size in bytes. You should be able to configure using GUI or the admin CLI.

Thanks

Manish

kapmani at 2007-7-6 23:06:36 > top of Java-index,Web & Directory Servers,Web Servers...
# 2
Thanks manish. It worked.
divya_shresth at 2007-7-6 23:06:36 > top of Java-index,Web & Directory Servers,Web Servers...