window环境redis通过AOF恢复数据的方法
程序员文章站
2022-06-26 13:22:45
首先要启动aof持久化配置,在redis.windows-server.conf配置文件中做出如下更改................appendonly yes# the name of the a...
首先要启动aof持久化配置,在redis.windows-server.conf配置文件中做出如下更改
................ 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服务器,要使用如下命令启动,不然配置文件不会生效:
redis-server.exe redis.windows.conf
通过命令keys *,即可查看恢复的数据
到此这篇关于window环境redis通过aof恢复数据的方法的文章就介绍到这了,更多相关redis通过aof恢复数据内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!