How do I run Redis on Windows 32 bit?

混江龙づ霸主 提交于 2021-01-05 09:58:45

问题


I have tried to set up Redis server on my windows 7 32 bit. I did not find a 32-bit supportive version of Redis. How can I do this? Advance thanks.


回答1:


Download the .zip file to your hard drive.

Unzip the files into any location, such as ‘C:\Program Files\Redis\’.

Add the path of your Redis folder as a Windows ‘environment variable.’

Open your Command Prompt (ex: cmd.exe).

install redis server

redis-server --service-install

start redis server

redis-server --service-start

save and stop the Redis database

redis-server shutdown save

from command line please check if redis is up

redis-cli ping



回答2:


The source of redis not contains executable file like redis-server, you must compile it.

Redis not support windows officially, but microsoft had provided a fork in windows https://github.com/microsoftarchive/redis.

The release it supported is only for 64bit windows, but the document says you can build it yourself with 32bit



来源:https://stackoverflow.com/questions/57536012/how-do-i-run-redis-on-windows-32-bit

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!