Redisをインストール


epel経由でredisをインストール

sudo rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

sudo yum --enablerepo=epel -y install redis

sudo /etc/init.d/redis start

sudo chkconfig redis on

外部からの接続を許可しておく

sudo cp /etc/redis.conf /etc/redis.conf.org
sudo vim /etc/redis.conf
redis.conf

-bind 127.0.0.0
+bind 0.0.0.0

動作確認だけして終わり

redis-cli

# redis 127.0.0.1:6379> exit
``

以上