Redis can not continue .Exiting

本文详细解析了在Windows环境下启动Redis时遇到的错误原因,包括内存映射堆分配问题和系统分页文件不足的问题,并提供了两种解决方案:一是通过修改redis.windows.conf文件中的maxheap参数;二是直接在启动命令中加入maxheap参数来调整堆大小。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Redis启动: 

redis-server.exe redis.windows.conf

Redis打成启动服务:

redis-server.exe --service-install redis.windows.conf --loglevel verbose 

 还是在解压的 Redis 文件目录下新建命令行,输入命令 
(后边的 verbose 表示: 详尽,相当于Java中的 debug级别)

Windows启动Redis时出现启动不了的情况:

TheWindowsversion ofRedisallocates a memory mapped heapforsharingwith
the forked process usedforpersistence operations.Inorder to sharethis
memory,Windowsallocatesfromthe system paging file a portion equal to the
size of theRedisheap.Atthistime thereisinsufficient contiguous free
space availableinthe system paging fileforthisoperation(Windowserror
0x5AF).Towork aroundthisyou may either increase the size of the system
paging file,ordecrease the size of theRedisheapwiththe--maxheap flag.
Sometimesa reboot will defragment the system paging file sufficientlyfor
thisoperation to complete successfully.
Pleasesee the documentation includedwiththe binary distributionsformore
details on the--maxheap flag.

Redis can not continue .Exiting

原因:

没有足够的可用空间,可以增加系统的大小分页文件,或减少Redis的堆的大小
使用--maxheap标志。
有时重启将充分整理系统分页文件(重启可以解决)
可以再启动命令后面加maxheap参数重新分配堆大小。

解决一:redis.windows.conf  设置一下maxheap 参数

maxheap 1g

解决二:启动时直接带进去

redis-server.exe redis.windows.conf --maxheap 1g

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值