首先要启动AOF持久化配置,在redis.windows-server.conf配置文件中做出如下更改
1
2
3
4
5
6
7
8
9
10
|
................
appendonly yes
# The name of the append only file (default: "appendonly.aof")
appendfilename "appendonly.aof"
.....................................
# appendfsync always
appendfsync everysec
# appendfsync no
...................
|
.测试
加入不小心清空了数据:
打开appendonly.aof 文件,将flushall命令删除掉,并将这个文件放到redis根目录下:
根目录下输入命令启动redis服务器,要使用如下命令启动,不然配置文件不会生效:
1
|
redis-server.exe redis.windows.conf
|
通过命令keys *,即可查看恢复的数据
到此这篇关于window环境redis通过AOF恢复数据的方法的文章就介绍到这了,更多相关redis通过AOF恢复数据内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/qq_30366755/article/details/110042212