14

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"

B Seven
  • 44,484
  • 66
  • 240
  • 385

2 Answers2

33

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.

Sangram Singh
  • 7,161
  • 15
  • 50
  • 79
0

"My-host" is the hostname you get from Redis To Go.

The Real Bill
  • 14,884
  • 8
  • 37
  • 39