Skip to main content

Download Community Edition

OrientDB 3.2.29 GA Community Edition (March 6th, 2024)

Download the latest version for FREE. OrientDB Community Edition is licensed under Apache2 terms, which means that it’s FREE for any usage, including commercial. This is the recommended version to run in Production Environments. To see what’s changed from the previous releases, look at the Change Log. Download the Binary Distribution using the links below:

Use Docker

If you have Docker installed on your computer, this is the easiest way to run OrientDB. From the command line type:

$ docker run -d --name orientdb -p 2424:2424 -p 2480:2480 -e ORIENTDB_ROOT_PASSWORD=root orientdb:latest

Running OrientDB the First Time

  1. First, download and extract OrientDB by selecting the appropriate package provided at the top of this page (click here for additional installation methods).
  2. Start the server by running the server.sh or server.bat scripts located in the bin folder.
  3. Once OrientDB is running, enter the following URL in a browser window: http://localhost:2480. This is Studio, the most advanced Web tool for Databases.

If you’re new to OrientDB, we recommend taking a look at the following links:

Use the Console

If you like more command line tools, the Console will be your best friend. Run it by executing bin/console.sh (or console.bat on Windows). To connect the console to the running server type:

connect remote:localhost/demodb admin admin

JDBC Drivers

Use the JDBC Driver if you want to access OrientDB from a Business Reporting tool (like Jasper) or a generic Database Tool (like DbVisualizer). The URL is jdbc:orient:<URL> (for example: jdbc:orient:remote:localhost/demo). For more information, take a look at: JDBC Driver Project page. NOTE: The JDBC driver is already provided in the distribution under the “lib” folder.

OrientDB JDBC Driver 3.2.29 ALL

JDBC+OrientDB libraries, one JAR containing all the dependencies (21MB)

Download JDBC All

OrientDB JDBC Driver 3.2.29 only

JDBC libraries, use this if you already have OrientDB in the classpath (47Kb)

Download JDBC

Use Maven

<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-client</artifactId>
<version>3.2.29</version>
</dependency>

OrientDB 3.1.20 GA Community Edition (September 1st, 2022)

Download the latest version for FREE. OrientDB Community Edition is licensed under Apache2 terms, which means that it’s FREE for any usage, including commercial. This is the recommended version to run in Production Environments. To see what’s changed from the previous releases, look at the Change Log. Download the Binary Distribution using the links below:

OrientDB JDBC Driver 3.1.20 ALL

JDBC+OrientDB libraries, one JAR containing all the dependencies (21MB)

Download JDBC All

OrientDB JDBC Driver 3.1.20 only

JDBC libraries, use this if you already have OrientDB in the classpath (47Kb)

Download JDBC