- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- fork: resource is temporary unavailable
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
01-28-2002 02:12 AM
01-28-2002 02:12 AM
Have a L-2000 with 11i installed, with 2GB RAM.
and keep getting:
bash: fork: resource is temporary unavailable
But can't figure out which resource?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2002 02:24 AM
01-28-2002 02:24 AM
Re: fork: resource is temporary unavailable
Don't know this error message exactly.
Have you checked the syslog.log file an your nproc parameter? You can get the nproc peek simple with sar -v (sa1 script via cron).
Ruediger
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2002 02:41 AM
01-28-2002 02:41 AM
Re: fork: resource is temporary unavailable
Have no entrie in syslog, and have checked nproc (and increased it, to be sure) but the error remains.
Have began checking if this could be shell spesific.
Could this error occur if ulimit values are too low, and
how do I set ulimit values in a users / all users shell (bash)
Andreas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2002 03:11 AM
01-28-2002 03:11 AM
Solution'nproc' specifies the global (system-wide) number of processes that can run simultaneously. Exceeding this value can lead to fork errors. On a per-user basis, the kernel parameter 'maxuprc' also imposes a limit which if exceeded leads to fork errors too. 'maxuprc' defaults to 50 and specifies the maximum number of simultaneous user processes that any given user can be running.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2002 04:25 AM
01-28-2002 04:25 AM
Re: fork: resource is temporary unavailable
ps -u user-name | wc -l
If it is close to 50 then the user is probably hitting the maxuprc limit in the kernel. This is a fence to prevent runaway processes or scripts from using all the resources. If the user doesn't expect to run that many processes, these may orphan processes that were left behind when login sessions were improperly terminated (as in a PC crash or reboot).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2002 07:18 AM
01-28-2002 07:18 AM
Re: fork: resource is temporary unavailable
What does swapinfo -ta show?
How much memory is available on the box?