- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Any command report this:
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
04-03-2006 03:53 AM
04-03-2006 03:53 AM
sh: There is not enough memory available now.
sh: There is not enough memory available now.
sh: There is not enough memory available now.
sh: There is not enough memory available now.
sh: There is not enough memory available now.
sh: There is not enough memory available now.
sh: The fork function failed. Too many processes already exist.
:/#
Why?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 03:57 AM
04-03-2006 03:57 AM
Re: Any command report this:
kernel tunable is "nproc".
Are you root?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 03:58 AM
04-03-2006 03:58 AM
Re: Any command report this:
you have too many processes on the system or under your userid.
ulimit -a should show the limits.
Reduce the number of processes and/or increase available resource and you should be ok.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 04:02 AM
04-03-2006 04:02 AM
Re: Any command report this:
Thank's!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 04:14 AM
04-03-2006 04:14 AM
Solutionulimit -m unlimited
will reset your memory allowance, to the authorised limit.
However, chances are you have too many processes running.
Issue:
ps | wc -l Gives you the count of your processes.
'kill ' unwanted jobs, which will free up resources.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 04:25 AM
04-03-2006 04:25 AM
Re: Any command report this:
ps -ef | wc -l # to count running processes
or
Check that you ACTUALLY capped max processes:
#sar -v 1 1
HP-UX hostname B.11.11 U 9000/800 04/03/06
18:22:39 text-sz ov proc-sz ov inod-sz ov file-sz ov
18:22:40 N/A N/A 145/1280 0 988/8192 0 1316/8202 0
In this example I have 145 out of 1280 possible running processes.
To change parameter start SAM, change the value (if you change maxusers you also change nproc and some other "useful" parameters on 11.11).
SAM -> Kernel Configuration -> Configurable Parameters
select nproc (or maxusers) with space bar, then Actions -> Modify Configurable Parameter, change it then again actions -> process new kernel and reboot!
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2006 04:28 AM
04-03-2006 04:28 AM
Re: Any command report this:
Regards