Share via

Cannot connect to SQL Server

Handian Sudianto 6,886 Reputation points
2026-02-10T01:37:21.5066667+00:00

Let say i have server A and two sql server, SQL1 and SQL2.

When Server A try connect to SQL1 then i got below error from SSMS, but if connect to SQL2 then the conneciton is working fine.

Other servers beside Server A can connect to both SQL. A

Anyone know why? User's image

SQL Server Database Engine

Answer recommended by moderator
  1. Akhil Gajavelly 1,725 Reputation points Microsoft External Staff Moderator
    2026-02-13T04:08:15.9833333+00:00

    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.                 

    1. 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.

     

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.