Skip to content

Instantly share code, notes, and snippets.

@rriifftt
Created May 23, 2016 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rriifftt/e1ad08dd48037ac01d84f05c3ff3bea8 to your computer and use it in GitHub Desktop.
Save rriifftt/e1ad08dd48037ac01d84f05c3ff3bea8 to your computer and use it in GitHub Desktop.
CentOS7 に redis-3.2.0 をインストール ref: http://qiita.com/satoshi_iwashita/items/c9ecdf4dff02f1a615e8
# cat /etc/centos-release
CentOS Linux release 7.2.1511 (Core)
# yum -y install gcc tcl readline-devel
# cd /usr/local/src
# curl -O http://download.redis.io/releases/redis-3.2.0.tar.gz
# tar xvzf redis-3.2.0.tar.gz
# cd redis-3.2.0
# make
# make test
# make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment