Open gsmith077 opened 3 years ago
Same situation. From yesterday I can't start my dotnet project in WSL2 on Windows 11. but ping and sqlcmd work normaly
Same situation. I can't start my dotnet project in WSL2 on Windows 10. but ping and sqlcmd work normaly
Same situation. From yesterday I can't start my dotnet project in WSL2 on Windows 11. but ping and sqlcmd work normaly
wsl --update resolve this issue for me
Not for me. No updates are available. Kernel version: 5.10.60.1
I fixed the problem with replacing hostneame of sql server in connection string with ip address. So it looks like it may be DNS resolving problem that only happens from dotnet.
Yeah, man! The issue in DNS resolving! By IP all works correctly. Thanks
I faced the same issue. This solution worked for me.
Create a file openssl_tls1.cnf
and put it anywhere with the following:
openssl_conf = default_conf
[ default_conf ]
ssl_conf = ssl_sect
[ssl_sect]
system_default = system_default_sect
[system_default_sect]
MinProtocol = TLSv1
CipherString = DEFAULT:@SECLEVEL=1
Then try to connect with the following command:
OPENSSL_CONF=openssl_tls1.cnf mssql-cli -S <SERVER> -U <USER> -P <PASSWORD>
I'm currently hunting down an error with
mssql-cli
on WSL2 running Ubuntu 20.04 where I am unable to connect to an external (Azure hosted) database. I do have Docker Desktop installed and am using the WSL2 integrations.sqlcmd
utility inside WSL, and that works correctly.mssql-cli
via pip to windows directly, and that works correctly.apt install mssql-cli
from the 18.04 source causes multiple package version misalignments, so that's no viable.mssql-cli
will not connect.Attempts to connect end up with the following error, after a few minutes of it's not responding:
Command to start connection is in the form below:
mssql-cli -S "Server.database.widnows.net,1433" -U Username -P password
I'm also getting the same error inside a C# project running in WSL, which is what led me to testing connection with
mssql-cli
.