/article/2019/03/09/redis-dbrestore/
redis db 迁移工具: redis-dbrestore
- 【分类】Service
- 【发布】2019-03-09 23:36
- 【更新】2019-03-20 23:46
redis-dbrestore 工具
- redis-dbrestore是用shell编写的,用来在线迁移redis数据的工具。
- 可以实现redis源实例dbX迁移至目标实例dbY.
Github: https://github.com/Vastxiao/redis-dbrestore
安装redis-dbrestore
wget -O /usr/local/bin/redis-dbrestore https://raw.githubusercontent.com/Vastxiao/redis-dbrestore/master/redis-dbrestore chmod +x /usr/local/bin/redis-dbrestore
redis-dbrestore 工具使用
# 查看命令帮助: redis-dbrestore -h # 进行数据迁移 redis-dbrestore --src-host 192.168.1.2 --src-db 0 --dst-host 192.168.3 --dst-port 6380 --dst-db 1