공홈에서 다운로드버튼의 url을 wget-io
tar xvf redis~~
make
make test
make install
cd /utils
sh install ~~ .sh
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-redis
이런 방법도 있고, 아래 방법이 편하다
Step 1 — Install Redis
Starting with the Droplet that will host our master server, our first step is to install Redis. First we need to add Chris Lea's Redis repository (as always, take extreme caution when adding third party repositories; we are using this one because its maintainer is a reputable figure):
- sudo add-apt-repository ppa:chris-lea/redis-server
Press ENTER
to accept the repository.
Run the following command to update our packages:
- sudo apt-get update
Install the Redis server:
- sudo apt-get install redis-server
Check that Redis is up and running:
- redis-benchmark -q -n 1000 -c 10 -P 5
ufw allow 6379/tcp;
참고로
vi /etc/redis/redis.conf
를 열어서
bind 127.0.0.1 되있는것을 주석처리해준다.
그리고 원격을 위한 비밀번호를 설정하자
requirepass ${password} 를 입력해준다 (특수문자영어숫자 다 섞어도 됨)
그리고 저장
재밌는 것은
/usr/bin/redis-cli 를 실행시켜서
ping 해보면
auth 해라고 뜬다.
auth ${password} 를 처주면
ok 와 함께
다시 ping 했을 때 정상된다.
jedis에도 이 ${password}를 입력해야 커넥션된다.
그리고 메이븐에 jedis 로 붙어서 테스트해보자
http://jdm.kr/blog/202
를 참고한다
'Tech' 카테고리의 다른 글
apache derby (0) | 2017.08.16 |
---|---|
docker auto boot (0) | 2017.05.30 |
FlashBuilder 에 SVN 플러그인 설치하기 (0) | 2017.04.21 |
이클립스 svn target 제외 ignored 키워드 (0) | 2017.04.14 |
Akka와 Spray (0) | 2017.04.08 |