
Creating and Configuring Mailbox Databases in Exchange Server 2016
Exchange Server 2016 comes with default one mailbox database that is created by default. It is located on a system drive, and it provides initial storage for the administrator mailbox and system mailboxes. In most cases, most organizations will need more than one mailbox database to meet the organization standards such as set different limits and retention time periods from the default database. As we know, Exchange Server 2016 Standard Edition can create up to 5 mounted databases and Enterprise Edition supports up to 100 mounted mailbox databases so why not use this options. The recommended maximum DB size: 200 GB for non-replicated databases and 2TB for replicated databases.
Creating a New Mailbox Database using Exchange Management Shell:
To restart the Microsoft Exchange Information Store service, run the following command; Restart-Service MSExchangeIS from an elevated PowerShell instance or command prompt.
Mounting a database:
The following command will issue a mount-request for database DB2:
Mount-Database DB2
Removing a Mailbox Database:
Before you can remove a mailbox database, make sure there that there must not contain any active mailboxes anymore. Once you made sure that the database is empty, you can use the following command:
Remove-MailboxDatabase <Database Name>
Creating a new mailbox databases using Exchange Admin Center (EAC):
1. On LON-EX1, click to the Start screen, and then click Internet Explorer. In Internet Explorer, type https://ktm-ex1.msserverpro.com/ecp, and then press Enter. Sign in as msserverpro\Administrator with the password Pa$$w0rd.
2. On the Exchange Admin Center page, Click servers in the feature pane, and then click the databases tab.
3. Click New (+).
4. In the Database window, in the Mailbox database text box, type MB2. Click Browse. In the Select Server window, select KTM-EX1, and then click OK. In the Database file path text box, type: E:\DB2\DB2.edb. In the Log folder path text box, type G:\Logs\DB2. Make sure that Mount this database is selected, and then click Save. Click OK.
5. On the Exchange Admin Center, verify that mailbox database, MB2 is created and mounted.
6. Double-click on mailbox-database, click on Limits tab to specify the storage limits, the warning message interval, and the deletion settings for a mailbox database:
Configuring Mailbox Database Quotas:
You need to modify the default mailbox database to meet the organization requirements. By default the mailbox database have issue a warning limit set to 1.9 gigabytes (GB), prohibit send at 2 GB, and prohibit send and receive at 2.3 GB. You need to set different limits and retention time periods as per organization requirements.
To view the current mailbox quota levels use the Get-MailboxDatabase cmdlet:
Get-MailboxDatabase | fl Name,IssueWarning*,ProhibitSend*
To modify the storage limits, the warning message internal for a mailbox database:
Get-MailboxDatabase | Set-MailboxDatabase -IssueWarningQuota 4.5GB -ProhibitSendQuota 5GB –ProhibitSendReceiveQuota 6GB
There is one more setting you should check for your databases. You also need to set modify the deletedItemRetention time periods from the default database.
Summary:
In this article, I have created a mailbox database using Exchange Management Shell and Exchange Admin Center (EAC), remove a mailbox database, and modify mailbox database limits and retention time periods from the default database in Exchange Server 2016. I hope this article helps.
- Deploy and Configure VM Scale Sets (VMSS) in the Azure Portal - February 24, 2019
- Configuring an Availability Set with the Azure Load Balancer - February 9, 2019
- Creating and Connecting Linux Ubuntu VM in Azure - December 29, 2018
- My Precious IT Books Collections - March 1, 2018
- Configuring Azure Traffic Manager using Performance Based Routing Method - January 20, 2018
- Configuring a Point-to-Site Connection to a VNet using Azure Portal - November 28, 2017
- Configuring a VNet-to-VNet VPN Gateway Connection Using the Azure Portal - October 27, 2017
- Configuring Azure VNet Peering by using the Azure Portal - October 19, 2017
- Using the Azure Portal to Create Virtual Networks, Add Subnets and Setting up a DNS Server Address - October 17, 2017
- Extend Azure Virtual Machine OS drive using Azure Portal - June 30, 2017
When I create a new database, but it is “Content index state: Unknown”.