Exception troubleshooting
Redis-server redis.windows.conf
D:\redis-2.8.17>redis-server.exe redis.windows.conf
[4692] 12:14:05.995 #
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 are insufficient contiguous free
Space available in the system paging file for this operation (Windows error
0X5AF). To work around this is either increase the size of the system
Paging file, or decrease the size of the Redis heap with the--MAXHEAP flag.
Sometimes a reboot would 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.
As a hint, there is a problem with the Maxheap identity, open the profile redis.windows.conf, search for maxheap, and then directly specify the good content.
# maxheap <bytes>maxheap 1024000000
Then start again, OK, success.
Redis Exception Troubleshooting