redis安装教程
1、官网下载:https://github.com/MicrosoftArchive/redis/releases
1、官网下载:https://github.com/MicrosoftArchive/redis/releases
2、解压,安装
在redis的目录下Shift+鼠标右键,打开window命令。执行:
redis-server.exe redis.windows.conf
成功是出现下图
3、测试redis是否成功
打开redis-cli.exe,输入键值和获取键值,测试成功
4、将redis注册成Window服务
执行命令:redis-server --service-install redis.windows-service.conf --loglevel verbose
服务注册成功:
5、服务常用操作命令
卸载服务:redis-server --service-uninstall
开启服务:redis-server --service-start
停止服务:redis-server --service-stop
6、配置远程访问
注释redis.windows.confi中的127.0.0.1IP,换成服务IP
配置密码:config文件中添加密码
配置后重启服务,测试密码:
config get requirepass //获取当前密码
config set requirepass "yourpassword"//设置当前密码,服务重新启动后又会置为默认,即无密码;不建议此种方式
7、客户端连接测试,大功告成