1. 저장소 추가

- # rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm


2. Redis 설치

- # yum --enablerepo=epel,remi install redis


3. 서비스 자동 실행 설정

## CentOS 6

- # chkconfig redis on

  

## CentOS 7

- # systemctl enable redis.service


4. 방화벽 설정 

- # firewall-cmd --permanent --zone=public --add-port=6379/tcp

- # firewall-cmd --reload

- # firewall-cmd --zone=public --list-ports


5. 설정파일 변경

- # vi /etc/redis.conf

# 원격 접속을 위해 로컬 아이피 바인딩을 주석 처리

#bind 127.0.0.1

#requirepass 패스워드 설정 


6. 서비스 실행

## CentOS 6

- # service redis restart

  

## CentOS 7

- # systemctl restart  redis.service

'서버설정 및 설치 > DB' 카테고리의 다른 글

centos mongodb 설치 및 샤딩  (0) 2020.11.24
MongoDB 설치  (0) 2018.07.11
MariaDB 설치  (0) 2018.07.11