Activity overview
Latest activity by lastreaction
It seems you're facing issues with connection string parameters that are not supported by the version you're using. To resolve this:
Remove Unsupported Keywords: Start by removing the unsupported keywords, Trust Server Certificate=True and Multi Subnet Failover=False .
SSL Certificate Error: When you remove Trust Server Certificate=True , it results in an SSL certificate error. This suggests tha[image] [image] [image] t your server's SSL certificate is not trusted.
Final Solution: Ensure your connection string in <ShadowConnectionString> has TrustServerCertificate=True , without spaces, and does not include unsupported keywords:
<ShadowConnectionString>Data Source=ip;Initial Catalog=Chuck2_Connect5;User ID=clu;Password=;Pooling=False;Encrypt=False;TrustServerCertificate=True;Authentication=SqlPassword</ShadowConnectionString>
This should resolve your connection issues.
/ comments
It seems you're facing issues with connection string parameters that are not supported by the version you're using. To resolve this:
Remove Unsupported Keywords: Start by removing the unsupported...