- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ulimit configuration for users
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
Forums
Discussions
Discussions
Discussions
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
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
06-14-2005 08:36 AM
06-14-2005 08:36 AM
HP-UX B.11.00 U 9000/800
output:
#ulimit
4194303
#ulimit -a
ksh: ulimit: bad option(s)
# /usr/bin/ulimit -a
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 262144
stack(kbytes) 8192
memory(kbytes) unlimited
coredump(blocks) 4194303
nofiles(descriptors) 2048
I need to change the (data, stack and nofiles)parameters.
Someone knows if the change applies for all the users? e.g. oracle? What do I need to do?
Hoping your response.
Best regards
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2005 08:48 AM
06-14-2005 08:48 AM
Re: ulimit configuration for users
Applies to user you logged in as. Also you can not set it more than what kernel says. (e.g. maxdsiz, maxssiz and maxtsiz)
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2005 07:22 PM
06-14-2005 07:22 PM
Re: ulimit configuration for users
Also the nofiles(descriptors) parameter depends on nfile kernel parameter. You would require to increase that if you want to increase this.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2005 07:44 PM
06-14-2005 07:44 PM
Re: ulimit configuration for users
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-14-2005 08:49 PM
06-14-2005 08:49 PM
Re: ulimit configuration for users
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2005 06:17 AM
06-15-2005 06:17 AM
Re: ulimit configuration for users
(. /xxx/limits) to common sets of limits.
Then again, there may be better ways, but none easier.
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2005 02:46 PM
06-15-2005 02:46 PM
SolutionTo make the same changes to all user, simply put the ulimit value in /etc/profile since all shell users (except csh which is very non-standard) will go through /etc/profile. NOTE: patch ksh or switch everyone to use the standard HP POSIX shell.
Now, the data and stack values shown above look very much like the default kernel parameters and you cannot increase either of these beyond the kernel limits. If you need the data area to be 1500megs, change the maxdsiz and maxdsiz_64 kernel parameters. ulimit will default to those values. Note: maxdsiz_64 should always be larger than maxdsiz. maxdsiz is only for 32 bit programs.
Now if you have problem users that may use up too much memory, you can adjust ulimit -d for specific users by testing in /etc/profile. Normally, you never need to change the stack size, especially for Oracle and related programs.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 01:20 AM
06-16-2005 01:20 AM
Re: ulimit configuration for users
The link you gave me I think applies for Tru64 only. But thanks.
Thanks all for the responses you gave me, they helped me in great manner.
I find I can change the values by using the sam also, and is a good idea to configure it in /etc/profile for all users. Thanks Bill for clarify me some doubts.
Thanks again
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 01:23 AM
06-16-2005 01:23 AM
Re: ulimit configuration for users
Best regards