Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: add instructions to verify a deploy #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,13 @@ Click `Save` and you're good to go! Once deployed, your Redis instance will be a

If you need help, you can always chat with us at https://render.com/chat.

## Verify Deploy

Once the service has finished deploying, click into it from the dashboard and open up a shell.

![image](https://user-images.githubusercontent.com/1732414/76480167-2cd6b180-63cb-11ea-851c-e179dd1d344d.png)

In the screenshot above we first connect to redis by running `redis-cli -h redis-k48e -p 10000`. Be sure to replace the host and port values from the service-address shown in your dashboard.

Once connected you are free to run any valid redis commands to verify the deploy. We simply `set foo bar` and verify its result `get foo`.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This works - but ping is a simpler command to verify that Redis is working.