Redis
 sql >> Database >  >> NoSQL >> Redis

redis dump.rdb / salvataggio di piccoli file

Per essere un po' più utile... Come trovare o impostare dove redis sta salvando il file dump.rdb (server Ubuntu):per prima cosa trova il tuo file redis.conf:nel tuo terminale esegui:

ps -e aux | grep redis

Ho trovato il mio file redis.conf in:

var/etc/redis/

Se il tuo è lo stesso posto, apri il file con:

pico var/etc/redis/redis.conf

Cerca:

# 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

A seconda delle tue impostazioni per "dbfilename" e "dir", è lì che trovi il tuo file redis dump.rdb.

Aggiorna :Per vedere le tue configurazioni Redis, esegui:

redis-cli CONFIG GET *