LoginSignup
6

More than 5 years have passed since last update.

posted at

[CentOS]redisインストール

Redis install

Install Procedure

# cd /usr/local
# wget http://redis.googlecode.com/files/redis-2.6.10.tar.gz
# tar xzf redis-2.6.10.tar.gz
# cd redis-2.6.10
# make
# make install

サーバ起動

${REDIS_PATH}/src/redis-server

クライアント起動

${REDIS_PATH}/src/redis-cli

#確認
redis> set hoge fuga
OK
redis> get hoge
"fuga" 

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
What you can do with signing up
6