Om een beetje meer behulpzaam te zijn... Hoe te vinden of in te stellen waar redis het dump.rdb-bestand (ubuntu-server) opslaat:Zoek eerst het redis.conf-bestand:Voer in uw terminal uit:
ps -e aux | grep redis
Ik heb mijn redis.conf-bestand gevonden in:
var/etc/redis/
Als die van jou op dezelfde plaats staat, open dan het bestand met:
pico var/etc/redis/redis.conf
Zoek naar:
# 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
Afhankelijk van uw instelling voor "dbfilename" en "dir" vindt u daar uw redis dump.rdb-bestand.
Bijwerken :Als u uw redis-configuraties wilt zien, voert u het volgende uit:
redis-cli CONFIG GET *