Thursday, October 8, 2015

(Solved) Error: Memory gates checking failed because the free memory (201310208 bytes) is less than 5% of total memory

Error:
Memory gates checking failed because the free memory (201310208 bytes) is less than 5% of total memory. As a result, the service will not be available for incoming requests. To resolve this, either reduce the load on the machine or adjust the value of minFreeMemoryPercentageToActivateService on the serviceHostingEnvironment config element.

Solution:
To solve the above error, Add or update the below line in the Web.Config file.
<system.serviceModel>
    <serviceHostingEnvironment minFreeMemoryPercentageToActivateService="0"/>
</system.serviceModel>
Read more about serviceHostingEnvironment
https://msdn.microsoft.com/en-us/library/ms731336(v=vs.110).aspx

No comments:

Post a Comment