2 Answers
- Newest
- Most votes
- Most comments
0
You can deploy fully functional 2 node AlwaysOn Availability Group for SQL Server in AWS using the automated Launch Wizard. The wizard simplifies deployment while allowing customisation of key parameters.
Steps:
- Login to AWS Console and open the AWS Launch Wizard from the search bar
- Select Choose Application and Select SQL Server
- Configure the following:
- VPC and Subnet settings where the EC2 instances will be launched. Ideally select a VPC with at least 2 subnets in different Availability Zones.
- EC2 instance type and size for the 2 nodes. Select instances with enough CPU, memory and storage for SQL Server.
- SQL Server version, edition and license type.
- Windows Server AMI and admin credentials.
- Availability Group name, listener name and port.
- Database name and recovery model.
- Review the template configuration and launch the stack. This will deploy 2 EC2 instances with SQL Server installed, joined to a domain, clustered and with an Availability Group created.
- Once deployed, connect to the primary replica and validate the Availability Group is configured properly. 5. Check the replication and failover between the nodes.
- Test failover between nodes and ensure high availability for the SQL Server instance.
More details:
0
Check out the following two links:
Relevant content
- Accepted Answerasked 2 years ago
- Accepted Answerasked 4 years ago
- asked a year ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
Very helpful. Thank you!