Did you mean to connect to: sqlserver://localhost:1433?
Port 1433 is for SQL Server database connections. Use SSMS, sqlcmd, or your database client to connect.
sqlcmd -S localhost
net start mssqlserver
(Windows)sudo systemctl status mssql-server
(Linux)
sqlcmd -S localhost -E
sqlcmd -S localhost,1433 -U sa -P password
lsof -i :1433
(Mac/Linux)netstat -ano | findstr :1433
(Windows)
net start mssqlserver
(Windows)sudo systemctl start mssql-server
(Linux)
Port 1433 is the default port for:
Cannot connect to SQL Server instance:
net start mssqlserver
Authentication error when connecting to SQL Server:
sqlcmd -S localhost -E