windows系统下通过cmd命令:redis-server.exe redis.windows.conf 启动redis报错,控制台报错如下:

The Windows version of Redis allocates a memory mapped heap for sharing with the forked process used for persistence operations. In order to share this memory, Windows allocates from the system paging file a portion equal to the size of the Redis heap. At this time there is insufficient contiguous free space available in the system paging file for this operation (Windows error 0x5AF). To work around this you may either increase the size of the system paging file, or decrease the size of the Redis heap with the --maxheap flag.Sometimes a reboot will defragment the system paging file sufficiently for this operation to complete successfully.

Please see the documentation included with the binary distributions for more details on the --maxheap flag.

Redis can not continue. Exiting.

根据上诉的这个情况提示,redis的内存溢出,没有足够的可用空间,可以增加系统的大小分页文件,或减少Redis的堆的大小。

使用命令:redis-server.exe redis.windows.conf --maxheap 10240000(大小自己设置就好)就可以正常启动redis了。

最新文章

  1. jquery this 和 event.target 区别
  2. 遗传算法之GAUL
  3. 【温故Delphi】Win32API之GetTempFileName
  4. javascript的一些bug
  5. 密码学初级教程(五)消息认证码MAC-Message Authentication Code
  6. 跟着百度学PHP[4]OOP面对对象编程-12-对象接口技术(interface)
  7. 20161007 NOIP 模拟赛 T1 解题报告
  8. css 字体不撑开默认块级元素问题
  9. Codeforces Round #312 (Div. 2)小结
  10. trident教程
  11. 详解网络编程必会的poll和epoll函数
  12. echarts x轴 增加滚动条
  13. U-boot2010.06移植--阶段一
  14. 移动基于Percona XTRADB Cluster的大数据解决方式
  15. php71
  16. Laravel Service Provider 中 boot 方法和 register 方法的区别
  17. hadoop 集群HA高可用搭建以及问题解决方案
  18. YII2 自动 created_at created_by updated_by updated_at
  19. VIM 配置python
  20. PyYAML和configparser模块讲解

热门文章

  1. 【Spring注解驱动开发】如何使用@Value注解为bean的属性赋值,我们一起吊打面试官!
  2. IDEA中文注释难看的简单解决办法
  3. 【FastDFS】如何打造一款高可用的分布式文件系统?这次我明白了!!
  4. Spring设置启动时执行方法
  5. Java 添加、下载、读取PDF附件信息(基于Spire.Cloud.SDK for Java)
  6. return 关键字
  7. JVM(完成度95%,不断更新)
  8. DVWA学习记录 PartⅨ
  9. WeChat小程序开发-初学者笔记(一)
  10. Spring源码解析——核心类介绍