- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: mail / 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
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
11-26-2007 06:51 AM
11-26-2007 06:51 AM
mail / processes
- refusing a connect on port 25, as no service is listening to the port, message is "stat=Deferred: Connection refused
probably because the max number of sendmail daemons we spawn is 200 and it might not be enough because the port 25 is so busy and we exceed out connection count.
What do you all do out there in the email/sendmail world? Do your servers run more that 200 sendmail processes at a given time?
The reson they set the max at 200 sendmail daemons is to prevent an email bomb or something destructive?
What is your opinion?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2007 08:36 AM
11-26-2007 08:36 AM
Re: mail / processes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2007 10:45 AM
11-26-2007 10:45 AM
Re: mail / processes
What is your load average. AT certain oad average, the server refuses SMTP connections.
Check the folling lines in
/etc/mail/sendmail.cf:
# Queue-Only Load Average (option QueueLA): #
# the line beginning O QueueLA=. #
#O QueueLA=8
I saved some customers with similar
problems.
Cheers
VK2COT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2007 11:51 PM
11-26-2007 11:51 PM
Re: mail / processes
ps -ef | grep sendmail 0:00 /usr/lib/sendmail -bd -q15m (sufficient??)
I am also seeing this set in the sendmail.cf file:
# load average at which we just queue messages
O QueueLA=40
# load average at which we refuse connections
O RefuseLA=60
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2007 09:33 AM
11-27-2007 09:33 AM
Re: mail / processes
OK, you accept emails even when the load is quite high :)
What is the result of the following commands:
mailq
mailstats
w
uptime
Cheers,
VK2COT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2007 10:24 AM
11-27-2007 10:24 AM
Re: mail / processes
Imho reason I suggested lowering the sendmail invocation frequency to 1 min is because it would help clearing the queued messages faster than the default of 30 mins thereby alleviating your denial of service issue.