How to Set or Change the Location of Storage Group Log Files
Applies to: Exchange Server 2007 SP3, Exchange Server 2007 SP2, Exchange Server 2007 SP1, Exchange Server 2007 Topic Last Modified: 2007-01-02
This topic explains how to use the Exchange Management Console or the Exchange Management Shell to set or change the location of storage group log files. The transaction log file location is where log files are written for the storage group. These log files record every change that is made to a database in that storage group.
To perform the following procedures, the account you use must be delegated the following:
- Exchange Server Administrator role and local Administrators group for the target server
For more information about permissions, delegating roles, and the rights that are required to administer Microsoft Exchange Server 2007, see Permission Considerations.
- Start the Exchange Management Console on the server on which the storage group is located.
- In the console tree, expand Server Configuration, and then click Mailbox.
- In the result pane, click the Mailbox server on which you want to create the storage group.
- In the action pane, click New Storage Group. The New Storage Group wizard appears.
- On the New Storage Group page, the Log files path box displays the default location where your transaction log files will be stored. Click Browse to change the default location.
Note: You cannot use the Exchange Management Console to change the log file location for remote Mailbox servers. To create storage groups on other Mailbox servers, use the New-StorageGroup cmdlet in the Exchange Management Shell.
- Enter any other information in the remaining boxes as needed, and then click New to create the new storage group. For more information about creating storage groups, see How to Create a New Storage Group.
- Start the Exchange Management Console on the server on which the storage group is located.
- In the console tree, expand Server Configuration, and then click Mailbox.
- In the result pane, click the Mailbox server that contains the storage group for which you want to change the log file location.
- In the work pane, click the storage group for which you want to change the log file location.
- In the action pane, click Move Storage Group Path. The Move Storage Group Path wizard appears.
- On the Introduction page, the Log files path box displays the location where your log files are currently stored. Click Browse to specify a location to which to move these files.
Note: You cannot use the Exchange Management Console to change the log file location for remote Mailbox servers.
- Click Move. A warning appears that all databases in the storage group must be temporarily dismounted, which will make them inaccessible to any user. To continue, click Yes.
- On the Completion page, confirm whether the log file path was changed successfully. A status of Completed indicates that the wizard completed the task successfully. A status of Failed indicates that the task was not completed. If the task fails, review the summary for an explanation, and then click Back to make any configuration changes. Click Finish to complete the Move Storage Group Path wizard.
- Run the following command to create a new storage group, using the LogFolderPath parameter to set the location of the log file:
New-StorageGroup -Name MyNewStorageGroup -Server ExchangeServer1 -LogFolderPath:"D:\Mailbox\First Storage Group" -SystemFolderPath:"D:\Mailbox\First Storage Group"
For detailed syntax and parameter information, see the New-StorageGroup reference topic.
- Run the following command on the server that contains the storage group for which you want to change the log file location:
Move-StorageGroupPath -Identity "MyStorageGroup" -LogFolderPath "D:\MyNewLogFolder"
For detailed syntax and parameter information, see the Move-StorageGroupPath reference topic.
If you are working in Mailbox CCR follow the below steps.
How to Move Exchange 2007 Log Files on a CCR Cluster
You cannot move the Exchange 2007 transaction logs to a different location while the CCR cluster is running. You must suspend the cluster, move the transaction log configuration *only* using EMS, and then resume the cluster.
Here are the detailed steps to do this:
- First, create the folders for the new location of the Exchange transaction logs. For this example, L:\ExchangeLogs\SG1. Make sure to do this on both nodes.
- Open the Exchange Management Shell (EMS) and run the following commands:
Suspend-StorageGroupCopy -Identity "exchange1\First Storage Group" -SuspendComment "Moving transaction logs" -Confirm:$False
move-StorageGroupPath -Identity 'exchange1\First Storage Group' -LogFolderPath 'L:\ExchangeLogs\SG1' -SystemFolderPath 'L:\ExchangeLogs\SG1' -ConfigurationOnly
move [oldpath]\*.* [newpath]
Resume-StorageGroupCopy -Identity "exchange1\First Storage Group"
Where exchange1 is the name of your CCR cluster, First Storage Group is the name of the storage group logs you want to move, oldpath is the current path of the logs, and newpath is the new target path.move-StorageGroupPath -Identity 'exchange1\First Storage Group' -LogFolderPath 'L:\ExchangeLogs\SG1' -SystemFolderPath 'L:\ExchangeLogs\SG1' -ConfigurationOnly
move [oldpath]\*.* [newpath]
Resume-StorageGroupCopy -Identity "exchange1\First Storage Group"
The first line suspends log shipping for the CCR cluster. The second line updates the Exchange configuration in Active Directory to use the new storage group path. The third line moves the existing log files from the old location to the new one. And finally, the fourth line resumes log shipping for the cluster.
Comments
Post a Comment