I currently have a live redis server running on a cloud instance and I want to migrate this redis server to a new cloud instance and use that instance as my new redis server
To check where the dump.rdb has to be placed when importing redis data,
start client
$redis-cli
and
then
redis 127.0.0.1:6379> CONFIG GET * 1) "dir" 2) "/Users/Admin"
Here /Users/Admin is the location of dump.rdb that is read from server and therefore this is the file that has to be replaced.