본문 바로가기
  • 지요미의 IT성장일기
Linux

특정 버전의 Redis 설치하기

by 지요미=P 2024. 5. 7.
728x90

 

 

Redis 다운로드

wget http://download.redis.io/releases/redis-3.2.12.tar.gz

 

Redis 압축해제

tar xzf redis-3.2.12.tar.gz

 

 

리눅스 패키지 설치

# Redis 6.0.x는 gcc버전 4.9이상 설치해야 함
yum install gcc

# Redis 테스트 위해 필요함
yum install systemd-devel

yum install jemalloc

 

 

Redis 빌드 / Dependencies 빌드

# 압축해제 한 디렉토리로 이동
cd redis-3.2.12
cd deps
make hiredis jemalloc linenoise lua

 

 

Redis  빌드 & 설치

cd redis-3.2.12

#Redis 빌드
make MALLOC=libc

#설치(압축해제한 폴더에 설치하는 경우)
make install

#설치(특정 경로에 하는 경우)
make [/my/redis/path] install

 

 기본 설정

daemonize yes

 

로그 파일 설정

logfile "redis.log"

 

최대 메모리 크기 설정

#16*1024*1024
maxmemory=16gb

 

Redis 서비스 시작 및 활성화

systemctl start redis
systemctl enable redis

 

 

 

 

 

참고: https://shy-blg.tistory.com/entry/CentOS%EC%97%90-Redis-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0-redis-5010

 

728x90

'Linux' 카테고리의 다른 글

haproxy 설치하기  (0) 2024.05.07
특정 버전의 MariaDB 설치하기  (0) 2024.05.07
특정 버전 Nginx 설치하기  (0) 2024.05.07
쿠버네티스 설치(feat.Rocky9 설치하기)  (0) 2024.02.01
Vcenter 설치  (0) 2023.12.15