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
3
votes
2 answers

Correct shutdown sequence for Redis cluster

Suppose I have the following Redis replication setup: 3 machines Each machine has a Redis server and a Redis sentinel. One of the servers is set as master, the other two are its slaves. What would be the correct sequence and commands to…
odedia
  • 931
  • 2
  • 11
  • 27
3
votes
1 answer

How to install and run redis-server on windows machine(10 to be specific)?

I am trying to create a sample application using redis. I am trying to install and run redis-server but I am getting this error: $ redis-server sh: redis-server: command not found
knigalye
  • 956
  • 1
  • 13
  • 19
3
votes
0 answers

Can't access Redis-Server running on Ubuntu 14.04 LTS externally

I followed the thread here: open redis port for remote connections (and various other suggestions) in an attempt to make the redis-server running on my Ubuntu 14.04 LTS accessible externally (ie: outside my home network). However, no success. When…
blu
  • 829
  • 2
  • 7
  • 14
3
votes
2 answers

Start redis server using gulp

Most of our front end development workflow is automated using gulp tasks. We're wondering if there is a way to create a gulp task for starting redis. Currently we're using redis-server which we launch with redis-server. We'd like to be able do…
emersonthis
  • 32,822
  • 59
  • 210
  • 375
2
votes
0 answers

ActionCable disconnects from redis server after 5 minutes

I have a Rails API that has Redis as an adapter of ActionCable. I only use ActionCable for a simple chat as a part of the whole system. Everything works perfect, I can subscribe, send messages, receive messages. The problem comes after 5 minutes the…
2
votes
0 answers

Can Rails use a session store without putting anything on the client, no session_id?

I'm trying to build an app with no javascript or client session. I've used Redis and find it to work well. I would simply rather not put any session_id on the client. Can this be done? Found links to the types at ActiveSupport::Cache # Rails…
listenlight
  • 654
  • 1
  • 12
  • 27
2
votes
0 answers

Sidekiq starting in production environment not working?

When i execute command in development mode it's working fine using below command bundle exec sidekiq -C config/sidekiq.yml But when i add production flag along with command like below command bundle exec sidekiq -e production -C…
Sheshnath
  • 3,293
  • 1
  • 32
  • 60
2
votes
0 answers

windows redis doesn't work

Yesterday I downloaded redis from github in zip format. In the first place everything seems working fine: the redis-server started up fine, the installing of the service was also going well. But as soon as I started the redis-cli.exe nothing…
Luuk Verhagen
  • 350
  • 1
  • 5
  • 13
2
votes
1 answer

How to load redis rdb data into running redis server without losing redis data?

I have 2 redis server. If I have backup of one redis server (example.rdb), then how to load this data to another running redis server without losing current memory data ?
Vikas Saini
  • 1,124
  • 3
  • 11
  • 24
2
votes
1 answer

Redis "--protected-mode no" not persistent data on disk

I have install redis on redhat server. When i run redis server with below command $ ./redis-server --protected-mode no and then when i restart my redis-server all data which store in redis is deleted. but when i run normal redis server command to…
Dexter
  • 1,804
  • 4
  • 24
  • 53
2
votes
0 answers

Laravel redis alternatives

I want to use shared web hosting and many of them can't support redis server. what alternatives to use? I am using LAravel 5.3 $redis=Redis::connection();
obidano
  • 43
  • 2
  • 8
2
votes
0 answers

Redis 3.2.3 crashed by signal: 11

We have a big redis node in a cluster, and we're resharding it to other nodes. While doing that, we encountered many times the error reported below, which forced us to manually kill the instance using kill -9 and reload it. In normal operation the…
joey
  • 61
  • 3
2
votes
2 answers

"Unknown error" while trying to run MSOpenTech redis server

I'm new to redis and I've basically just installed it and try to run redis server with default config, but each time I get the same error: [9108] 16 Jun 19:56:50.018 # Creating Server TCP listening socket *:6379: bind: Unknown error It's an…
Vladimir Mironov
  • 655
  • 1
  • 7
  • 23
2
votes
2 answers

redis-server offline crashes node

I am having one heck of a time here. I have read through so much documentation, and other peoples questions regarding the same topic and cannot find an answer on how to stop this from happening. I am purposely shutting down the redis server to try…
2
votes
1 answer

NOAUTH Authentication required redis

Start redis-server: redis-server /usr/local/etc/redis.conf Redis config file (/usr/local/etc/redis.conf): ... requirepass 'foobared' ... Rails - application.yml: ... development: redis_password: 'foobared ... The Error: Redis::CommandError -…
Emba Moussa
  • 662
  • 8
  • 18
1 2
3
8 9