Help! I Can’t Connect To My SQL Server Multi-Subnet Failover Cluster
Many of my customers have encountered this problem. To solve it, I usually tell them the following
The link would have everything you need to know.
They don’t go into great detail about what to do if your connection does not support multisubnetfailover=true. If your connection does NOT support that parameter, then set registerallprovidersip to false and cleanup DNS. That procedure is described best here.
How Does SQL Server Multi-Subnet Failover Cluster Actually Work?
Configuring The Client
Help Is On The Way
Get-ClusterResource “[Network Name]” | Set-ClusterParameter RegisterAllProvidersIP 0After restarting the cluster-name-object (basically restarting the role) & cleaning up all “A” records manually (clean-up isn’t done automatically) we can see our old A-records are still in DNS so we’ll need to delete those manually.
PS C:\> Get-ClusterResource -Name cluster1FS | Set-ClusterParameter -Name HostRecordTTL -Value 300