docs/documentation/platform/pam/accounts/redis.mdx
Redis accounts let you manage access to your Redis databases. Users connect through Web Access (a browser-based interface) or CLI (a local proxy), and every session is recorded.
To connect:
1. Go to **Privileged Access Management → Accounts**
2. Find the account and click the rocket icon (or select **Launch Session** from the menu)
3. Click **Connect in Browser**
Type `quit` or `exit` to end the session.
Web Access is built for interactive use. Very long replies are shortened, and commands that stream results, such as `SUBSCRIBE` and `MONITOR`, are only available through the CLI.
```bash
infisical pam access my-folder/cache-primary
```
The command outputs the local port to connect to. Then use `redis-cli` or any Redis client:
```bash
redis-cli -h 127.0.0.1 -p <port>
```
No password needed since the proxy handles authentication.
**Flags:**
- `--port <port>` — use a specific local port (otherwise one is assigned automatically)
- `--reason <reason>` — provide an access reason (if required by template)