0xe0008497 ошибка exchange

apache

Случайный прохожий
Привет, кто нибудь знает как победить такую ошибку при бэкапе Exchange?
0xe0008497 - Нельзя выполнить инкрементальное или дифференциальное резервное копирование, поскольку приложение Microsoft Exchange настроено на циклическое ведение журнала. Чтобы выполнить инкрементальное или дифференциальное резервное копирование, отключите режим циклического ведения журнала. Кроме того, при включенном режиме циклического ведения журнала нельзя выполнить восстановление без потери данных.
 
Такое может происходить когда:
1.Circular Logging is enabled for Exchange Database.
2.Microsoft information Store Service was not restarted.
3.Exchange Database was not dismounted and remounted after disabling Circular Logging.

Обычно на практике возникает из за первого пункта.
Что бы отключить циклическое ведение лога в exchange:

Exchange 2000 Server and Exchange Server 2003 :

1. Click Start, point to Programs, point to Microsoft Exchange, and then click System Manager.
2. Expand Server, right-click the storage group that you want to change, and then click Properties.
3. In the Properties dialog box, click to clear the Enable Circular Logging check box.
4. Click OK. When you are prompted to confirm that you want to continue, click Yes.
5. Restart the Microsoft Exchange Information Store service. To do this, follow these steps:
a. Click Start, point to Programs, point to Administrative Tools, and then click Services.
b. In the right pane, click Microsoft Exchange Information Store. Then, click Restart on the Action menu. If you receive a message that other services will also be restarted, click Yes.

Exchange 2007
1. Start the Exchange Management Console.
2. In the console tree, expand Server Configuration, and then click Mailbox.
3. In the work pane, right-click the storage group for which you want to enable or disable circular logging, and then click Properties. The <Storage Group Name> Properties dialog box appears.
4. Clear the Enable circular logging check box.
5. Click OK.
6. To make your changes to the circular logging settings effective, Restart the Microsoft Exchange Information Store service, or dismount and then mount all of the databases in the storage group.

To disable circular logging using Exchange Management Shell, run the following command:
Код:
Set-StorageGroup -Identity "First Storage Group" -CircularLoggingEnabled $false

Exchange 2010
1. In the console tree, navigate to Organization Configuration | Mailbox.
2. In the result pane, on the Database Management tab, select the database you want to configure.
3. In the action pane, under the database name, click Properties.
4. Click on the Maintenance tab
5. Clear the Enable circular logging check box.
6. Click OK.
7. To make your changes to the circular logging settings effective, Restart the Microsoft Exchange Information Store service, or dismount and then mount all of the databases in the storage group.

To disable circular logging using Exchange Management Shell, run the following command:
Код:
Set-MailboxDatabase -Identity "Database Name" -CircularLoggingEnabled $false

Exchange 2013
To use the Exchange Admin Center (EAC) to disable circular logging:
1. In the EAC, go to Servers > databases.
2. Select the mailbox database you want to configure and click edit icon
3. Uncheck the Enable circular logging checkbox, and then click save.
4. To make your changes to the circular logging settings effective, Restart the Microsoft Exchange Information Store service,
or dismount and then mount all of the databases in the storage group.
To disable circular logging using Exchange Management Shell, run the following command:
Код:
Set-MailboxDatabase "Database Name" -CircularLoggingEnabled $false
 
Назад
Верх Низ