windows启动redis-server报错
来源:6-4 Redis连接池构建与测试-2
慕粉4192055
2017-12-28
老师您好,windows cmd 启动 reids-server 经常报如下错,因为怎么回事,谢谢老师。
C:\redis-2.8.0-windows>redis-server.exe
[48028] 28 Dec 00:22:57.001 #
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.
2回答
-
解释:Redis的Windows版本分配一个内存映射的堆用于共享
用于持久性操作的分叉进程。 为了分享这个
内存,Windows从系统分页文件中分配一部分等于
Redis堆的大小。 这时候没有足够的连续免费
系统页面文件中的此操作可用空间(Windows错误
0x5AF)。 要解决这个问题,你可以增加系统的大小
分页文件,或者用--maxheap标志减小Redis堆的大小。
有时重新启动会对系统分页文件进行足够的碎片整理
这个操作成功完成。
有关更多信息,请参阅二进制发行版中包含的文档
有关 - maxheap标志的详细信息。
Redis无法继续。退出。
012018-01-02 -
Geely
2017-12-30
你好,同学,windows的redis建议只在学习环境使用,因为这个是微软团队做的,不是redis官网做的。
这里面提示的就是说空间不够用了。同学可以增加内存条或者修改redis内存大小。
或者清理清理系统。让占用的内存小一些哈
00
相似问题