如何让我的 SQL Server 访问 AD 组?
我在 AD 中有一个组登录到 Windows,我想要做的是使用 AD 凭据授予同一 AD 组对 SQL Server 的访问权限。
My SQL Server 设置为使用混合模式(Windows 和 SQL Server 登录)。
假设我的 AD 组名称是:MyCompanyGroup
我想授予该组访问权限以便能够连接到 SQL Server。
有人可以指导我如何做到这一点吗?
谢谢。
I have a group in AD that logins to windows and what I want to do is to grant the same AD group access to SQL Server using the AD credentials.
My SQL Server is setup to use mixed mode (windows and SQL Server logins).
So lets say my AD group name is : MyCompanyGroup
I want to grant access to that group to be able to connect to SQL Server.
Can anybody guide me how to do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有 100 多个 SQL Server 实例,则必须运行此脚本 100 多次。
另外:您需要在登录名应该有权访问的数据库中为该登录名创建特定的用户。
基本上使用类似的内容:
请参阅 MSDN 操作方法:创建数据库用户 获取详细信息。
但一切都可以编写脚本。并使用像 Red-Gate SQL MultiScript 这样的不错的工具,您甚至可以在所有 100 多个实例上自动执行它。
If you have 100+ SQL Server instances, you have to run this script 100+ times.
Also: you will need to create specific users for that login in those databases that the login should have access to.
Basically use something like:
See the MSDN How-To: Create a Database User for detailed info.
But everything can be scripted. And with a decent tool like Red-Gate SQL MultiScript, you can even have it executed on all your 100+ instances automagically.