CentosでRedisをインストール

1039 ワード

  • インストール依存プログラム
    yum install gcc-c++
    yum install -y tcl
  • を確認する.
  • インストールファイル
    wget http://download.redis.io/releases/redis-3.2.9.tar.gz
    tar xzf redis-3.2.9.tar.gz
    mv redis-3.2.9 /usr/local/redis
  • を取得する.
  • はディレクトリ
    cd /usr/local/redis
  • に入る.
  • コンパイルインストール
    make
    make install
  • プロファイルディレクトリ
    mkdir -p /etc/redis
    cp redis.conf /etc/redis
  • を設定する.
  • プロファイル
    vim /etc/redis/redis.conf
    daemonize yes (no -> yes)
  • の変更
  • 起動
    /usr/local/bin/redis-server /etc/redis/redis.conf
  • 起動
    ps -ef | grep redis
  • を表示
  • クライアント
    redis-cli
    set name Joe
    Ok
  • を使用する.
  • クライアント
    redis-cli shutdown
  • を閉じる.
  • 起動構成
    #          rc.local  ,  /etc/profile   ,       ,     。
    echo "/usr/local/bin/redis-server /etc/redis/redis.conf &" >> /etc/rc.local