Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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"

like image 647
B Seven Avatar asked Jul 24 '13 23:07

B Seven


1 Answers

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

The following link is given:-

redis://redistogo:[email protected]: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.

like image 133
Sangram Singh Avatar answered Oct 02 '22 09:10

Sangram Singh