Redis is an open source, highly-scalable key-value store, commonly referred to as a "NoSQL database."
Questions tagged [redis]
441 questions
0
votes
1 answer
Redis: INFO doesn't report network/bandwidth metrics?
Is there a way to get network/bandwidth metrics from a given Redis process? Something I missed in the output of the INFO command? Some patch or compile time configuration option?
Or would I need to add some iptables packet counting commands and…

Jim Dennis
- 807
- 1
- 10
- 22
0
votes
2 answers
Permissions error trying to dump Redis to a Vagrant shared folder
I keep getting a permissions error when trying to dump the Redis .rdb file to my vagrant shared folder. The saves are working fine when going to the default /var/lib/redis location.
A few things I've tried (suggested in various forums / threads):
1)…

binaryorganic
- 6,021
- 4
- 18
- 19
0
votes
1 answer
celery tasks from one domain appear on another domain's django admin hosted on the same box
I have a rather funny problem that I didn't manage to find it elsewhere. I have 2 django-celery projects running with redis on 2 different domains, but apparently hosted on the same box. I don't have sudo access, so I don't use the reddis daemon or…

symbiotech
- 101
- 4
0
votes
1 answer
Redis error on start: invalid bind address
I am seeing in the following in my redis log:
[1398] 17 Jun 22:55:53.467 # Opening port 6379: invalid bind address
When trying to start redis with service redis start. However, I confirmed that is nothing bound to port 6379 by running:
lsof -i…

Justin
- 5,328
- 19
- 64
- 84
0
votes
1 answer
Production redis server has 100% cpu usage
My production redis server has gone mad and has been hogging up 100% of CPU usage.
I have done everything that I can from upgrading redis server to restarting the machine.
I can't figure out what's causing it.
Here's the redis.log
> [851] 17 Jun…

zoras
- 111
- 1
- 2
0
votes
1 answer
How to install Redis - executables missing after make
Trying to install Redis on Ubuntu 12.04.2 LTS. I ran the steps from the website:
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
And then:
sudo cp redis-server /usr/local/bin/
sudo cp redis-cli…

manafire
- 105
- 1
- 5
0
votes
1 answer
Getting a connect timed out error when using HttpRedis and eval modules for NGiNX
I am trying to catch the value from Redis. So that I can echo it via a variable. This is why I am using eval block. But for some reason I am getting errors.
I don't get any config errors when I reload them.
Here are the errors I get after I try to…

jnbdz
- 927
- 5
- 24
- 46
0
votes
1 answer
Force apt-get not to upgrade a custom package dkpg
I've created my own deb package for Redis 2.6.11 instead of the very old default version for Ubuntu. All works well except when I do an apt-get upgrade it tries to install what it thinks is the latest version of redis-server How can tell the package…

Derek Organ
- 591
- 1
- 10
- 20
0
votes
1 answer
fsockopen(): unable to connect to 127.0.0.1:6379
Im running centOs 6.3, I installed redis-server via remi repository on my local machine. I can run the redis cli.
But when I try to connect via php script I get
fsockopen(): unable to connect to 127.0.0.1:6379
I tried running this after…

Mukesh Yadav
- 153
- 4
- 15
0
votes
1 answer
redis conf changes without restart
Sorry for a silly question, I want to change logfile and loglevel in redis without doing restart, if there is a way to do that?

com
- 261
- 2
- 15
0
votes
1 answer
With NGiNX how can get a user to access a file on another server without redirection?
I have a server that is password protected, where I store files that I want my users to be able to access only if they have the rights.
In the NGiNX configs I want to be able to do something like this:
proxy_pass…

jnbdz
- 927
- 5
- 24
- 46
0
votes
3 answers
How to choose NoSQL database engine?
We have a database with following specs:
30k records, 7mb in size
20 inserts/second
1000 updates/second
1000 range selects/second, by secondary index, approx 10 rows each
needs at least one secondary index
needs some mechanism to expire keys if…

Poma
- 1,299
- 6
- 24
- 35
0
votes
1 answer
Getting cron to start Redis on reboot
I am trying to get Redis to start every time my system reboots to make sure that the cache are availables to my webserver. What I did is that inserted the following line in my crontab:
@reboot redis-server /path/to/redis.conf
After rebooting my…

Régis B.
- 193
- 1
- 13
0
votes
1 answer
Setting Up Redis-py in ubuntu
I am trying to install redis-py or redis-rb (preferably redis-py) but none of the sites I visit and the blogs I have read have provided a solution that has been satisfactory. Can anyone please tell me how I can set it up. It is quite urgent.
I am…

Paul
- 1
- 1
0
votes
2 answers
Monitoring Redis and mysql server for memory and cpu usage
I want to compare the memory and cpu usage of the the redis-server and the mysql-server. I have used a profiler to get the client data but I would also like to know what is going on on the servers when I execute queries.
Do you know a tool that I…

x_maras
- 109
- 3