Showing posts with label Redis. Show all posts
Showing posts with label Redis. Show all posts

Friday, June 26, 2020

Redis : Free Open Source Database in Cloud (30 MB)

Redis : Free Open Source Database in Cloud (30 MB)


Pre-Req:

Make sure home brew is installed in mac

Getstarted

Create an account in Redis Website and select free account which is available upto 30MB of space. 
1. http://try.redis.io/
2. https://www.tutorialspoint.com/redis/redis_commands.htm

Installation for mac :

brew install redis

Check Redis

redis-server --version
redis-cli --version

Connect to Remote :

  1. Get Redis host name from your profile under your database 
  2. Get Redis password from your profile under your database 
command:
redis-cli -h SERVER-IP  -p PORT -a YOURPASSWORD

example:
  1. redis-cli -h redis-19xxx.c1.ap-southeast-1-1.ec2.cloud.redislabs.com -p 19xxx -a redis_password
  2. exit