- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Fork Failed - errno: 11 Resource temporarily unava...
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
тАО02-04-2003 07:25 AM
тАО02-04-2003 07:25 AM
Fork Failed - errno: 11 Resource temporarily unavailable"
I have a server Model 9000/800/L2000-5X, HPUX v11.11, with Sybase 11.9.0.2 and when I run many process I get this error.
The size of the swap (memory virtual) is 4GB.
Can Somebody help me?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-04-2003 07:28 AM
тАО02-04-2003 07:28 AM
Re: Fork Failed - errno: 11 Resource temporarily unavailable"
/usr/sbin/swapinfo
Regs David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-04-2003 07:31 AM
тАО02-04-2003 07:31 AM
Re: Fork Failed - errno: 11 Resource temporarily unavailable"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-04-2003 07:35 AM
тАО02-04-2003 07:35 AM
Re: Fork Failed - errno: 11 Resource temporarily unavailable"
You can check the process table ("proc-sz" column) "sar -v 10 10".
Also look for process-related error in your syslog.log file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-04-2003 07:36 AM
тАО02-04-2003 07:36 AM
Re: Fork Failed - errno: 11 Resource temporarily unavailable"
EAGAIN 11 /* No more processes
This means you are hitting your maxuprc limit most probably.
Do a ps -ef|grep your_user|wc -l
If it is near your "maxuprc", then you may want to bump it up. Maxuprc is dynamic on 11i, so you can increase it on the fly.
If not, then it could be your nproc. Do sar -v 2 20 and observe the proc-sz and ov columns.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-04-2003 07:39 AM
тАО02-04-2003 07:39 AM
Re: Fork Failed - errno: 11 Resource temporarily unavailable"
$ grep 11 /usr/include/sys/errno.h
#define EAGAIN 11 /* No more processes */
and then lookup the error mnemonic name, i.e. EAGAIN in this case, in the manual page of the system call, i.e. fork(2) in this case.
If no system call is mentioned, you can lookup the generic meaning in the errno(2) manual page.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-04-2003 12:57 PM
тАО02-04-2003 12:57 PM
Re: Fork Failed - errno: 11 Resource temporarily unavailable"
Bill Hassell, sysadmin