Search code examples
redisredistogo

How to connect to redistogo? How to see the data?


Read through https://redistogo.com/documentation/introduction_to_redis?language=en but couldn't get it to work.

redis-cli -h my-host -p 1234 -a mypassword

What is my-host?

How to see the database?

The web console seems to not display all the data. keys fails.

redis-cli -h returns "Could not connect to Redis"


Solution

  • On https://redistogo.com/heroku/resources/934839 where your app installs redistogo.

    The following link is given:-

    redis://redistogo:12340994131cb8c2f2402ffdsafds3333129@birdeye.redistogo.com:3244/
    

    using this you type on console:-

    redis-cli -h my-host -p 1234 -a mypassword
    redis-cli -h birdeye.redistogo.com -p 3244 -a 12340994131cb8c2f2402ffdsafds3333129
    

    and you will log onto console.