Questions tagged [redis]

45 questions
2
votes
0 answers

Could not connect to Redis at 127.0.0.1:6379: Cannot assign requested address

I tried connect to redis server but I can't. $ redis-cli Could not connect to Redis at 127.0.0.1:6379: Cannot assign requested address $ telnet localhost 6379 Trying 127.0.0.1... telnet: Unable to connect to remote host: Cannot assign requested…
2
votes
1 answer

How can BGREWRITEAOF return ERR?

The documentation for BGREWRITEAOF states that BGREWRITEAOF always returns the string value OK. Well, today I sent BGREWRITEAOF to my redis-server 2.6.7 and received (error) ERR in response. maxmemory is 3G; appendonly is yes. The system has 4gb of…
1
vote
1 answer

Installing redis-server-stack on MacOsx (load command 0x80000034 is unknown) error

I have redis-server running fine. I cant run redis-server-stack. The modules don't seem to be loading. 41188:M 21 Oct 2023 16:35:10.184 # Module /usr/local/Caskroom/redis-stack-server/7.2.0-v4/lib/redisearch.so failed to load:…
Merlin
  • 131
1
vote
0 answers

Redis cluster failing over too frequently

Out of 12 masters, 4 masters failed over same time not sure about the reasons. Couldn't find much from slowlog. We have configured only 1 slave whenever fail-over happens master link status will be down for more than 1 minute. I am suspecting some…
0
votes
1 answer

Get client’s full last command (including key) from Redis

Redis’s client list will give you the last command issued by client. It does not give you the key that last command was issued on. What I would like to get is the list key a client is doing BLPOP on. Is there a way to get this?
Jeremiah
  • 103
0
votes
1 answer

Error: connect ECONNREFUSED 127.0.0.1:6379[nodemon app crashed]

Hi I’m working on a typescript project(express, PostgreSQL) on m1 and I installed Redis to yarn and started the local server (nodemon) and the error was happen. Before I implemented the Redis to my project that’s not an issue. Here is error > %…
Taiga
  • 45
0
votes
1 answer

redis-server run multiple times binds multiple listening sockets on the same port?

On Windows Server 2019, under WSL I ran by mistake redis-server a 2nd time, and it didn't report a failure in binding the listening socket. Here's the output of netstat: C:\Users\Administrator>netstat -ano | grep 6379 | grep LISTEN TCP …
Aviad P.
  • 163