14
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CentOS7.xに最新版のRedisをインストールする最も簡単な方法

Last updated at Posted at 2016-06-10

はじめに

公式でRedis3系のrpmは提供されていないので、REMIを使うのが最も簡単に導入する方法となる。

必要なリポジトリの導入

環境は、CentOS 7.2 である。

まず、EPEL と REMI を導入する。

$ sudo yum install epel-release
$ wget http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
$ sudo rpm -Uvh remi-release-7*.rpm

Redisインストール

REMIはデフォルトでdisableであるため--enablerepoしてRedisをインストールする。

$ sudo yum --enablerepo=remi,remi-test,epel install redis

今(2016年6月9日現在)なら、Redis3.2がインストールされる。

14
12
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
14
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?