Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot connect remotely to SQL Server instance [closed]

Tags:

sql

sql-server

I have an instance of SQL Server 2012 and when I try to connect with it from other PC through SQL Server Management Studio it's not even visible. I can see all other instances which are placed on other PCs.

I tried everything to fix it:

  • disabled firewall
  • turned off Anti-Virus
  • enabled remote connections to this server
  • enabled TCP/IP protocol in SQL Server Manager
  • checked if SQL Server and SQL Server Browser is running
  • restarted SQL Server and SQL Server Browser a lot of times
  • also tried this: https://stackoverflow.com/a/11278115/2717303
  • and finally I have reinstalled SQL Server and every component of it

And still I can't see my instance. Does somebody have any other ideas how to fix it?

Here are some screenshots of SQL Server Configuration Manager: enter image description here

enter image description here

enter image description here

like image 934
borkowij Avatar asked Aug 27 '13 10:08

borkowij


People also ask

How do you fix TCP Provider An existing connection was forcibly closed by the remote host?

An existing connection was forcibly closed by the remote host' error SOLUTION: The fix is to update the Microsoft SQL 2012 Native client to a higher version on the AOS.

Can't access SQL Express remotely?

Security & ConnectionsRight-click on your server name and click 'Properties'. Go to the Security page for Server Authentication, and select 'SQL Server and Windows Authentication' mode. Then, go to the Connections page and ensure that "Allow remote connections to this server" is checked, and click OK.

Could not connect to Microsoft SQL Server provider Cannot be found?

This error is generally encountered when either: the SQL Server Native Client driver (aka "provider") is not installed or. the driver installed on the computer is not fully compatible with the version of SQL Server that is being accessed.


1 Answers

What server name you are using ?

You have to open port for it. After opening port your server name looks like follow.

server name : IP\SqlExpress, 5012

Where 5012 is random port.

like image 97
Ajay Avatar answered Nov 15 '22 04:11

Ajay