Core component of SQL Server for storing, processing, and securing data
Hi @Handian Sudianto ,
This error, the client and server cannot communicate, because they do not possess a common algorithm, is almost always a TLS version mismatch.
Since:
- Server A can connect to SQL2
- Other servers can connect to SQL1
- Only Server A → SQL1 fails
The issue is very likely that SQL1 does not support TLS 1.2, while Server A has older TLS versions (1.0/1.1) disabled.
- On SQL1, run: SELECT @@VERSION
2. If it’s an older build (SQL 2008 / 2012 / early 2014), install the latest Service Pack / CU.
3. Restart SQL Services and test again.
Updating SQL1 to a build that supports TLS 1.2 resolves this issue in most cases.
Thanks,
Akhil.