기타
django redis 설정
woo11
2024. 2. 22. 12:05
1. 기존 설치된 버전 있는지 확인
redis-server --version
있는 경우 기존 버전 제거
https://webhostinggeeks.com/howto/how-to-uninstall-redis-on-ubuntu/
How to Uninstall Redis on Ubuntu | Linux Tutorials for Beginners
Redis is an in-memory data structure store, primarily used as a database, cache, and message broker. While it offers numerous advantages in terms of speed a ...
webhostinggeeks.com
제거 확인
sudo netstat -ntlp | grep :6379
2. 최신 버전 설치
아래 글에서 wget 할때만 주소 변경
wget http://download.redis.io/releases/redis-7.2.4.tar.gz
https://daedamee.tistory.com/15
레디스(REDIS) 5.X 버전 설치 (우분투, Ubuntu)
안녕하세요! 또 오랜만에 인사드립니다. 최근 센티넬에 이어 다른 scale out 도구인 redis-cluster가 출시되었습니다. ubuntu 환경에서 세팅을 하다 보니 apt-get으로 보통 설치를 진행했으나, 이렇게 설치
daedamee.tistory.com
3. 설치된 버전 실행
redis-server --port 6379