How to find Redis data directory

To find the data directory in redis, run the command

redis-cli config get dir

redis data directory

Redis data directory is specified in the configuration file

/etc/redis/redis.conf 

The entry is

dir /var/lib/redis

redis data directory should be owned by user redis

chown redis:redis /var/lib/redis

Example

[root@server redis]# cd /var/lib/redis/
[root@server redis]# ls -la
total 12
drwxrwx---   2 redis redis 4096 Dec  2 06:44 .
drwxr-xr-x. 37 root  root  4096 Nov 20 17:30 ..
-rw-r--r--   1 redis redis   92 Dec  2 06:44 dump.rdb
[root@server redis]#

See Redis

Need help with Linux Server or WordPress? We can help!

Leave a Reply

Your email address will not be published. Required fields are marked *