За да бъда малко по-полезен... Как да намерите или зададете къде redis записва файла dump.rdb (ubuntu сървър):Първо намерете файла redis.conf:Изпълнете във вашия терминал:
ps -e aux | grep redis
Намерих моя файл redis.conf в:
var/etc/redis/
Ако вашето е на същото място, отворете файла с:
pico var/etc/redis/redis.conf
Потърсете:
# 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
В зависимост от настройката ви за "dbfilename" и "dir" тогава ще намерите своя файл redis dump.rdb.
Актуализиране :За да видите вашите конфигурации на Redis, просто изпълнете:
redis-cli CONFIG GET *