A Tip From Kinetic Computer Services ...“The Server Is Unavailable” for a Single Exchange 2010 User
Description of the ProblemYou have one user on your Microsoft Exchange 2010 server who cannot open Outlook. When attempting to start Outlook, this user receives the message "The server is unavailable", with the options Work Offline, Retry, and Cancel. The user receives the same message regardless of which computer he or she tries to use. Other users can open Outlook without problems, even on the same computer as the user having the problem. The affected user can log onto his or her Exchange account via Outlook Web Access. If you check the Exchange server's application log, you observe the following error. The affected user's logon ID appears in the message: Event 2915, MSExchangeADAccess CauseThe user has exceeded a throttling limit. This means that the user's e-mail account is making too many concurrent connections to the Exchange 2010 server. Common causes of multiple concurrent connections include:
You can view the user's connections to the server by running the following command in the Exchange Management Shell: Get-LogonStatistics <UserID> | Fl ApplicationId
Each line of the output that reads "Client=MSExchangeRPC" represents a connection to the Exchange server. You can also view the server's throttling policies: Get-ThrottlingPolicy | Fl Name,RCA*
Unless it has been modified, the default throttling policy allows a maximum of 20 concurrent connections. Outlook Web Access connections do not count toward this policy. SolutionFirst, you may want to simply close all of the user's connections to find out whether the problem persists. This involves turniing MAPI access off, then back on. To do so from the Exchange Management Shell:
Set-CASMailbox -Identity <UserID> -MAPIEnabled $false
(Alternatively, you can open the user's mailbox in the Exchange Management Console and select the Mailbox Features tab. Highlight MAPI, then choose Disable and Apply. Then choose Enable and OK.) If this procedure allows the user to open Outlook again, you can check to see how many shared calendars and delegate mailboxes he or she has open. There may be some connections that are not needed. You can also run the Get-LogonStatistics command again to see how many concurrent connections the user is now using. If the issue recurs with the same user and you determine that he or she needs a higher limit, you can create a new throttling policy and assign the user to it. (You could also change the limit on the default policy, but you shouldn't.) Run the following commands in the Exchange Management Shell:
New-ThrottlingPolicy -name <Name>
(You will want to specify a value greather than 20, or $null for no limit.)Set-Mailbox -Identity <UserID> -ThrottlingPolicy <Name>
Example:
New-ThrottlingPolicy -name PowerUser
Once you have the user assigned to your new policy, he or she should be able to connect to Outlook.
David Carson
Posted on August 11, 2011 © Copyright Kinetic Computer Services
This tip is a free service of Kinetic Computer Services - professional network consultants serving the Houston area since 1998. Reproduction of this document without the author's consent is prohibited. |
|