Skip to main content
The Redis web access terminal provides a redis-cli-like experience in your browser. It is designed for light, ad-hoc usage — quick lookups, debugging, and administrative tasks — not as a replacement for a full Redis client or long-running workloads.

Connecting

1

Navigate to Account

Go to the Resources tab in your PAM project, open the Redis resource, and find the account you want to access. Click the Connect button next to the account.Account Connect ButtonAlternatively, if you are on the account page, click the Access button.Account Page Access Button
2

Connect in Browser

In the connect modal, click Connect in Browser to open the web access terminal.Connect in Browser
3

End Session

Click the Disconnect button from the web access terminal status bar or type quit or exit. You can reconnect from the same page.
Web Access Terminal

Usage

Once connected, you’ll see a > prompt. Type Redis commands as you would in redis-cli:
> SET greeting "Hello, World!"
OK
> GET greeting
"Hello, World!"
> KEYS *
1) "greeting"
> DEL greeting
(integer) 1

Limits

See the common session limits that apply to all web access sessions.

FAQ

No. The web access terminal is not a redis-cli client. It is a custom REPL that connects directly to Redis and provides a redis-cli-like experience, including familiar prompts and reply formatting.