थोड़ा और मददगार होने के लिए... कैसे पता करें या सेट करें कि redis डंप.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
"डीबीफाइलनाम" और "डीआईआर" के लिए आपकी सेटिंग के आधार पर आपको अपनी रेडिस डंप.आरडीबी फाइल मिलती है।
अपडेट करें :अपनी रेडिस कॉन्फ़िगरेशन देखने के लिए बस दौड़ें:
redis-cli CONFIG GET *