I am trying to connect to RDS SQL Server from my EC2 Instance (and they are in the same VPC).
As far as I understood, as long as RDS and EC2 are in the same VPC, I just need to ensure EC2 security group allows traffic from port 1433 (SQL Server); and RDS security group to allow EC2 Access. I have configured my set up as below:
Under VPC Name 'xyz' - I have two security group names 'ec2' and 'rds'. Configuration details:
'ec2' security group: Inbound rules allow port 1433 to access.
'rds' security group: Allow 'All ICMP - IPv4','All TCP' and 'All UDP' for 'ec2' security group.
I tried connecting to RDS from my EC2 Instance using SQL Management Studio (server name as rds.blah.blah...amazonaws.com,1433; with sql server authentication) but failed. The error message I received was:
'A network-related or instance-specific error occured while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: TCP Provider, error: 0 - No such host is known.) (Microsoft SQL Server, Error: 11001) No such host is known'
Just wondering if anyone can point out where I did wrong? Your help would be much appreciated!