zoukankan      html  css  js  c++  java
  • 【转】Memory gates checking failed because the free memory***解决办法

    Issue:

    Vault users cannot connect. VLOGS show the following error: 
    Memory gates checking failed because the free memory (xxxxxx bytes) is less than 5% of total memory. 

    Windows Application event log shows: 
    Event 3: System.ServiceModel 
    WebHost failed to process a request.
     Sender Information: System.ServiceModel.ServiceHostingEnvironment+HostingManager/6044116
     Exception: System.ServiceModel.ServiceActivationException: The service '/AutodeskDM/Services/v18/PropertyService.svc' cannot be activated due to an exception during compilation.  The exception message is: Memory gates checking failed because the free memory (xxxxxxxxx bytes) is less than 5% of total memory.  As a result, the service will not be available for incoming requests.

    Causes:

    The issue occurs because you have less than 5% available memory free and by default, the program checks for 5% free memory. 


    Solution:

    Edit the web.config file as follows:
      1. In Windows Explorer, navigate to C:Program FilesAutodeskADMS <version> 2014ServerWebServices
      2. Make a backup copy of web.config (eg. web.config.bak)
      3. Open the file named web.config in notepad.
      4. Find the line <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
      5. Change it to be <serviceHostingEnvironment aspNetCompatibilityEnabled="true" minFreeMemoryPercentageToActivateService="0" />
      6. Open a command line window and type the command IISRESET to reset IIS
  • 相关阅读:
    10年学到的编程经验总结
    高效阅读源代码指南
    一行代码解决各种IE兼容问题,IE6,IE7,IE8,IE9,IE10
    如何用git将项目代码上传到github
    关于[].slice.call(arguments, 1) 的思考
    前端笔试题(一)
    2017年第一波JavaScript前端面试题
    2017前端面试题之综合篇(1)
    2017前端面试题之Js篇(1)
    前后端分离后各自职责
  • 原文地址:https://www.cnblogs.com/dazhuangtage/p/7390133.html
Copyright © 2011-2022 走看看