Questions tagged [redis-server]

Redis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.

Redis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.

http://redis.io/

126 questions
1
vote
1 answer

Using MichaCo\CacheManager with Redis4You and RedisLab redis server

https://github.com/MichaCo/CacheManager/issues/42 Hi. I'm using Redis4You hosted redis server. And the following configuration works fine. When the code comes to line Cache.Add("a", "b");, then it stucks there for an infinite time. When I monitor…
rebulanyum
  • 487
  • 10
  • 21
1
vote
2 answers

Two instances of redis process in linux

I always face the problem of having two instances of redis running in my login and also in the root like below aarish@aarish:~/redis# tcp 0 0 0.0.0.0:6379 0.0.0.0:* LISTEN 2036/redis-server …
Aarish Ramesh
  • 6,745
  • 15
  • 60
  • 105
0
votes
0 answers

openvidu connecting from an external network, only the video is not output

using openvidu 2.9.0 It seems like you have OpenVidu installed on a Hyper-V virtual machine with a public IP, and port forwarding is set up. However, when someone connects to the video conference from an external IP, their video doesn’t show up.…
0
votes
1 answer

Redis Cluster/Sentinel on Kubernetes

I currently have some redis running on different VM's for different applications and I would like to centralize it, to facilitate maintenance and have high availability. I'm using TCPIngress from the kong ingress controller With that, I'm trying to…
0
votes
1 answer

Is there a simple way to change datadir of multiple redis-server on one machine?

I am running multiple instances of redis servers on my machine for different projects, I am wondering if there is a flag I can add on startup for each to specify the datadir for the the persistent file location? All solutions I have found to date…
Chris_livermore
  • 171
  • 1
  • 13
0
votes
2 answers

Redis client-side cache (tracking) test

I'm testing Redis client-side caching using redis-cli. Redis server version: 7.0.11 redis-cli version: 7.0.11 redis-cli 1 I started with the monitor command: redis-cli monitor In redis-cli 2 I run the snippet: HELLO: 3 CLIENT TRACKING ON PREFIX…
0
votes
0 answers

How to use Redis and Redis-Sentinel without saving passwords in clear-text?

I use Redis 6.2 services on different servers, and each one of them has a Redis Sentinel instance. For each Redis instance, I have a redis.conf that stores: The password that clients and Sentinel use to authenticate as requirepass For…
0
votes
0 answers

Multiple redis instances: opening the temp file needed for Master <-> Replica synchroniziation: Permission denied

I want to run multiple redis instances on one centOS 7 server. The instances are read-only replicas, which get synchronized from another server. I followed this questions answer to get the second instance running. At first I had a problem with not…
whatever.idc
  • 92
  • 1
  • 1
  • 10
0
votes
0 answers

Monitor Redis replica lag using netdata

I want to monitor the redis replica for lags. If the lag increases more than a certain level, I would want to be alerted. Here by lag I mean, if the replica is lagging behind the master. I would like to achieve this using Netdata Monitoring. My…
HarshM
  • 21
  • 6
0
votes
1 answer

Redis-cluster setup on ubuntu 20.04

i want to setup multi-node redis-server cluster on ubuntu 20 using docker i am getting documents for single node redis-server cluster can anyone share me the commands or the links for setting up multinode redis-server cluster
syed adeeb
  • 109
  • 10
0
votes
0 answers

How to run redis-server and Nodejs at the same time on Dockerfile

I'm trying to deploy me web app project via google cloud. By the way, my web app do have to start the redis-server first before npm start. When I run it on my localhost, there are not any problem since I start redis-server via terminal application…
Newbie
  • 15
  • 6
0
votes
0 answers

Can not connect redis-vm server using docker

I have use the Ubuntu Virtualbox. Docker version : Docker version 20.10.12, build e91ed57 redis version: 3.0 From Ubuntu, I'm trying to initialize and connect to redis-vm server. I have use following docker commands to build, create container and…
0
votes
0 answers

Unable to connect to Redis : nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379

@Bean public RedisCacheManager redisCacheManager(LettuceConnectionFactory lettuceConnectionFactory) { RedisCacheConfiguration redisCacheConfiguration = RedisCacheConfiguration.defaultCacheConfig() .disableCachingNullValues(); …
0
votes
0 answers

Redis connection timeout running on AWS EC2

I have a redis server running on AWS EC2 (Amazon Linux 2, t3.small). The security group is configured for all hosts (development purpose) on port 6379 and also in redis conf, I have set bind 0.0.0.0 and protected mode off. Intilally i was able to…
0
votes
1 answer

Redis data is not persistent

I am new to using Redis and I am playing around a little bit with it. I have noticed that after a little time, let's say 10 minutes all the keys that I inserted just go away. I just did the default installation showed in the documentation. I didn't…
Erick Villatoro
  • 170
  • 1
  • 9
1 2 3
8 9