问题
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