LoginSignup
29
29

More than 5 years have passed since last update.

CentOS に 2.6 以上の redis をインストールしたい

Posted at

概要

普通に yum install redis すると 2.4 がインストールされた。
2.6 以上が必要なので何とかしたい。
コンパイルは面倒だし、service スクリプトも作りたくない。

方法

REMI リポジトリを利用する。

wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
sudo rpm -Uvh remi-release-6*.rpm epel-release-6*.rpm
sudo yum --enablerepo=remi,epel install redis
sudo service redis start
sudo chkconfig redis on

参考

29
29
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
29
29