博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WCF 内存入口检查失败 Memory gates checking failed
阅读量:6316 次
发布时间:2019-06-22

本文共 774 字,大约阅读时间需要 2 分钟。

        在做JC系统时,出现这样的错误:                  

       英文报错:Memory gates checking failed because the free memory ({0} 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.

    出现该错误信息的原因是因为WCF服务激活之前,系统应该具有的最小内存量不足config文件中设置的百分比。我是在本机调试的时候出现的。

       解决方法:

       关闭其他不用的程序,释放内存。或者更改客户端webconfig中
     system.serviceModel–>
     serviceHostingEnvironment–>

     minFreeMemoryPercentageToActivateService=1属性值为小一些,或者为0。

     如下代码所示:     
minFreeMemoryPercentageToActivateService=0/>
  

你可能感兴趣的文章
git回退到某个历史版本
查看>>
HTML5基础(二)
查看>>
在Mac 系统下进行文件的显示和隐藏
查看>>
ue4(c++) 按钮中的文字居中的问题
查看>>
技能点
查看>>
读书笔记《乌合之众》
查看>>
Hadoop日记Day1---Hadoop介绍
查看>>
centos7 yum安装jdk
查看>>
zzzzw_在线考试系统①准备篇
查看>>
Android学习笔记——文件路径(/mnt/sdcard/...)、Uri(content://media/external/...)学习
查看>>
Echart:前端很好的数据图表展现工具+demo
查看>>
Linux VNC黑屏(转)
查看>>
Java反射简介
查看>>
day8--socket网络编程进阶
查看>>
node mysql模块写入中文字符时的乱码问题
查看>>
分析Ajax爬取今日头条街拍美图
查看>>
内存分布简视图
查看>>
如何学习虚拟现实技术vr? vr初级入门教程开始
查看>>
第4 章序列的应用
查看>>
初识闭包
查看>>