För att vara lite mer hjälpsam... Hur man hittar eller ställer in var redis sparar filen dump.rdb (ubuntu-server):Hitta först redis.conf-filen:I din terminal kör:
ps -e aux | grep redis
Jag hittade min redis.conf-fil i:
var/etc/redis/
Om din är på samma plats öppnar du filen med:
pico var/etc/redis/redis.conf
Leta 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
Beroende på din inställning för "dbfilename" och "dir" så är det där du hittar din redis dump.rdb-fil.
Uppdatera :Kör bara för att se dina redis-konfigurationer:
redis-cli CONFIG GET *