我正在将Visual Studio 2017 for Mac与dotnet Core和EF
Core一起使用。在Docker容器中设置mssql映像后,我试图添加连接字符串,但抛出连接错误。我尝试使用不同的选项(例如ip地址,容器名称,主机名等)作为服务器名称,但是它们都不起作用。
"Default": "Server=172.17.0.2; Database=ERPDb; User=sa; Password =******;"
带有容器名称
"Default": "Server=ecstatic_hermann; Database=ERPDb; User=sa; Password=******;"
主机名:
"Default": "Server=f45840a59623; Database=ERPDb; User=sa; Password=******;"
通过在终端中使用本地主机进行连接时,其成功连接
$ mssql -s localhost -p Technocrat123
Connecting to localhost...done
sql-cli version 0.6.2
Enter ".help" for usage hints.
但是在运行应用程序时,连接失败。
感谢任何帮助。提前致谢。
如果使用本地主机,则错误为
Login failed for user ''. Reason: An attempt to login using SQL authentication failed. Server is configured for Integrated authentication only.