Skip to content

Instantly share code, notes, and snippets.

@dejancencelj
Forked from alfredo/gist:1548139
Created January 19, 2017 17:14
Show Gist options
  • Select an option

  • Save dejancencelj/91f8caec28a7c50baa8bd67dbd2c0b1e to your computer and use it in GitHub Desktop.

Select an option

Save dejancencelj/91f8caec28a7c50baa8bd67dbd2c0b1e to your computer and use it in GitHub Desktop.
Installing redis from debian backports
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