Aby być trochę bardziej pomocnym... Jak znaleźć lub ustawić, gdzie redis zapisuje plik dump.rdb (serwer ubuntu):Najpierw znajdź plik redis.conf:W swoim terminalu uruchom:
ps -e aux | grep redis
Znalazłem plik redis.conf w:
var/etc/redis/
Jeśli twoje miejsce jest w tym samym miejscu, otwórz plik za pomocą:
pico var/etc/redis/redis.conf
Poszukaj:
# 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
W zależności od ustawień "dbfilename" i "dir" to tam znajdziesz plik redis dump.rdb.
Aktualizacja :Aby zobaczyć swoje konfiguracje redis, po prostu uruchom:
redis-cli CONFIG GET *