Để hữu ích hơn một chút ... Cách tìm hoặc đặt nơi redis đang lưu tệp dump.rdb (máy chủ ubuntu):Trước tiên, hãy tìm tệp redis.conf của bạn:Trong phần chạy đầu cuối của bạn:
ps -e aux | grep redis
Tôi đã tìm thấy tệp redis.conf của mình trong:
var/etc/redis/
Nếu của bạn ở cùng một nơi thì hãy mở tệp bằng:
pico var/etc/redis/redis.conf
Tìm kiếm:
# 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
Tùy thuộc vào cài đặt của bạn cho "dbfilename" và "dir", đó là nơi bạn tìm thấy tệp redis dump.rdb của mình.
Cập nhật :Để xem cấu hình redis của bạn, chỉ cần chạy:
redis-cli CONFIG GET *