Security Model Problems
From: Brian Cidern (bcidern@gillespie.com)
Date: 11/01/02
- Next message: Ian Bobo: "Forgotten sa login password"
- Previous message: Edward: "Determine which windows group a user belons"
- Next in thread: Steve Thompson: "Re: Security Model Problems"
- Reply: Steve Thompson: "Re: Security Model Problems"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
From: "Brian Cidern" <bcidern@gillespie.com> Date: Fri, 1 Nov 2002 07:25:27 -0800
Some of the documents I've referenced (from MSDN) for
setting up security within SQL Server made the following
suggestions:
1. Security Mode: Windows Authentication
2. Create global domain groups and add appropriate users.
3. Create local domain group and add the appropriate
global domain groups.
4. Grant login to the local domain group.
Scenario.
-- Win2k AD groups --
Global Group: APP_read
Global Group: APP_write
Local Group: SQL_Logins
SQL_Logins (members)
APP_read
APP_write
(domain users added to the appropriate Global Domain
groups)
-- SQL Server --
USE master
sp_grantlogin 'DOMAIN\SQL_Logins'
USE APP_db
sp_grantdbaccess 'DOMAIN\APP_read'
sp_grantdbaccess 'DOMAIN\APP_write'
sp_addrolemember 'db_datareader', 'DOMAIN\APP_read'
sp_addrolemember 'db_datawriter', 'DOMAIN\APP_write'
------------
Now, when I try to connect one of the users (who has been
made a member of either of the Global Domain groups, I get
a Login Failed while trying to create/configure a User or
File DSN.
The only way I've been able to gain access from the
clients was to explicitly grant login to the specific
Global Domain group.
Details:
SQL Server 2000
Version: 8.00.679
Patch Level: SP2+Q316333
The NetLib is set to TCP/IP.
MDAC 2.62.7400.1 installed on client.
- Next message: Ian Bobo: "Forgotten sa login password"
- Previous message: Edward: "Determine which windows group a user belons"
- Next in thread: Steve Thompson: "Re: Security Model Problems"
- Reply: Steve Thompson: "Re: Security Model Problems"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|
|