Abychom byli trochu užitečnější... Jak najít nebo nastavit, kam redis ukládá soubor dump.rdb (server ubuntu):Nejprve najděte soubor redis.conf:Spusťte ve svém terminálu:
ps -e aux | grep redis
Našel jsem svůj soubor redis.conf v:
var/etc/redis/
Pokud je vaše stejné místo, otevřete soubor pomocí:
pico var/etc/redis/redis.conf
Hledejte:
# 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
V závislosti na vašem nastavení pro "dbfilename" a "dir" pak zde najdete svůj soubor redis dump.rdb.
Aktualizovat :Chcete-li zobrazit své konfigurace redis, stačí spustit:
redis-cli CONFIG GET *