La connexion TCP / IP à l'hôte localhost, le port 1433 a échoué

Je reçois ce 2 erreurs à plusieurs reprises lorsque j'essaie de connecter eclipse avec sql server par jdbc. Quelqu'un pourrait-il m'aider ou expliquer pourquoi suis-je cela?

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.

Merci.

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);

source d'informationauteur Navin Kumar