0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Redisのアップグレード

Posted at

Redisのアップグレード(Ubuntu20.04版)

アップグレードしたいRedisのバージョンをあらかじめ探しておく。
ダウンロードできるサイトはこちら。
https://download.redis.io/releases/

mkdir Downloads

cd Downloads

wget https://download.redis.io/releases/redis-7.0.5.tar.gz  <= 現在のバージョン7の最新板

tar -xvf redis-7.0.5.tar.gz

cd redis-7.0.5

make

make test  <= エラーが出ることもあるが、テストなので、できなければ無視でもOK

sudo mv src/redis-server /usr/bin

sudo mv src/redis-cli /usr/bin

service redis-server restart

redis-server -v

テストの際にtclがないと言われたら、以下を実行

sudo apt-get install tcl
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?