Processes Limit
What is a Process?
Processes are the execution of a command within the server that completes a specific task, such as accessing or checking your email account and responding to a letter. This action is achieved through a series of processes that normally complete within moments of each other. The process limitation depends on the account hosting type.
This article discusses the following topics.
- Concurrent Processes Limitation ⤵
- Mail client exceeding Processes limit ⤵
- VPS or Dedicated server is limiting me to 25 processes ⤵
Concurrent Processes limitation
Shared and Reseller hosting
Shared and Reseller plans are limited to 25 simultaneous processes per cPanel. Most sites will work perfectly with a 25 concurrent processes limit. Processes open and close so quickly that they hardly ever overlap.
If a user has between 15-19 IMAP processes running, our system automatically kills any process running over 5 minutes. If more than 20 IMAP processes are running, our system will automatically kill any process running for longer than 2 minutes.
SSH access is limited to two simultaneous connections on Shared and Reseller plans.
VPS and Dedicated hosting
VPS and Dedicated hosting plans allow for an adjustable number of simultaneous processes with no enforced limit.
top
command. For more information, please visit the following article.
Mail client exceeding Processes limit
If you exceed the processes limit, this could be caused by your mail client (Thunderbird, Mac Mail, Outlook, etc.) checking for emails too many times in an hour.
Mail Policy
Once the limit is reached, the server stores the check as a process to be handled after the 30 checks reset; however, more requests from your mail client keep coming. Therefore, more and more processes are stored until the 25 process limits are reached, bringing your site down with a 500 error message.
How to determine if your email client is the problem
Try the steps below to determine if your mail client is causing your website to exceed the processes limits.
- Close the email client to clear all the processes. You will then be able to see the site load back up right away.
- After seeing the site pull back up, open the client, and locate the setting for how often your mail client checks the server for emails. The setting should not be less than 10 minutes apart.
If you are still hitting the process limit, you either have too much traffic for a Shared server, or you need to optimize your database for faster queries.
VPS or Dedicated server is limiting me to 25 processes
This number can be increased at your discretion by making changes in the following file: /usr/local/apache/conf/includes/pre_main_global.conf
To make the appropriate changes, use the command line:
RLimitNPROC 25 30
- Change the first number to the new limit (in the command above, it is 25).
- Add 5 to get the second number (in the command above, 30).
- Restart Apache (location: /etc/init.d/httpd, command: restart).
After Apache is restarted, you should be able to see the new process limit functioning accordingly.