LoginSignup
6
6

More than 5 years have passed since last update.

[CentOS]redisインストール

Posted at

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" 
6
6
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
6
6