user6922072
user6922072

Reputation:

Redis : How to back up redis data from remote to local?

I have local redis in my ubuntu and remote redis that I am using with aws. I wonder is there any way I can save up data from remote connection in my local ubuntu.

Upvotes: 1

Views: 884

Answers (1)

Linfeng
Linfeng

Reputation: 26

  1. run SLAVEOF host port at your local redis
  2. run BGSAVE to dump to disk

Upvotes: 1

Related Questions