What user account would you recommend running the SQL Server Express 2008 services in a development environment?

后端 未结 4 1442
我寻月下人不归
我寻月下人不归 2021-01-30 13:53

The SQL Server Express 2008 setup allow you to assign different user account for each service.

For a development environment, would you use a domain user, local user, N

4条回答
  •  既然无缘
    2021-01-30 14:51

    It depends.

    • Local System - Never, it's too high a privilege.
    • Network Service - Perhaps, if you need to connect to network resources, but that's doubtful.
    • Local Service - Probably the best choice, limited privileges, do not unlock network connections
    • Local interactive user? Does it truly need to have login rights, or act as a user?
    • Domain user? Goodness no, not unless you're accessing network drives from within it; if SQL runs amok then an attacker is authenticated against the domain.

提交回复
热议问题