I have a SQL Server 2014 instance SQLExpress installed on Windows 10 Pro, when I open SQL Server Management Studio, I am able to query my database Banners and everything is OK.
But when I try to connect to this database using ip address and port (so I could access it from my laravel backend), it says connection time out.
I already specified a port (50000) for the SQL Server service port and added that port to the Windows Firewall inbound rules.
But still no luck.
I tried to check if the port 50000 is open using: https://portchecker.co
but it says: CLOSED
Any ideas please?
It seems that the 50000 port in your PC is blocked by a naughty process, so I suggest you could check and try to
killit. Steps are as followed:win+Rto open the cmd window;netstat -aon|findstr "50000";xxx;taskkill /pid xxx -t -f, kill it!