To set up a virtual on-premises environment for Finance + Operations, you can follow these steps:
- Plan your domain name and DNS zones: Determine the domain name and the necessary DNS zones for your environment.
- Plan and acquire your certificates: Identify the certificates needed for your setup and acquire them.
- Plan your users and service accounts: Decide on the users and service accounts that will be required for the environment.
- Create DNS zones and add A records: Set up the DNS zones and add the necessary A records for your virtual machines (VMs).
- Join VMs to the domain: Use the appropriate method to join each VM to your domain. You can use PowerShell for this:
$domainName = Read-Host -Prompt 'Specify domain name (ex: contoso.com)'
Add-Computer -DomainName $domainName -Credential (Get-Credential -Message 'Enter domain credential')
Remember to restart the VMs after joining them to the domain.
- Download setup scripts from Lifecycle Services: Obtain the necessary setup scripts from Microsoft Lifecycle Services, ensuring they are run from a computer in the same domain.
- Describe your configuration: Update the configuration files used by the infrastructure setup scripts with the correct details for your environment.
- Create group managed service accounts (gMSAs): Set up gMSAs as needed for your environment.
- Set up file storage: Configure the file storage required for your applications.
- Set up SQL Server: Install and configure SQL Server on the appropriate machines.
- Configure certificates: Ensure that all certificates are properly configured for your environment.
- Set up SSIS and SSRS: Install and configure SQL Server Integration Services (SSIS) and SQL Server Reporting Services (SSRS).
- Set up VMs: Complete the setup of your virtual machines as per your requirements.
- Set up a standalone Service Fabric cluster: If needed, configure a Service Fabric cluster for your applications.
- Configure Lifecycle Services connectivity for the tenant: Ensure that your tenant is properly connected to Lifecycle Services.
- Deploy your Finance + Operations environment: Finally, deploy your environment from Lifecycle Services and connect to it.
By following these steps, you can successfully set up a virtual on-premises environment for Finance + Operations.
References: