もう少し役立つように...redisがdump.rdbファイル(ubuntuサーバー)を保存している場所を検索または設定する方法:最初にredis.confファイルを検索します:ターミナルで次を実行します:
ps -e aux | grep redis
redis.confファイルを次の場所で見つけました:
var/etc/redis/
同じ場所にある場合は、次のコマンドでファイルを開きます。
pico var/etc/redis/redis.conf
探す:
# 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
「dbfilename」と「dir」の設定に応じて、redisdump.rdbファイルが見つかります。
更新:redis構成を確認するには、次のコマンドを実行します。
redis-cli CONFIG GET *