- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- changing ulimit settings on HP UX v 11.23
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
тАО04-29-2010 04:43 AM
тАО04-29-2010 04:43 AM
changing ulimit settings on HP UX v 11.23
# ulimit -a
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 1048576
stack(kbytes) 8192
memory(kbytes) unlimited
coredump(blocks) 4194303
nofiles(descriptors) 2048
We need to change the stack and data size to unlimited for all users permanently.
My service provider claims it is not possible please show me how to do it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2010 04:49 AM
тАО04-29-2010 04:49 AM
Re: changing ulimit settings on HP UX v 11.23
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2010 04:51 AM
тАО04-29-2010 04:51 AM
Re: changing ulimit settings on HP UX v 11.23
Display all configured values.
2. ulimit -c
Sets core file size
3. ulimit -d
Sets data seg size
4. ulimit -n
Sets Open Files
5. ulimit -s
Sets stack size
6. ulimit -u
Sets max user processes
7. ulimit -t
Sets cpu time
8. ulimit -v
Sets virtual memory
9. ulimit -p
Sets pipe size
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2010 05:02 AM
тАО04-29-2010 05:02 AM
Re: changing ulimit settings on HP UX v 11.23
Changes for all users is generally done in /etc/profile
sprotte@gitop2:/home/sprotte $ ulimit -a
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 4294967292
stack(kbytes) 131072
memory(kbytes) unlimited
coredump(blocks) 4194303
ulimit -d for data
You may find just using a really big number solves the problem.
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
тАО04-29-2010 06:00 AM
тАО04-29-2010 06:00 AM
Re: changing ulimit settings on HP UX v 11.23
Standard obligatory warning, the stack size is reserved from private space -- so don't set maxssiz too high for no good reason, it means you have less space for data and other private objects.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2010 06:32 PM
тАО04-29-2010 06:32 PM
Re: changing ulimit settings on HP UX v 11.23
>stack(kbytes) 8192
>We need to change the stack and data size to unlimited for all users permanently.
>My service provider claims it is not possible
That's correct, what Don said.
That said, your values can be increased a lot.
You can increase maxdsiz to 4 Gb and maxssiz to 80 Mb for a start.
>Don: this is just a feel good white lie from the kernel in practicality.
Now that you have explained it this way ... :-)
Possibly this thread but no patch ID:
http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1402022
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-30-2010 12:54 AM
тАО04-30-2010 12:54 AM
Re: changing ulimit settings on HP UX v 11.23
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-06-2010 04:24 AM
тАО06-06-2010 04:24 AM
Re: changing ulimit settings on HP UX v 11.23
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 4294967292
stack(kbytes) 131072
memory(kbytes) unlimited
coredump(blocks) 4194303
How can I have the above "ulimit -d" (4TB right?) setting on HP-UX 11.31?
I can't seem to set it beyond maxdsiz value of 4GB.