Table of Contents

Regions and Connecting

Regions

Cloudalus currently only has a single region, but we're working on expanding to more regions in the near future.

RegionHostname
Ashburn, Virginia (US East)us-east-1.kvdb.cloudalus.com
ServicePort
Plaintext (Not Recommended)6379
TLS (Strongly Recommended)6380

Authentication

When connecting to your database, you'll need to authenticate and select a database. This can be achieved by issuing one of the following groups of commands:

redis-cli \
        --tls \
        -p 6380 \
        -h us-east-1.kvdb.cloudalus.com 
# Option 1
# AUTH <database id>:<access key secret>
AUTH kvdb_fakedatabaseid:aks_fakeaccesskeysecret
OK
# Option 2
# AUTH <database id> <access key secret>
AUTH kvdb_fakedatabaseid aks_fakeaccesskeysecret
OK
# Option 3
# AUTH <access key secret>
# USE <database id>
AUTH aks_fakeaccesskeysecret
OK
USE kvdb_fakedatabaseid
OK

C
Cloudalus

© 2026 Cloudalus. All rights reserved.

* Redis is a trademark of Redis Labs Ltd. Any rights therein are reserved to Redis Labs Ltd. Any use by Cloudalus is for referential purposes only and does not indicate any sponsorship, endorsement or affiliation between Redis and Cloudalus.