Officially out now: The TypeDB 3.0 Roadmap >>

TypeDB Community Edition

Connecting to TypeDB CE requires:

  • The address and port of the server - defaults are 127.0.0.1 and 1729

  • A valid username and password - default credentials are admin and password

  • Studio

  • Console

Run Studio and follow instructions below:

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

  2. Make sure the TypeDB Core option is selected in the Server field.

  3. Enter the address and port of the server to connect to (e.g. localhost:1729).

  4. Click Connect.

Run Console using the --core argument:

Connect to TypeDB Community Edition
typedb console --core=<server-address> --username=<username> --password

You will be prompted for a password.

The --core argument is used to set the TypeDB Community Edition server IP address and port to connect to, for example, 10.0.0.5:1729.

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_core(
    &uri,
    Credentials::new(username.as_ref(), password.as_ref()),
    DriverOptions::new(false, None).unwrap(),
).await;
uri = f"{address}:{port}"
driver = TypeDB.core_driver(uri, Credentials(username, password), DriverOptions(False, None))
uri = String.format("%s:%s", address, port)
Driver driver = TypeDB.coreDriver(
        uri,
        new Credentials(username, password),
        new DriverOptions(false, null)
);
Coming soon!
Coming soon!
Coming soon!
Coming soon!