当前位置:Gxlcms > 数据库问题 > redis还原dump.rdb

redis还原dump.rdb

时间:2021-07-01 10:21:17 帮助过:80人阅读

从其他机器拷贝了redis的备份数据dump.rdb后,先停止redis服务,然后将新的dump.rdb覆盖掉旧的,再启动redis服务即可,参考stackoverflow的答案如下:

There is nothing specific to do. Just install the redis server on the new machine, and edit the configuration file. You just need to change the following parameters to point to the location of the dump file you have just copied.

# The filename where to dump the DB
dbfilename mydump.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 /data/mydirectory/
Finally, the redis server can be started in the normal way.

  

redis还原dump.rdb

标签:

人气教程排行