標籤:exchange 建立 load balancing failed to find a valid mailbox database
環境:兩台 DC+Exchange 2013(前後端 in all)
故障:
在ECP建立使用者郵箱出現
650) this.width=650;" src="http://s1.51cto.com/wyfs02/M02/80/2D/wKioL1c6otmwKnbuAACHIi0reaY704.png" title="1.png" alt="wKioL1c6otmwKnbuAACHIi0reaY704.png" />
使用EMS輸入命令提示錯誤
650) this.width=650;" src="http://s2.51cto.com/wyfs02/M02/80/30/wKiom1c6ogXxsPTvAAAqGllUH4c946.png" title="2.png" alt="wKiom1c6ogXxsPTvAAAqGllUH4c946.png" />
解決方案:
1.EMS輸入命令提示錯誤,在伺服器上帶有管理員的powershell輸入
add-pssnapin *exchange* -erroractionSilentlyContinue
然後記得重啟伺服器。
2.建立使用者郵箱出現Server Load Balancer無法找到有效信箱資料庫,在shell輸入:
Get-mailboxdatabase| ft name,isexcludedfromprovisioning
顯示資料庫的isexcludedfromprovisioning為True,然後繼續輸入
Get-mailboxdatabase | set-mailboxdatabase-isexcludedfromprovisioning $false
就可以建立使用者郵箱了。
關於isexcludedfromprovisioning的意思
The IsExcludedFromProvisioning parameter hashave two valid values, $True and $False. When you set this property to $True,the mailbox database is excluded from the automatic distribution process. Whenyou set it to $False, the mailbox database is included in the automaticdistribution process. The default value is $False.
參考連結:https://technet.microsoft.com/en-us/library/ff477621(v=exchg.150)
本文出自 “gs_hao” 部落格,謝絕轉載!
[case分享]Exchange 2013 建立郵箱出現Server Load Balancer無法找到有效信箱資料庫錯誤