In the last part of this Exchange 2016 migration series we looked at installing the first Exchange 2016 Mailbox server into the Not Real University organization. Now it’s time to configure the client access services for the new server.
Not Real University is using the same client access namespaces for Exchange 2016 as the existing Exchange 2010 and 2013 servers, so there are already DNS records in place. If you are deploying Exchange 2016 into a different site with new namespaces, you should add the DNS records for the namespaces first.
The Exchange 2016 client access namespace configuration can be performed using the Exchange Admin Center, but that’s the slow way of doing it. Instead, let’s use a PowerShell script that is built for this purpose, called ConfigureExchangeURLs.ps1. You can download it from the TechNet Gallery.
To configure the Not Real University Exchange 2016 server, the command is:
PS C:\Scripts> .\ConfigureExchangeURLs.ps1 -Server NREXCH16 -InternalURL mail.notrealuniversity.com -ExternalURL mail.notrealuniversity.com -AutodiscoverSCP autodiscover.notrealuniversity.com
Next, the SSL certificate needs to be configured. If you’re new to the topic of SSL for Exchange, you can learn more about it here. Not Real University is using the same certificate that is already in use on the Exchange 2013 and 2010 servers, so the steps are:
- Export/import the SSL certificate to the new server
- Enable the SSL certificate for services in Exchange Server 2016
For environments where a new certificate is required, the steps are:
- Generate a certificate signing request (CSR) for Exchange Server 2016
- Submit the CSR to your chosen certificate authority
- Complete the pending certificate request on the Exchange server
- Export/import the SSL certificate to any additional servers (for multi-server scenarios)
- Enable the SSL certificate for services in Exchange Server 2016
After the SSL certificate has been installed and enabled, restart IIS on the server for all of the recent changes to take effect.
In the next part of this series, we’ll look at configuring mailbox databases.