Linux – How to load the dump.rdb file into redis

linuxredisunix

I have a dump.rdb file, which is in the same directory as redis.config.

When I start my sever:

redis-server ./redis.config

It does not load the data in that 1 GB file.

How do I load that data?

Best Answer

Edit your config file to set the dir option to the current working directory:

# 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 /current/working/directory