The TCP/IP connection to the host localhost, port 1433 has failed

匿名 (未验证) 提交于 2019-12-03 02:13:02

问题:

I'm getting this 2 errors repeatedly when I'm trying to connect eclipse with sql server through jdbc. Could anyone help me with this or explain why am I getting this?

1. The TCP/IP connection to the host localhost, port 1433 has failed.   2. The driver could not establish a secure connection to SQL Server by using Secure Sockets Layer (SSL) encryption. 

Thank you.

String driver = "com.microsoft.sqlserver.jdbc.SQLServerDriver"; Class.forName(driver).newInstance(); String connString      ="jdbc:sqlserver://localhost:1433/databaseName=Engg_Street;instance=SQLSERVER;encrypt=true;     trustServerCertificate=true"; String username = "Vijayalakshmi"; String password = ""; conn = DriverManager.getConnection(connString,username,password); 

回答1:

You need to Go to Start > Microsoft SQL Server > Configuration Tools > SQL Server Configuration Manager 

When it opens Go to

SQL Server Configuration Manager > SQL Server Network Configuration > Protocols for SQLExpress  

Where you'll find the Protocol TCP/IP, if disabled then Enable it Click on TCP/IP, You'll find its properties.

In this properties Remove All the TCP Dynamic Ports and Add value of 1433 to all TCP Port and restart your SQL Server Services > SQL Server

And Its Done...



回答2:

For this kind of issue - you can resolve by checking whether all sql server related services are running or not.

TO check Start -> Run -> services.msc  check services related to sql as SQL Server (MSSQLSERVER) SQL Server Agent (MSSQLSERVER) SQL Server Analysis Services (MSSQLSERVER) SQL Server Browser SQL Server Integration Services 10.0 SQL Server Reporting Services (MSSQLSERVER) SQL Server VSS Writer 

Start all the above services. and set to start up type to Automatic.

SQL Active Directory Helper Service is not required to keep running.

It can used to deal with error SQL server connection error 2 and with he TCP/IP connection to the host localhost, port 1433 has failed. Error: "Connection refused:



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!