Reputation: 6590
I am trying to connect to my Sql server 2012 which is setup on Azure VM. I am trying to connect it from my local Sql server 2012. I have tried all these steps
http://azure.microsoft.com/en-us/documentation/articles/virtual-machines-provision-sql-server/
But still not able to connect. I getting this error
Can Some please help me to solve this problem?
Upvotes: 0
Views: 222
Reputation: 86
Since you're connecting to cloudnet.app domain address I assume you don't use VPN. This means: - SQL Server authentication should be set to mixed mode - SQL login should be created or enabled - In case enabling SA login make sure you set the password
For connectivity part I agree with Jason's suggestions, but I would not disable firewall, since with endpoints facing public internet it is your last line of defense on the VM. Just make sure you have allow rule for the SQL Server port (most likely 1433).
Upvotes: 1
Reputation: 3753
Confirm the following:
Upvotes: 0