-
-
Save dzaporozhets/5514226 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To install redis from debian backports we need to add the backports sources. | |
1. Add to /etc/apt/sources.list: | |
deb http://backports.debian.org/debian-backports squeeze-backports main | |
2. Retrieve debian key | |
$ gpg --keyserver pgp.mit.edu --recv-keys AED4B06F473041FA | |
3. Import the key | |
$ gpg --armor --export AED4B06F473041FA | sudo apt-key add - | |
4. Update the sources | |
$ sudo apt-get update | |
5. Install redis | |
$ sudo apt-get -t squeeze-backports install redis-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment