Notice
Recent Posts
Recent Comments
Link
HwangHub
Redis 설치 본문
MacOS
Install Redis on macOS
Use Homebrew to install and start Redis on macOS
redis.io
HomeBrew 설치
/bin/bash -c "$(curl -fsSL <https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh>)"
Redis 설치
brew install redis
Redis 실행
brew services start redis
Redis 종료
brew services stop redis
Windows
Install Redis on Windows
Use Redis on Windows for development
redis.io
Redis 설치
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
'workspace > 아티클' 카테고리의 다른 글
과제1. SQL Basic 이해하기 (0) | 2023.09.15 |
---|---|
Redis-cli를 이용한 CRUD 이해 (0) | 2023.09.11 |
Redis Basic - overview (0) | 2023.09.11 |
[리팩토링] 레거시 조회 API 성능 최적화 15000ms -> 180ms (0) | 2023.09.10 |
AWS EC2(우분투)에 도커 이미지 배포하기 (0) | 2023.08.17 |
Comments