|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Today @ 8:27 AM
Points: 57,
Visits: 328
|
|
I have a development server that is running SQL Server 2005. I was asked to install a new instance for some testing.
The previous service is running under NT Authority/Network Service and works. However, when I try to start the new instance under that account, I get an error saying it cannot start.
In the event viewer, I see errors regarding access to various SQL files in C:\Program Files\Microsoft SQL Server\MSSQL.4\MSSQL\ - I've explicitly granted the account full rights to that folder and everything below it but still no go.
Has anyone else run into this?
|
|
|
|
|
SSC Eights!
      
Group: General Forum Members
Last Login: Monday, May 13, 2013 6:37 AM
Points: 841,
Visits: 495
|
|
Hello,
Do you need the service to run under NETWORK SERVICE?
I would create an AD account for the service and use that. You can then assign the required access rights.
Andrew
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Today @ 8:27 AM
Points: 57,
Visits: 328
|
|
Mainly I just would like to know why it's not working, because it seems strange that it would work for one instance and not the other.
Thanks
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Wednesday, May 15, 2013 10:47 AM
Points: 179,
Visits: 1,086
|
|
Did you check to see if Network Service has permissions in the new instance?
USE Master GO
select left(name,25) name, type, type_desc from sys.server_principals AS log WHERE (log.type in ('U', 'G', 'S', 'R')) AND Name LIKE 'NT%' order by 3,1
Argue your limitations and sure enough they will be yours (Richard Bach, Illusions)
|
|
|
|
|
SSC-Dedicated
           
Group: Administrators
Last Login: Yesterday @ 1:47 PM
Points: 31,406,
Visits: 13,722
|
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: Yesterday @ 5:53 AM
Points: 2,692,
Visits: 1,074
|
|
cphite (1/31/2013) ... However, when I try to start the new instance under that account, I get an error saying it cannot start ...
What is the actual error message you're getting, and where do you see this error? Did the install have any problems? Have you tried setting the account from SQL Configuration Manager?
Hope this helps Phill Carter -------------------- Colt 45 - the original point and click interface 
Australian SQL Server User Groups - My profile Phills Philosophies Murrumbeena Cricket Club
|
|
|
|
|
SSC Eights!
      
Group: General Forum Members
Last Login: Monday, May 13, 2013 6:37 AM
Points: 841,
Visits: 495
|
|
Sorry been on holiday!
How have you been getting on with this?
Did using the configuration manager allow you to start the service under [NETWORK SERVICE] or did you get the same error?
Andrew
|
|
|
|