728x90
1. Redis 설치 파일 다운로드
아래 URL에서 MSI 파일을 받아서 설치 합니다.
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
2. Redis 서버 실행
설치 디렉토리 에서 redis-server.exe 파일을 실행해서, 아래와 같은 화면이 나오면 정상실행 된 것입니다.
3. Redis 서버 정상동작 확인
설치 디렉토리에서 redis-cli.exe 파일을 실행 후 command창에서 ping을 입력하여 PONG이 출력되면 정상적으로 동작하고 있는 것입니다.
4. 오류 발생시 조치
설치 디렉토리에서 redis-server.exe 파일을 클릭해도 Redis 서버가 실행이 안되는 경우(창이 뜨고 바로 꺼지는 경우).
- cmd 또는 PowerShell 을 관리자 권한으로 실행 시켜 주세요.
- redis-server.exe redis.windows.conf 를 cmd 창에 입력시 오류메세지 확인 ([8124] 11 Oct 16:05:30.276 # Creating Server TCP listening socket *:6379: bind: No error)
- redis-cli.exe를 실행 시켜 주세요.
- shutdown을 입력한 후에 exit로 종료 해 주세요.
- redis-server.exe redis.windows.conf 를 cmd 창에 입력하면 redis server가 실행됩니다. (탐색기 설치 디렉토리에서 redis-server.exe 파일을 클릭해도 됨)
728x90
'개발환경' 카테고리의 다른 글
[Mysql] Public key retrieval is not allowed 에러 해결 (0) | 2022.10.24 |
---|---|
Docker 기반 MySQL 설치 (0) | 2022.10.24 |
.gitignore가 정상 작동하지 않을때 (0) | 2022.10.08 |
Git에서 프로젝트 가져오기 (0) | 2022.08.13 |
STS에서 GitHub에 프로젝트 업로드 (0) | 2022.08.13 |