SQL Server Windows 身份验证
我正在尝试使用 Windows 身份验证连接到远程 SQL Server Express 计算机。 我使用用户名管理员登录,但登录时收到错误消息:
Login failed for user guest ...
为什么不使用管理员帐户?
提前致谢。
I'm trying to connect to a remote SQL Server Express machine using Windows authentication.
I´m logged on with a user with username Administrator, but when logging in, I get the error message:
Login failed for user guest ...
Why is not using the Administrator account?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了使 Windows 身份验证发挥作用,目标计算机必须位于可以识别您的 Windows 凭据的域中。如果服务器不在您的组织的控制范围内,它将无法识别您的凭据,您将必须使用 Sql Server 用户 ID 和密码才能登录。
For Windows Authentication to work, the target machine has to be on a domain where your Windows credentials will be recognized. If the server is outside of your organization's control, it will not recognize your credentials and you will have to use a Sql Server user ID and password to log in.
默认情况下,SQL Server Express 仅允许本地连接 - 您可以启用它,但必须显式执行此操作。
请参阅以下内容:
SQL Server Express by default only allows local connections - you can enable it, but you have to explicitly do so.
See these: