LoginSignup
3
2

More than 5 years have passed since last update.

CentOS7 に redis-3.2.0 をインストール

Posted at

環境は以下の通りです。

# 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

make する前に前提となるパッケージがインストールされていないとコンパイルエラーになって、
行くも引くもできない状態になり、何度か terminate することになってしまいました。。

3
2
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
3
2