redis啓動報錯:The Windows version of Redis allocates a memory mapped heap for sharing with

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-server.exe --maxheap 10240000(大小自己設置就好)就可以正常啓動redis。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章