Redis Cloud 무료 사용해보기

1 개요[ | ]

Redis Cloud 사용해보기
레디스 클라우드 무료 체험
  • 30MB 용량의 Redis를 무료로 사용할 수 있다.
물론 부가기능(멀티코어, 복제, 페일오버, 비휘발성, 백업 등)은 전혀 없다.

2 회원가입[ | ]

Thank You and Welcome, Jmnote!
We have sent a confirmation email to the email address you provided. To complete the signup process please access your account via this mail.

Follow us on Twitter: @RedisLabs

3 메일 인증[ | ]

  • Redis Labs <service@redislabs.com>에서 메일이 왔다.
Greetings from Redis Labs!

Thank you for choosing Redis Labs, for your application. We look forward to working with you and making sure you get the most from your account.

To enter your account for the first time click here.
... (생략)
  • 메일 본문의 click here 클릭
https://app.redislabs.com/main/wp/jmnote 로 연결됨

4 상품 신청[ | ]

  • [New Redis Subcription]
  • 30MB Free 선택[1] --- [Select]
  • Resource Name, Redis Password 입력[2] --- [Activate]
자동으로 Manage Resources --- Manage 화면으로 넘어감

5 정보 확인[ | ]

  • pending 상태로 보이는데, 해당 행을 클릭하면 상세화면으로 넘어감
기다리면 Status가   로 바뀜
  • Endpoint 정보를 확인하자
예: pub-redis-13579.us-east-1-2.4.ec6.garantiadata.com:13579

6 (Optional) 포트 접속 확인[ | ]

root@zetawiki:~# telnet pub-redis-13579.us-east-1-2.4.ec6.garantiadata.com 13579
Trying 57.91.36.80...
Connected to pub-redis-13579.us-east-1-2.4.ec6.garantiadata.com.
Escape character is '^]'.
set a "hello"
-NOAUTH Authentication required
quit
+OK
Connection closed by foreign host.
root@zetawiki:~#

7 redis-cli로 확인[ | ]

root@zetawiki:~# redis-cli -h pub-redis-13579.us-east-1-2.4.ec6.garantiadata.com -p 13579 -a 'P@ssw0rd'
pub-redis-13579.us-east-1-2.4.ec6.garantiadata.com:13579> set a "hello"
OK
pub-redis-13579.us-east-1-2.4.ec6.garantiadata.com:13579> get a
"hello"
pub-redis-13579.us-east-1-2.4.ec6.garantiadata.com:13579> quit
root@zetawiki:~#

8 같이 보기[ | ]

  1. 다른 선택사항도 있긴 한데... Cloud: AWS/us-east-1(아시아 없어서 걍 기본값), Standard(Cache도 선택가능한데 30MB Free에서는 차이 없음)
  2. Data Persistence 옵션 있지만 None으로 고정되어 있고 선택 불가. 다른 옵션은... AOF 1초마다 fsync, 1시간마다 스냅샷, 6시간마다 스냅샷, 12시간마다 스냅샷
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}