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