[redis] redis-dump导出导入数据
Posted zibb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[redis] redis-dump导出导入数据相关的知识,希望对你有一定的参考价值。
环境说明:
172.20.0.1 旧redis 172.20.0.2 新redis node101 任意linux系统
1.安装redis-dump工具
[[email protected] ~]# yum install ruby rubygems ruby-devel -y # 更改gem源 [[email protected] ~]# gem sources -a http://ruby.taobao.org Error fetching http://ruby.taobao.org: bad response Not Found 404 (http://ruby.taobao.org/specs.4.8.gz)
访问http://ruby.taobao.org,公告通知镜像维护站点已迁往Ruby China镜像
[[email protected] ~]# gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/ https://gems.ruby-china.org/ added to sources source https://rubygems.org/ not present in cache [[email protected] ~]# gem sources -l *** CURRENT SOURCES *** https://gems.ruby-china.org/
[[email protected] ~]# gem install redis-dump -V
2.node101导出
[[email protected] ~]# redis-dump -u :[email protected]:6379 > 172.20.0.1.json
3.node101导入
[[email protected] ~]# cat 172.20.0.1.json | redis-load -u :[email protected]:6379
以上是关于[redis] redis-dump导出导入数据的主要内容,如果未能解决你的问题,请参考以下文章