我需要每天早上重新启动MS SQL服务器服务,因为我的web客户端站点无法连接。
然而,当我启动我的服务时,它就能工作了。我不知道是什么导致了这个问题。我在我的错误日志中找到了这个。
sqlservr (4052) An attempt to open the file "C:\Windows\system32\LogFiles\Sum\Api.log"
for read only access failed with system error 5 (0x00000005):
"Access is denied. ".
The open file operation will fail with error -1032 (0xfffffbf8).
sqlservr (3000) An attempt to open the file "C:\Windows\system32\LogFiles\Sum\Api.chk"
for read / write access failed with system error 5 (0x00000005): "Access is denied. ".
The open file operation will fail with error -1032 (0xfffffbf8).希望有人能帮我解决这个问题。
发布于 2014-09-16 16:41:46
您的serviceaccount需要访问该文件夹:
C:\Windows\System32\LogFiles\Sum转到该文件夹并添加具有读/写权限的帐户。
http://support.microsoft.com/kb/2811566
https://stackoverflow.com/questions/25830912
复制相似问题