开启现有 Redis 实例的 AOF 功能(如果实例已经启用 AOF 功能则忽略此步骤)。  
# redis-cli -h old_instance_ip -p old_instance_port config set appendonly yes


通过 AOF 文件将数据导入到新的云数据库 Redis 版实例 (假定生成的 AOF 文件名为 appendonly.aof)。


# redis-cli -h aliyun_redis_instance_ip -p 6379 -a password --pipe < appendonly.aof


注意:如果原有旧的 Redis 实例不需要一直开启 AOF,可在导入完成后通过以下命令关闭。

# redis-cli -h old_instance_ip -p old_instance_port config set appendonly no

参考文章:

https://help.aliyun.com/document_detail/26357.html?spm=5176.doc66012.6.590.SzoRwT

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐