잘 정리해보자

Redis 설치 - window 본문

DB/Redis

Redis 설치 - window

토마토오이 2024. 5. 1. 11:59

window 환경에서 redis 설치를 아래 url에서 진행했었는데, ms에서 지원해놓은 버전이 3.0.xxx으로 현재 redis 기준 7.4.x버전이라 실행할 수 있는 명령어 차이도 발생하여 window powershell을 이용해 설치를 진행했다.

 

ubuntu 설치
> wsl --install

설치 후 ubuntu 접속 후 redis 설치
> wsl
> sudo apt update
> sudo apt-get install redis

redis 설치 후 자동으로 시작되므로 실행 확인 명령어
> systemctl status redis-server

wsl --install 실행 후
redis-server status 확인

 

redis-cli 명령어 커맨드 실행
> redis-cli

127.0.0.1:6379> keys *
(empty array)

 

redis 시작/종료/재시작 명령어

> sudo systemctl start redis-server
> sudo systemctl stop redis-server
> sudo systemctl restart redis-server

 

 

window에서 레디스 설치 url : 

https://it-creamstory.tistory.com/entry/Ubuntu%EC%9A%B0%EB%B6%84%ED%8A%B8%EC%97%90-%EB%88%84%EA%B5%AC%EB%B3%B4%EB%8B%A4-%EC%89%BD%EA%B2%8C-%EC%84%A4%EC%B9%98%ED%95%98%EB%8A%94-Redis%EB%A0%88%EB%94%94%EC%8A%A4-%ED%8E%B8

 

Ubuntu(우분트)에 누구보다 쉽게 설치하는 Redis(레디스) 편

Redis(레디스) 입문 해보자 Ubuntu에서 레디스(Redis)를 설치하는 방법은 다음과 같습니다. 터미널을 엽니다. 다음 명령어를 입력하여 Redis 패키지를 업데이트합니다. sudo apt update Redis를 설치하기 위

it-creamstory.tistory.com

 

 

ms에서 지원하는 redis 설치

https://github.com/microsoftarchive/redis/releases

 

Releases · microsoftarchive/redis

Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes - microsoftarchive/redis

github.com

 

'DB > Redis' 카테고리의 다른 글

redis-cli 명령어 - string  (0) 2024.05.01
Redis 개념 정리  (1) 2024.04.21
Comments