0

Running IIS 7.5 on Win2008. Trying to change the App Pool Identity to Administrator user. When I click OK on the dialog, I get this error: "Not enough storage is available to process this command. (Exception from HRESULT: 0x80070008)

I have tried IISRest and also Restart the sever But issue didn't fix.

Below is the error from Event Viewer

An update conflict has occurred, and you must re-try this action. The object SearchDataAccessServiceInstance was updated by EDC2010-TEST\SPDatabaseConfig, in the OWSTIMER (1172) process, on machine EDC2010-TEST. View the tracing log for more information about the conflict.

4

2 回答 2

0

这为我解决了这个问题。
所以我遇到了类似的错误,我在任何论坛都找不到解决方法。
我正在使用“ WMI Provider Host”在 IIS 中使用 VBScript 编辑绑定。
无论如何,在尝试了一些建议之后,例如netsh http delete sslcert ipport=0.0.0.0:443 Here和编辑注册表HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters > IRPStackSize Here
我注意到在运行我的应用程序时,“ WMI Provider Host”在内存中达到了 ±512MB,并且发现它C:\Windows\System32\inetsrv\config\applicationHost.config远远超过了那个大小。
那时我发现这个链接可以增加服务的内存分配。
希望它有所帮助。

于 2020-10-16T09:40:30.980 回答
0

尝试使用服务器管理器重新安装 IIS。根据微软的说法,这是一个机器密钥损坏问题,用于加密和解密应用程序池身份凭证。
https://forums.iis.net/t/1180041.aspx
这是微软系统级的问题,即中断请求栈空间不足,可以通过修改注册表来分配更大的IRPStackSize. 它在下面的链接中讨论。
https://support.microsoft.com/en-us/help/106167/error-message-not-enough-server-storage-is-available-to-process-this-c
https://appuals.com/fix -not-enough-storage-available-process-command/
如果有什么我可以帮忙的,请随时告诉我。

于 2020-05-26T07:17:26.923 回答