- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Java: Xss doesn't work
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-02-2007 10:46 PM
тАО09-02-2007 10:46 PM
I start a script where a Java program is run.
I got the error:
The stack size specified is too small, Specify at least 208k
When I start the program I specify the following options ... -Xms128m -Xmx500m -Xss256m ...
It seems that Xss doesn't work.
Which are the probable reasons of such problem?
regards
Enrico
Solved! Go to Solution.
- Tags:
- Java
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-02-2007 10:57 PM
тАО09-02-2007 10:57 PM
SolutionPossible bug:
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4709879
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4341019
Possible limits on your JVM.
http://java.sun.com/docs/books/jvms/second_edition/html/Overview.doc.html
If its a bug, the fix will eventually be released on http://www.hp.com/go/java
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-03-2007 05:06 AM
тАО09-03-2007 05:06 AM
Re: Java: Xss doesn't work
besides all possible java-bugs, a stacksize of 256Mb seems unreasonable to me.
Which JAVA-version?
What happens, when no option '-Xss...' is supplied?
MfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-03-2007 07:20 PM
тАО09-03-2007 07:20 PM
Re: Java: Xss doesn't work
Try -Xss256k or -Xss512k, that would be more then sufficient.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-04-2007 04:56 AM
тАО09-04-2007 04:56 AM
Re: Java: Xss doesn't work
Yes, 256m is just too large.
The thread stack size isn't charged against maxssiz, that only limits the main thread stack.