<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>change database path exchange 2019 Archives - the Sysadmin Channel</title>
	<atom:link href="https://thesysadminchannel.com/tag/change-database-path-exchange-2019/feed/" rel="self" type="application/rss+xml" />
	<link>https://thesysadminchannel.com/tag/change-database-path-exchange-2019/</link>
	<description>Documenting My Life as a System Administrator</description>
	<lastBuildDate>Tue, 09 Jul 2019 05:57:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
<site xmlns="com-wordpress:feed-additions:1">144174110</site>	<item>
		<title>How To Move an Exchange Server 2019 Mailbox Database</title>
		<link>https://thesysadminchannel.com/how-to-move-an-exchange-server-2019-mailbox-database/</link>
					<comments>https://thesysadminchannel.com/how-to-move-an-exchange-server-2019-mailbox-database/#respond</comments>
		
		<dc:creator><![CDATA[Paul Contreras]]></dc:creator>
		<pubDate>Tue, 09 Apr 2019 05:27:46 +0000</pubDate>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[change database path exchange 2019]]></category>
		<category><![CDATA[Get-MailboxDatabase example]]></category>
		<category><![CDATA[How To Move an Exchange Server 2019 Mailbox Database]]></category>
		<category><![CDATA[migrate exchange server database]]></category>
		<category><![CDATA[move database to another drive powershell]]></category>
		<category><![CDATA[move exchange server database]]></category>
		<category><![CDATA[Move-DatabasePath example]]></category>
		<category><![CDATA[Set-MailboxDatabase example]]></category>
		<guid isPermaLink="false">https://thesysadminchannel.com/?p=1393</guid>

					<description><![CDATA[<p>When you initially install Exchange Server 2019 your default Database name and path are not exactly optimal. By default your first database is named something like Mailbox Database 0667016325 and your default path is located under &#8216;C:\Program Files\Microsoft\Exchange Server\V15\Mailbox&#8216;. Yikes&#8230; <a href="https://thesysadminchannel.com/how-to-move-an-exchange-server-2019-mailbox-database/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://thesysadminchannel.com/how-to-move-an-exchange-server-2019-mailbox-database/">How To Move an Exchange Server 2019 Mailbox Database</a> appeared first on <a href="https://thesysadminchannel.com">the Sysadmin Channel</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When you initially install Exchange Server 2019 your default Database name and path are not exactly optimal.  By default your first database is named something like <strong>Mailbox Database 0667016325</strong> and your default path is located under &#8216;<strong>C:\Program Files\Microsoft\Exchange Server\V15\Mailbox</strong>&#8216;.  Yikes &#8211; Like I said, not optimal.  Typically you&#8217;d want to have your database and log files on a separate drive, a much larger drive at that because these can fill up pretty quickly.  In this article I&#8217;m going to show you <strong>How To Move an Exchange Server 2019 Mailbox Database</strong>.</p>
<p>Moving a mailbox database actually really simple however, it does take some planning to make sure everything goes smoothly.  The reason being is that whenever a database is moved, it first needs to be dismounted and taken offline.  This means that anyone on that database will temporarily lose access their email until the mailbox database is remounted and back online.  For this reason, I suggest moving a mailbox database immediately after installing exchange on the server to avoid any down time.</p>
<h2>Move an Exchange Server 2019 Mailbox Database</h2>
<p>Before you begin moving the database I typically like to rename it from the default.  The <a href="https://docs.microsoft.com/en-us/powershell/module/exchange/mailbox-databases-and-servers/get-mailboxdatabase?view=exchange-ps" rel="noopener" target="_blank">Get-MailboxDatabase</a> and <a href="https://docs.microsoft.com/en-us/powershell/module/exchange/mailbox-databases-and-servers/set-mailboxdatabase?view=exchange-ps" rel="noopener" target="_blank">Set-MailboxDatabase</a> is used for that. Here is the command for that.</p>
<pre class="brush: powershell; title: ; notranslate">
Get-MailboxDatabase 'Mailbox Database 0667016325' | Set-MailboxDatabase -Name MailboxDB01
</pre>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2019/07/Set-MailboxDatabase-Name-MailboxDB01.png" target="_blank"><img fetchpriority="high" decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2019/07/Set-MailboxDatabase-Name-MailboxDB01.png" alt="Set-MailboxDatabase -Name MailboxDB01" width="979" height="320" class="aligncenter size-full wp-image-1548" srcset="https://thesysadminchannel.com/wp-content/uploads/2019/07/Set-MailboxDatabase-Name-MailboxDB01.png 979w, https://thesysadminchannel.com/wp-content/uploads/2019/07/Set-MailboxDatabase-Name-MailboxDB01-768x251.png 768w" sizes="(max-width: 979px) 100vw, 979px" /></a><br />
&nbsp;</p>
<p>Now that the database has renamed let&#8217;s go ahead and move it with <a href="https://docs.microsoft.com/en-us/powershell/module/exchange/mailbox-databases-and-servers/move-databasepath?view=exchange-ps" rel="noopener" target="_blank">Move-DatabasePath</a></p>
<pre class="brush: powershell; title: ; notranslate">
Move-DatabasePath MailboxDB01 -EdbFilePath 'E:\ExchangeDB\PAC-EXCH01\MailboxDB01.edb' -LogFolderPath 'E:\ExchangeDB\PAC-EXCH01\Logs\'
</pre>
<p><a href="https://thesysadminchannel.com/wp-content/uploads/2019/07/Move-DatabasePath-MailboxDB01-EdbFilePath-LogFolderPath.png" target="_blank"><img decoding="async" src="https://thesysadminchannel.com/wp-content/uploads/2019/07/Move-DatabasePath-MailboxDB01-EdbFilePath-LogFolderPath.png" alt="Move-DatabasePath MailboxDB01 -EdbFilePath -LogFolderPath" width="978" height="376" class="aligncenter size-full wp-image-1550" srcset="https://thesysadminchannel.com/wp-content/uploads/2019/07/Move-DatabasePath-MailboxDB01-EdbFilePath-LogFolderPath.png 978w, https://thesysadminchannel.com/wp-content/uploads/2019/07/Move-DatabasePath-MailboxDB01-EdbFilePath-LogFolderPath-768x295.png 768w" sizes="(max-width: 978px) 100vw, 978px" /></a></p>
<p>As mentioned before, the database will be dismounted and the files will be copied to the new locations. Once this completes, the database is mounted again and you will need to confirm everything is working after the DB has been moved. Be sure to give yourself plenty of time as this entire migration is dependent on the size of the database.  </p>
<p>Thanks for taking the time to learn how to Move an Exchange Server 2019 Mailbox Database.  </p>
<p>The post <a href="https://thesysadminchannel.com/how-to-move-an-exchange-server-2019-mailbox-database/">How To Move an Exchange Server 2019 Mailbox Database</a> appeared first on <a href="https://thesysadminchannel.com">the Sysadmin Channel</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://thesysadminchannel.com/how-to-move-an-exchange-server-2019-mailbox-database/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1393</post-id>	</item>
	</channel>
</rss>
