示例
目標:把服務器CentOS上的redis數(shù)據(jù)復制到Mac機上
步驟:
在CentOS上找dump文件位置
vi /etc/redis.conf
dbfilename dump.rdb
dir /var/lib/redis
說明文件在
在mac上查找dump文件位置
vi /usr/local/etc/redis.conf
dbfilename dump.rdb
dir /usr/local/var/db/redis
拷貝服務器上的dump.rdb到mac機器
scp root@dv:/var/lib/redis/dump.rdb ./
在mac上重啟Redis
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
PS:備份腳本
看如下腳本,
#! /bin/bash
PATH=/usr/local/bin:$PATH
redis-cli SAVE
date=$(date +"%Y%m%d")
cp /var/lib/redis/6379/dump.rdb /data01/cache_backup/$date.rdb
echo "done!"
有如上腳本,便可以cron等方式備份redis數(shù)據(jù)文件了。細節(jié)如下:
首先必須進行SAVE, 因為redis的rdb文件并非總是內存數(shù)據(jù)的完整鏡像,備份之前必須進行SAVE,即向其發(fā)送SAVE命令,其次拷貝走其rdb文件即可。
rdb的具體路徑不一定是如上路徑,可以在redis配置文件中查找, /etc/redis/6379.conf
# The filename where to dump the DB
dbfilename dump.rdb
# The working directory.
#
# The DB will be written inside this directory, with the filename specified
# above using the 'dbfilename' configuration directive.
#
# Also the Append Only File will be created inside this directory.
#
# Note that you must specify a directory here, not a file name.
dir /var/lib/redis/6379
您可能感興趣的文章:- Centos7如何備份和還原Redis數(shù)據(jù)的方法
- redis中使用redis-dump導出、導入、還原數(shù)據(jù)實例
- Redis 通過 RDB 方式進行數(shù)據(jù)備份與還原的方法