Thirumal Asked: 2020-05-27 17:16:52 +0800 CST2020-05-27 17:16:52 +0800 CST 2020-05-27 17:16:52 +0800 CST How to install Redis-Server 6.0.1 in Ubuntu 20.04? 772 I have Redis version 5.0.7 in my system, is there any command to update to 6.0.1? database redis 2 Answers Voted Supawat Pusavanno 2021-11-19T21:12:10+08:002021-11-19T21:12:10+08:00 for redis version 6.2.x, the instruction from redis download page https://redis.io/download section From the official Ubuntu PPA $ sudo add-apt-repository ppa:redislabs/redis $ sudo apt-get update $ sudo apt-get install redis I believe the PPA is maintained by redis team. Best Answer abu_bua 2020-05-28T09:24:32+08:002020-05-28T09:24:32+08:00 From the redis-server page: Download, extract and compile Redis with (you have of course to install via apt the build-essential and wget packages): wget http://download.redis.io/releases/redis-6.0.3.tar.gz tar xzf redis-6.0.3.tar.gz cd redis-6.0.3 make The binaries that are now compiled are available in the src directory. Run Redis with: src/redis-server You can interact with Redis using the built-in client: $ src/redis-cli redis> set foo bar OK redis> get foo "bar"
for redis version 6.2.x, the instruction from redis download page https://redis.io/download section
From the official Ubuntu PPA
I believe the PPA is maintained by redis team.
From the redis-server page:
Download, extract and compile Redis with (you have of course to install via apt the build-essential and wget packages):
The binaries that are now compiled are available in the src directory. Run Redis with:
You can interact with Redis using the built-in client: