LoginSignup
0
0

More than 5 years have passed since last update.

Redisのインストール

Posted at

やってみたのでメモ

前提

  • CentOS7

手順

  1. Redisのtarファイルをダウンロードする

    # curl -LkvOf http://download.redis.io/releases/redis-5.0.3.tar.gz
    
  2. tarファイルを展開する

    # tar xzf redis-5.0.3.tar.gz
    
  3. 展開したディレクトリに移動し、ビルドする

    # cd redis-5.0.3
    # make
    
  4. srcフォルダ配下にビルドしてできたファイルを実行する

    # src/redis-server
    

参考

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