For at være lidt mere hjælpsom... Sådan finder du eller indstiller, hvor redis gemmer dump.rdb-filen (ubuntu-server):Find først din redis.conf-fil:Kør i din terminal:
ps -e aux | grep redis
Jeg fandt min redis.conf fil i:
var/etc/redis/
Hvis din er det samme sted, så åbn filen med:
pico var/etc/redis/redis.conf
Se efter:
# 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 /var/lib/redis
Afhængigt af din indstilling for "dbfilename" og "dir", så er det der, du finder din redis dump.rdb-fil.
Opdater :For at se dine redis-konfigurationer skal du bare køre:
redis-cli CONFIG GET *