Wednesday, March 16, 2011

How to fix Exchange 452 4.3.1 Insufficient system resources

The first symptom : no incoming mails in your Exchange Organisation.
The first test to make : try to test your incoming SMTP service using telnet.
If you have the following result, you're reading the right post !
452 4.3.1 Insufficient system resources
If you have a quick look in your event log, you will find a 15002 event message, explaining you that your disk space is low. Here we are.
Different security levels are set in exchange, chained to different reactions : http://technet.microsoft.com/en-us/library/bb397220(EXCHG.80).aspx

Two ways to get out of this issue :
  1. increase disk space
  2. disable the Back Pressure Feature
For the first point, no lesson, just act as you are used to.
For the second point : Back Pressure Feature.
Differents triggers :
  • Disk space, memory, ...
Three levels :
  • Normal Action: The Exchange Server 2007 Server accepts new connections and messages.
  • Medium Action: The resources sre starting to be overused. Back pressure is applied to the server in a limited manner. Messages from senders in the authoritative domain can flow, but the server will reject new connections and messages from other sources.
  • High Action: A resource is being overused. All message flow will stop and the server will reject all new connections and messages.
To disable the Back Pressure Feature, you have to edit the file located in the bin folder of your exchange server : EdgeTransport.exe.config
Locate the EnableResourceMonitoring param and put the value to "false".
Restart the Exchange Transport Service using the exchange shell :
Restart-Service msExchangeTransport
Sources :

How to test SMTP server using telnet : here is the script

telnet mail.mydomain.com 25
EHLO mydomain.com
MAIL FROM:chris@microsoft.com
RCPT TO:kate@mydomain.com NOTIFY=success,failure
DATA
Subject: Test depuis Contoso

This is a test message
.
QUIT
Source : http://technet.microsoft.com/fr-fr/library/bb123686.aspx
Simple version : http://exchange.mvps.org/smtp_frames.htm

Monday, August 23, 2010

How to transfer the 5 Active Directory roles from a server to an other

The five roles
  • PDC emulator (one per domain): This role allows Windows Server to act as a Windows NT primary domain controller (PDC), and it provides replication support for Windows NT-based backup domain controllers (BDCs). In addition, this role assists with time and group policy synchronization.
  • Infrastructure master (one per domain): This role is responsible for updating the group-to-user references whenever the members of groups change or receive new names.
  • Relative ID (RID) master (one per domain): This role ensures that every object created has a unique identification number.
  • Schema master (one per forest): This role is responsible for maintaining and modifying the Active Directory schema.
  • Domain naming master (one per forest): This role is responsible for the addition and deletion of domains in a forest.

Install Desktop and Laptop Option (DLO) on Backup Exec 2010

First of all, you might have installed BE 2010 on your server.