Officially out now: The TypeDB 3.0 Roadmap >>

TypeDB Cloud

Connecting to TypeDB Cloud requires:

  • A cluster deployed through TypeDB Cloud

  • The address and port of the server - these can be found on the page for your cluster

  • A valid username and password - you should have set the password for the admin user while setting up your cluster

  • Studio

  • Console

Run Studio and follow instructions below:

  1. Click Connect to TypeDB on the right side of the top toolbar.

  2. Switch the Server field drop-down to TypeDB Cloud.

  3. Click Manage Cloud Addresses button.

  4. Add address and port for at least one server from your TypeDB Cloud deployment, then close the Address Management window.

  5. Fill in the Username and Password fields with valid user credentials.

  6. Turn on the Enable TLS option and leave the CA Certificate field empty. For self-hosted deployments, encryption parameters may vary.

  7. Click Connect.

Run Console using the --cloud argument:

Connect to TypeDB Cloud or TypeDB Enterprise
typedb console --cloud=<server-address> --username=<username> --password --tls-enabled=true

You will be prompted for a password.

The --cloud argument is used to set the TypeDB Cloud server address and port to connect to, for example, https://abcdef-0.cluster.typedb.com:80.

For programmatic access, use one of the TypeDB drivers via the network API:

  • Rust

  • Python

  • Java

  • Node.js

  • C#

  • C++

  • C

let uri = format!("{}:{}", address, port);
let driver = TypeDBDriver::new_cloud(
    &vec![&uri],
    Credentials::new(username.as_ref(), password.as_ref()),
    DriverOptions::new(true, None).unwrap(),
).await;
uri = f"{address}:{port}"
driver = TypeDB.cloud_driver([uri], Credentials(username, password), DriverOptions(False, None))
uri = String.format("%s:%s", address, port)
Driver driver = TypeDB.cloudDriver(
        Set.of(uri),
        new Credentials(username, password),
        new DriverOptions(true, null)
);
Coming soon!
Coming soon!
Coming soon!
Coming soon!