Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 434 Bytes

redis_on_graviton.md

File metadata and controls

24 lines (16 loc) · 434 Bytes

Install Redis on Amazon Linux 2/2023

You should consider AWS Elasticache Redis as a first choice for Redis

  1. Enviroment preparation
sudo yum update
sudo yum groupinstall "Development Tools" -y
  1. Install from source
wget https://download.redis.io/redis-stable.tar.gz
tar -xzvf redis-stable.tar.gz
cd redis-stable
make

Ref