OrientDB 3.2.35 Community Edition (October 29th, 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
- First, download and extract OrientDB by selecting the appropriate package provided at the top of this page (click here for additional installation methods).
- Start the server by running the server.sh or server.bat scripts located in the bin folder.
- 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:
- Take our free Udemy training course.
- Introduction to the NoSQL world
- SQL reference
- Graph Pattern Matching
- HA and Scaling
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.
Use Maven
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-client</artifactId>
<version>3.2.35</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: