TypeDB 3.0 is live! Get started for free.

Connect to server

This guide covers connecting to TypeDB Cloud, TypeDB Community Edition and TypeDB Enterprise servers with Studio, Console, and Driver SDKs.

Understanding connections

TypeDB uses a gRPC-based protocol for external communications, including queries. TypeDB clients, like Studio and Console, as well as language-specific drivers with native APIs, have been developed to implement this protocol.

Connect to TypeDB Cloud

The TypeDB Cloud dashboard provides connection instructions.

Run Studio and follow instructions below:

  1. In the TypeDB Cloud dashboard, find the cluster you want to connect, and click Connect. Copy the displayed connection URI, replacing the password placeholder with your actual database password.

  2. In Studio, click Connect to TypeDB. Paste the copied URI into the Connection URI field and click Connect.

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

Drivers
Connect to TypeDB Cloud
let driver = Connection::new_cloud(&["127.0.0.1:1729"], Credential::with_tls("admin", "password", None)?)?;
rust

Where 127.0.0.1:1729 is the address and port to connect to.

After connecting to TypeDB Cloud, see how to create a database and manage sessions and transactions.

Connect to TypeDB Community Edition

A network connection to TypeDB Community Edition requires the address and port of the server to connect to.

Run Studio and follow instructions below:

Click Connect to TypeDB. Your connection URI is typedb-core://<host>:<port> (e.g: typedb-core://localhost:1729).

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

Connect to TypeDB Community Edition
let driver = Connection::new_core("127.0.0.1:1729")?;
rust

Where 127.0.0.1:1729 is the address and port to connect to.

After connecting to TypeDB Community Edition, see how to create a database and manage sessions and transactions.

Connect to TypeDB Enterprise

A network connection to a TypeDB Enterprise cluster requires address and port of at least one server in the cluster, as well as username and password of a user.

Run Studio and follow instructions below:

  1. In the TypeDB Cloud dashboard, find the cluster you want to connect, and click Connect. Copy the displayed connection URI, replacing the password placeholder with your actual database password.

  2. In Studio, click Connect to TypeDB. Paste the copied URI into the Connection URI field and click Connect.

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

Drivers
Connect to TypeDB Cloud
let driver = Connection::new_cloud(&["127.0.0.1:1729"], Credential::with_tls("admin", "password", None)?)?;
rust

Where 127.0.0.1:1729 is the address and port to connect to.

After connecting to TypeDB Enterprise, see how to create a database and manage sessions and transactions.

Learn more

See how to create a new database in TypeDB.

See how to manage sessions in TypeDB.