I'm trying to connect Azure's SQL database via SQL Server 2008 R2 SP2. I'm using Azure with free trial subscription. I already search everywhere and tried these things:
- Allow inbounds and outbounds rule in windows firewall for port 1433
- Check that TCP connections in SQL Server Configuration Manager is available and running on port 1433
- Create server and database on azure portal and configure its ip allowance
I connect with these settings
- Server Type: Database Engine
- Server Name: tcp:aaa.database.windows.net,1433 / aaa.database.windows.net
- Login: bbb@aaa
- Password: xxx
And the error is
"A network-related or instance-specific error occurred 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 - A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond) (Microsoft SQL Server, Error: 10060)"
P.S. I also can't ping xxx.database.windows.net
and can't telnet xxx.database.windows.net 1433
xxx.database.windows.net
) so... I'm assuming this is about sql-azure database. – David Makogon