- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- /etc/profile [5] cannot fork:too many processes
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
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
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
тАО09-19-2001 01:04 PM
тАО09-19-2001 01:04 PM
/etc/profile [5] cannot fork:too many processes
I get this error message from time to time and I would like to know the best kernel settings for my Superdome. it's running HPUX 11.i, with Oracle 8.1.7 on top of it.
kernel settings of interest are:
maxfile_lim=2024
maxuser=128
ntpy=60
nfile=128000
nproc=1380
maxuproc=1024
maxfiles=180
maxfile_lim=1024
shmmax=5,000,000,000
Any suggestions would be great. Didn't find any relevant info.
on the Oracle site.
Thanks,
Scott
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 01:09 PM
тАО09-19-2001 01:09 PM
Re: /etc/profile [5] cannot fork:too many processes
I would probably at least double nproc.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 01:28 PM
тАО09-19-2001 01:28 PM
Re: /etc/profile [5] cannot fork:too many processes
You could be running into a problem with nproc and/or maxuprc
Run "sar -v 2 10" to see what is the usage/value of proc-sz (which indicates the nproc being used/total avail)
Is this happening only to the oracle user, it is very possible you are running into the limit of maxuprc (maximum processes per user)
do a
ps -ef |grep oracle |wc -l
you will see this error whenever the user tries to spawn more than 1024 processes(in your case maxuprc is 1024).
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 01:40 PM
тАО09-19-2001 01:40 PM
Re: /etc/profile [5] cannot fork:too many processes
Do a ps -ef|wc -l and see the number you are getting there and match it against your nproc value. If they are almost equal then you are running short of nproc. If not, it could be your maxuprc.
sar -v also gives you nproc usage.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-19-2001 03:17 PM
тАО09-19-2001 03:17 PM
Re: /etc/profile [5] cannot fork:too many processes
These are the parameters on my Box N-Class/OPS/MC-SG
maxfile_lim=2048
maxuser=300
npty=60
nfile=10000
nproc=2052
maxuprc=((NPROC*9)/10)
maxfiles=2048
maxfile_lim=2048
shmmax=1024*1024*1024
you can also look for some other postings related to performance tuning on this forun and they might help you.
Hope this helps.
Thanks