Tomaž's picture

Hello!

Been trying to solve this one for a few days already. Anyway, solution is quick and easy:

 

1. apt-get remove redis-server

2. Put this in /etc/apt/preferences:

Package: *
Pin: release o=packages.dotdeb.org
Pin-Priority: 100

Package: redis-server
Pin: release o=packages.dotdeb.org
Pin-Priority: 900

3. Create file with this content in /etc/apt/sources.list.d/:

deb http://packages.dotdeb.org wheezy all
deb-src http://packages.dotdeb.org wheezy all

And run this command to import their key:

wget http://www.dotdeb.org/dotdeb.gpg
apt-key add dotdeb.gpg

4. Then you can simply:

apt-get install redis-server

 

Yiou can test it with /etc/init.d/redis-server restart.

 

Now things are working!