About 50 results
Open links in new tab
  1. Redis raises "NOAUTH Authentication required" error but there is no ...

    I'm running Redis with Docker and there is an authentication password with the REDIS_PASSWORD env variable. After connecting to the container with docker exec command, connect to redis CLI by …

  2. Redis - monitoring memory usage - Stack Overflow

    Jun 23, 2011 · Memory is a critical resource for Redis performance. Used memory defines total number of bytes allocated by Redis using its allocator (either standard libc, jemalloc, or an alternative …

  3. How do I delete everything in Redis? - Stack Overflow

    I want to delete all keys. I want everything wiped out and give me a blank database. Is there a way to do this in Redis client?

  4. Can't bind TCP listener *:6379 using Redis on Windows

    I'm using Redis 2.8 on Windows which I downloaded from github release. After unzip and I've set maxheap in redis.windows.conf file. After running redis-server redis.windows.conf I get # Creating S...

  5. How do I run Redis on Windows? - Stack Overflow

    Jun 25, 2011 · How do I run Redis on Windows? The Redis download page just seems to offer *nix options. Can I run Redis natively on Windows?

  6. Check keys' expire times through the redis-cli - Stack Overflow

    Nov 12, 2025 · Enter the redis-cli and use: keys * to see list of all keys TTL my_key_name to see remaining expire time of the key You can execute any of Redis commands inside of the redis-cli. It's …

  7. Maximum number of databases in redis - Stack Overflow

    Apr 20, 2016 · In redis, select "number" gives access to specific database at that index. I my redis config it is set 16(why ?). We require high scaling of our application so what is the max limit for that?

  8. How to use redis username with password in docker-compose?

    Jan 21, 2022 · Currently I have the below service configured in my docker-compose which works correct with redis password. However, I would like to use also redis username together with password. Is …

  9. database - How can I stop redis-server? - Stack Overflow

    Aug 2, 2011 · On modern Ubuntu, I just use service redis-server stop and service redis-server start, after having installed it with apt-get install redis-server.

  10. How to set Redis max memory? - Stack Overflow

    Oct 14, 2015 · In a terminal, start your redis instance redis-server In a new terminal window run redis-cli In the new terminal window (step 2) run config set maxmemory 2mb Verify maxmemory by running …