How to recover redis data from snapshot(rdb file) copied from another machine?
问题 I transferred my redis snapshot ( dump.rdb file) using scp to a remote server. I need to run a redis server on this remote and recover the data from the dump.rdb file. How can I do that? 回答1: 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