Agar sedikit lebih membantu... Cara menemukan atau menyetel tempat redis menyimpan file dump.rdb (server ubuntu):Pertama, temukan file redis.conf Anda:Di terminal, jalankan:
ps -e aux | grep redis
Saya menemukan file redis.conf saya di:
var/etc/redis/
Jika milik Anda adalah tempat yang sama maka buka file dengan:
pico var/etc/redis/redis.conf
Cari:
# 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
Tergantung pada pengaturan Anda untuk "dbfilename" dan "dir" maka di situlah Anda menemukan file redis dump.rdb Anda.
Perbarui :Untuk melihat konfigurasi redis Anda, jalankan saja:
redis-cli CONFIG GET *