관리 메뉴

IT.FARMER

Redis install linux 본문

NoSQL/Redis

Redis install linux

아이티.파머 2020. 1. 10. 16:20
반응형

2020/01/10 - [NoSQL/Redis] - Redis 특징

2020/01/10 - [NoSQL/Redis] - Docker Redis

2020/01/10 - [NoSQL/Redis] - Spring Boot Redis (standard)

2020/01/10 - [NoSQL/Redis] - Redis install linux

2020/01/10 - [NoSQL/Redis] - Redis Replication (Master Slave) 구성

2020/01/10 - [NoSQL/Redis] - Redis Sentinel 구성

2020/01/10 - [NoSQL/Redis] - Redis Clustering 구성

2020/01/13 - [NoSQL/Redis] - Spring boot redis Sentinel Config

2020/01/13 - [NoSQL/Redis] - spring boot redis clustering config

 

Redis install linux 

#https://redis.io/topics/quickstart
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make

#설치 완료시 다음 메시지가 보인다.
# Hint: It's a good idea to run 'make test' ;)

# Redis 서버와 명령행 인터페이스(redis 실행파일)를 /usr/local/bin 으로 복사하는 명령어 실행
sudo make install

#redis 실행
redis-server

 

  • redis-server is the Redis Server itself.
  • redis-sentinel is the Redis Sentinel executable (monitoring and failover).
  • redis-cli is the command line interface utility to talk with Redis.
  • redis-benchmark is used to check Redis performances.
  • redis-check-aof and redis-check-rdb (redis-check-dump in 3.0 and below) are useful in the rare event of corrupted data files.
반응형

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

Redis Clustering 구성  (0) 2020.01.10
Redis Sentinel 구성  (0) 2020.01.10
Redis Replication (Master Slave) 구성  (2) 2020.01.10
Spring Boot Redis (standard)  (0) 2020.01.10
Redis 특징  (0) 2020.01.10