Forum
Merhaba arkadaşlar;Exchange 2010 sp1 olan sistemimizde iki defa Dag konfigurasyonu yaptık.Gerek aldığımız eğitimler,gerek çözümpark, technet ve diğer makalelerden yola çıkarak tüm ayarları doğruca yaptığımızı düşünüyoruz.Dag ı oluşturup,databaseleri kopyalamaya gelince failed and suspend hatası alıyoruz.Network altyapımız vlanlardan oluşuyor ve network hızımız 1 Gb/sn.Firewall olarak fortigate kullanıyoruz, acaba firewall tarafında mı bir sıkıntı var diye düşünmeye başladım.Bu konuda tecrübe sahibi arkadaşlar bilgilerini paylaşır ise memnuniyet duyarız.Herkese iyi çalışmalar...
Merhaba;
Aşağıdaki makaleyi incelermisiniz?
http://exchangeserverpro.com/how-to-reseed-a-failed-mailbox-database-copy-in-exchange-server-2010
How to Reseed a Failed Mailbox Database Copy in Exchange Server 2010
When a mailbox database copy has failed in an Exchange Server 2010 Database Availability Group (DAG) it may be necessary to reseed the mailbox server with the failed database copy.
To reseed the database copy launch the Exchange Management Shell on the server that is in a failed state.
First we need to suspend replication for the mailbox database copy on this server. Use the following command, specifying the mailbox database in the format “<mailbox database name>\<server name>”.
[PS] C:\>Suspend-MailboxDatabaseCopy -Identity "Mailbox Database 01\EX2" Confirm Are you sure you want to perform this action? Suspending mailbox database copy "Mailbox Database 01" on server "EX2". [Y] Yes [A] Yes to All [N] No [L] No to All [?] Help (default is "Y"): y
The mailbox database copy status will now change from “Failed” to “Failed and Suspended”.
Next we reseed the database with a new copy by issuing the following command.
[PS] C:\>Update-MailboxDatabaseCopy -Identity "Mailbox Database 01\EX2" -DeleteExistingFiles
The duration of the seeding process will depend on the size of the database and the speed of the network. When the update has completed it will automatically resume replication for the database copy. If you want to prevent automatic resume of replication use this command instead.
[PS] C:\>Update-MailboxDatabaseCopy -Identity "Mailbox Database 01\EX2" -DeleteExistingFiles -ManualResume