1. redis 설치
다운로드 : http://redis.io
wget http://download.redis.io/releases/redis-3.0.1.tar.gz
tar zxvpf redis-3.0.1.tar.gz
cd redis-3.0.1
make PREFIX=/usr/local/redis install
mkdir -p /usr/local/redis/etc
난 redis를 /usr/local/redis 하단에 설치하기 위해서 make 명령에 부가 옵션을 준것이고, 통상적으로 /usr/local/bin 하단에 들어가게 하려면 그냥 make 명령만 사용하면 된다.
어디까지나 개인의 취향적인 부분이고… 굳이 왜 저렇게 했는가를 묻는다면….
redis는 시스템의 기본 패키지가 아니라, 특정 목적을 가진 서비스용 패키지 이기 때문에
* 이것(redis)이 설치되어있다.
* 다른 파일 & 디렉토리와 구분을 했으면 좋겠다.
* 이것(redis) 업그레이드시 해당 디렉토리만 갈아 치우면 된다.
* 이것(redis) 삭제해 해당 디렉토리만 삭제 하면 된다.
라는 생각으로 /usr/local/redis 를 사용했다.
2. 설정파일
redis 소스 디렉토리에 있는 것을 복사해서 사용하자
cp redis.conf /usr/local/redis/etc/6379.conf
3. 구동스크립트(redis init)
redis 소스 디렉토리에 있는 것을 복사해서 사용하자.
cp utils/redis_init_script /etc/init.d/redis_6379
다만, 나는 /usr/local/redis 로 위치를 강제 지정했기 때문에 init 스크립트 역시 약간의 수정을 해줘야 한다…
REDISPORT=6379
EXEC=/usr/local/redis/bin/redis-server
CLIEXEC=/usr/local/redis/bin/redis-cli
PIDFILE=/var/run/redis_${REDISPORT}.pid
CONF=”/usr/local/redis/etc/${REDISPORT}.conf”
4. redis 시작
/etc/init.d/redis_6379 start
redis 시작시 출력되는 메세지
27150:M 03 Jun 17:54:55.589 # Server started, Redis version 3.0.1
27150:M 03 Jun 17:54:55.589 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add ’vm.overcommit_memory = 1’ to /etc/sysctl.conf and then reboot or run the command ’sysctl vm.overcommit_memory=1’ for this to take effect.
27150:M 03 Jun 17:54:55.589 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command ’echo never > /sys/kernel/mm/transparent_hugepage/enabled’ as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled.
27150:M 03 Jun 17:54:55.589 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
27150:M 03 Jun 17:54:55.589 * The server is now ready to accept connections on port 6379
자 한줄한줄 처리를 해봅시다..
* rc.local 에 등록할 내용 (해당 내용은 쉘에서 한번 실행 하자)
# for redis
echo never > /sys/kernel/mm/transparent_hugepage/enabled
* sysctl.conf 에 등록할 내용
# for redis
vm.overcommit_memory = 1
net.core.somaxconn = 65535
sysctl -p
다시 redis를 재시작 하면..
/etc/init.d/redis_6379 stop
/etc/init.d/redis_6379 start
아까 봤던 에러 메세지는 더이상 나오지 않는것을 확인 할 수 있다.
5. 제대로 구동되고 있는가???
# /usr/local/redis/bin/redis-cli
127.0.0.1:6379> set myname choilha
OK
127.0.0.1:6379> get myname
”choilha”
127.0.0.1:6379>
된거임…
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
49 | PHP + redis(phpredis) 연동하기 | 위대한유저 | 2015.06.04 | 380 |
» | REDIS-3.0.1 설치 하기 | 위대한유저 | 2015.06.04 | 476 |
47 | 리눅스에서 arp cache 삭제/초기화 하는 방법 | 위대한유저 | 2015.05.29 | 34215 |
46 | 윈도우에서 ARP CACHE 삭제/초기화 하는 방법 | 위대한유저 | 2015.05.29 | 2837 |
45 | XE 1.8.2까지의 버전에서 슬라이드 사용안함 속성이 반영 안되는 문제 | 위대한유저 | 2015.05.21 | 1910 |
44 | creative commons licenses | 위대한유저 | 2015.05.21 | 172 |
43 | installation documentation for Redmine 1.4.0 and higher | 위대한유저 | 2015.05.13 | 317 |
42 | POODLE SSLV3.0 취약점 해결을 위한 HTTPD 설정 (CVE-2014-3566) | 위대한유저 | 2015.05.13 | 542 |
41 | boot single mode in centos7 or rhel7 | 위대한유저 | 2015.05.07 | 296 |
40 | Creating default object from empty value in PHP5.4 | 위대한유저 | 2015.04.29 | 260 |
39 | TOMCAT + APACHE BY MOD_PROXY | 위대한유저 | 2015.04.28 | 608 |
38 | UBUNTU DESKTOP CHANGE RESOLUTION ON VIRTUALBOX | 위대한유저 | 2015.04.23 | 215 |
37 | PERMIT ROOT LOGIN AT UBUNTU | 위대한유저 | 2015.04.23 | 250 |
36 | Red Hat Enterprise Linux technology capabilities and limits | 위대한유저 | 2015.04.20 | 398 |
35 | net use 사용시 시스템 오류 58(이)가 생겼습니다. | 위대한유저 | 2015.04.08 | 6214 |