민서네집

Ubuntu Linux에 Redis 설치 완료 본문

LINUX

Ubuntu Linux에 Redis 설치 완료

브라이언7 2016. 8. 12. 15:14

Redis 공식 홈페이지에 가서 Redis 3.2.3 Stable Version을 Download 받아서 홈페이지에 나와 있는 방법대로 설치했습니다. (http://redis.io/download)


~$ wget http://download.redis.io/releases/redis-3.2.3.tar.gz


~$ tar xvf redis-3.2.3.tar.gz


~/redis-3.2.3$ make


~/redis-3.2.3$ make test

cd src && make test

make[1]: Entering directory `/home/계정명/redis-3.2.3/src'

You need tcl 8.5 or newer in order to run the Redis test

make[1]: *** [test] Error 1

make[1]: Leaving directory `/home/계정명/redis-3.2.3/src'

make: *** [test] Error 2


$ sudo apt-get install tcl8.5


cf) http://starkey1984.blogspot.kr/2014/01/ubuntu-redis.html


~/redis-3.2.3$ make test


< Redis 실행 >


~/redis-3.2.3/src$ ./redis-server


< Redis 테스트 >


~/redis-3.2.3/src$ ./redis-cli


cf) http://jdm.kr/blog/139


설치와 테스트가 별로 어렵지 않더군요.


'LINUX' 카테고리의 다른 글

setfacl / getfacl  (0) 2016.08.16
리눅스 tee, 화면과 파일에 동시 출력하기 / screen / nohup  (0) 2016.08.12
디렉터리 합치기 (Merge Directory)  (0) 2016.05.16
Samba 설정  (0) 2016.05.03
smb.conf - domain master 설정  (0) 2016.05.03
Comments