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-23-2004 12:27 AM
06-23-2004 12:27 AM
Ulimit
"sh[55]: ulimit: The specified value exceeds the user's allowable limit."
I am running 7.3.4 on HP UX 10.2 - DOes anyone know the reason and how to fix it , please? Many thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 12:34 AM
06-23-2004 12:34 AM
Re: Ulimit
check ulimit man page. This can be altered or set in profile.
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 12:37 AM
06-23-2004 12:37 AM
Re: Ulimit
Kaps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 12:37 AM
06-23-2004 12:37 AM
Re: Ulimit
#ulimit -a
This will tell you all the ulimit settings and
see man ulimit to set these settings.
set this in the .profile of the user or if generally required set it in /etc/profile.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 12:50 AM
06-23-2004 12:50 AM
Re: Ulimit
ulimit -Sa (Gives soft limits)
ulimit -Ha (Gives hard limits)
ulimit -c "core_size"
ulimit -n "open_files"
ulimit -s "stack size"
Increase one parameter at a time and run program. this way you will be able to track down what is causing the problem? Is it files open, stack size etc?
man sh for details.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 01:00 AM
06-23-2004 01:00 AM
Re: Ulimit
1. Use ulimit -a to view current setting.
2. For changing:
# ulimit -s
stack
# ulimit -t
time
# ulimit -f
File
# ulimit -d
Data
# ulimit -m
Memory
# ulimit -c
Coredump
# ulimit -n
nofiles
Hope that helps.
Regards,