主頁(yè) > 知識(shí)庫(kù) > 簡(jiǎn)單粗暴的Redis數(shù)據(jù)備份和恢復(fù)方法

簡(jiǎn)單粗暴的Redis數(shù)據(jù)備份和恢復(fù)方法

熱門(mén)標(biāo)簽:西藏教育智能外呼系統(tǒng)價(jià)格 太原營(yíng)銷(xiāo)外呼系統(tǒng) 百度商家地圖標(biāo)注怎么做 地圖標(biāo)注如何即時(shí)生效 最簡(jiǎn)單的百度地圖標(biāo)注 竹間科技AI電銷(xiāo)機(jī)器人 玄武湖地圖標(biāo)注 地圖標(biāo)注費(fèi)用 小紅書(shū)怎么地圖標(biāo)注店

示例

目標(biāo):把服務(wù)器CentOS上的redis數(shù)據(jù)復(fù)制到Mac機(jī)上

步驟:

在CentOS上找dump文件位置

vi /etc/redis.conf
dbfilename dump.rdb 
dir /var/lib/redis

說(shuō)明文件在

/var/lib/redis/dump.rdb

在mac上查找dump文件位置

vi /usr/local/etc/redis.conf


dbfilename dump.rdb 
dir /usr/local/var/db/redis

拷貝服務(wù)器上的dump.rdb到mac機(jī)器

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ù)文件了。細(xì)節(jié)如下:
首先必須進(jìn)行SAVE, 因?yàn)閞edis的rdb文件并非總是內(nèi)存數(shù)據(jù)的完整鏡像,備份之前必須進(jìn)行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導(dǎo)出、導(dǎo)入、還原數(shù)據(jù)實(shí)例
  • Redis 通過(guò) RDB 方式進(jìn)行數(shù)據(jù)備份與還原的方法

標(biāo)簽:澳門(mén) 景德鎮(zhèn) 林芝 香港 廣東 唐山 揚(yáng)州 贛州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《簡(jiǎn)單粗暴的Redis數(shù)據(jù)備份和恢復(fù)方法》,本文關(guān)鍵詞  簡(jiǎn)單,粗暴,的,Redis,數(shù)據(jù)備份,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《簡(jiǎn)單粗暴的Redis數(shù)據(jù)備份和恢復(fù)方法》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于簡(jiǎn)單粗暴的Redis數(shù)據(jù)備份和恢復(fù)方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章