LoginSignup
2
2

More than 5 years have passed since last update.

Redisをインストール

Last updated at Posted at 2015-09-07

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
``

以上
2
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
2
2