What service accounts to use when installing SQL Server 2008 on a Dev Box

后端 未结 5 1951
轻奢々
轻奢々 2021-02-02 06:38

I am installing SQL Server 2008 on my development machine and during the install I am asked to assign accounts to the different services. What account should I use for the servi

相关标签:
5条回答
  • 2021-02-02 06:51

    If you are not on a domain, then you can use a local user account, and you can use still access from another machine. You just have to match the username and password (that domain or machine part doesn't matter.

    example: devmachine\Andy homemachine\Andy

    Andy can access his devmachine from his homemachine. At least, the user authentication will pass. Good luck setting up the firewall, ports, and the like.

    0 讨论(0)
  • 2021-02-02 06:56

    If it's a dev machine, I generally just go with SYSTEM. Otherwise, I try to use a domain account, since I often need to kick off SSIS packages with SQL Server Agent, and it's nice if I can just use that service account instead of creating the proxies necessary.

    0 讨论(0)
  • 2021-02-02 07:01

    Only use a domain account if you need your SQL Server instance to communicate with other instances, Exchange or any other network services. Otherwise just create a dedicated local system account.

    0 讨论(0)
  • 2021-02-02 07:07

    You cannot use NT AUTHORITY\LOCAL SERVICE. Also you cannot use a local account.

    The recommended way is to use a domain account. Next best thing is NT AUTHORITY\NETWORK SERVICE.

    0 讨论(0)
  • 2021-02-02 07:16

    I prefer to make a dedicated local account for SQL Services with no special rights, then let the SQL Server installer grant only the necessary perms to that account. It feels safer.

    0 讨论(0)
提交回复
热议问题