반응형
목차
Redis는 Windows에서 공식적으로 지원되지 않습니다.
라고 Redis docs에 나와 있다.
(우분투의 경우 sudo apt install redis-server 입력하면 끝임..)
https://redis.io/docs/getting-started/installation/install-redis-on-windows/
그래서 설치하는 방법은 두가지로 보입니다.
1. WSL2 를 이용하여 redis 설치
redis 설치
좀 더 번거롭다는 단점이 있습니다.
윈도우키 + s 나 윈도우 아이콘을 클리갛여 명령 프롬프트를 검색하여 관리자 권한으로 실행합니다.
wsl --install
입력후 설치하면됩니다.
그 밖에 다른 사항은 아래 링크를 참조 하세요.
https://learn.microsoft.com/ko-kr/windows/wsl/install
wsl2 를 설치후 wsl 에 들어가서 아래 명령어를 입력합니다.
curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list
sudo apt-get update
sudo apt-get install redis
Redis 서버 실행
sudo service redis-server start
Redis에 연결해보기
실행 했으면 redis-cli를 입력하여 접속한뒤 ping 명령어를 입력해보자
redis-cli
2. 윈도우용 Redis로 변경해준것을 설치
https://github.com/microsoftarchive/redis/releases
어떤 팀에서 windows용으로 배포하는것을 이용
다운을 받고 next... finish 하고 완료후
reds-cli.exe를 실행하면된다.
단점은 3버전이라 엄청 옛날 버전이라 비추천 합니다.
끝
반응형
'DATABASE > REDIS' 카테고리의 다른 글
Redis chache policy - 캐시 전략 내부 및 아키텍처 (0) | 2024.01.15 |
---|---|
Redis 외부접속 허용 (0) | 2022.08.08 |
REDIS는 왜 싱글스레드 일까? (0) | 2022.06.29 |
AWS Elasticache Redis cli 통해 접속 (0) | 2022.06.29 |
REDIS (0) | 2022.05.24 |
댓글