카테고리 없음2024. 4. 29. 09:32

1. 설치

OS 별 설치 가이드

https://redis.io/docs/latest/operate/oss_and_stack/install/install-redis/

 

Install Redis

Install Redis on Linux, macOS, and Windows

redis.io

 

https://github.com/microsoftarchive/redis

 

GitHub - microsoftarchive/redis: Redis is an in-memory database that persists on disk. The data model is key-value, but many dif

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

 

원하는 위치에 압축 해제

 

2. 설정

redis.windows-service.conf 파일 수정

- 시간될 때 세부 내용 보자.

port : redis 서비스가 사용할 포트

 

3. 윈도우 서비스 등록

- cmd 실행

- cd 명령어로 redis 폴더까지 이동

redis-server --service-install redis.windows-service.conf --service-name  <name> 실행
redis-server --service-start --service-name <name> 실행

4. 윈도우 서비스 제거

- cmd 실행

- cd 명령어로 redis 폴더까지 이동

redis-server --service-stop --service-name <name> 실행
redis-server --service-uninstall --service-name <name> 실행

 

Posted by spillmoon