db/redis

Redis 설치

C/H 2016. 5. 30. 11:01

Compile

wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make

centOS

# 저장소 설치
rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

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

# 자동시작
## CentOS 6
chkconfig redis on
 
## CentOS 7
systemctl enable redis.service

Ubuntu

apt-get install redis-server redis-tools

Bind

bind 192.168.1.100 10.0.0.1
bind 127.0.0.1
bind 0.0.0.0
반응형

'db > redis' 카테고리의 다른 글

redis Keys delete  (0) 2016.02.26
Redis 한글 사이트  (0) 2016.02.15
Redis Quick Start  (2) 2015.11.20
crack@redis.io  (0) 2015.11.11
redis flushall falushdb  (0) 2015.11.05