How to securely connect to Heroku Redis via the co

2019-07-09 12:22发布

The Heroku Redis CLI documentation states that connecting via the Heroku CLI is insecure, as it relies on the redis-cli binary.

Is there a secure way to connect to a Heroku Redis instance via a command-line interface? Connecting via my local machine, or though a dyno as a relay both work fine.

1条回答
我欲成王,谁敢阻挡
2楼-- · 2019-07-09 12:36

I believe this is because you're using the hobby-dev tier of Heroku Redis which seems not to support SSL.

SSL for Heroku Redis is only available on production tier plans. The hobby-dev plan is meant for testing and staging environments, not production.

https://devcenter.heroku.com/articles/securing-heroku-redis

Similar Q answered here: How can I securely connect to Heroku-hosted Redis from the command line?

查看更多
登录 后发表回答