Use OrientDB in your local without installation.
Steps For OrientDB
OrientDB a Multi-Model Open Source NoSQL DBMS that combines graphs and documents.
Step 1: Pull the docker image
docker pull orientdb:latest
Step 2: Run the orientDB container
docker run -d --name orientdb -p 2424:2424 -p 2480:2480 -e ORIENTDB_ROOT_PASSWORD=rootpwd orientdb
Steps 3: Verification
docker logs orientdb
Step 4: Access studio and console
to access the studio hit below URL
http://localhost:2480/
to access console run below commands
docker exec -it orientdb
cd $ORIENTDB_HOME/bin
console.sh
verify few commands such as
HELP
HELP SELECT
CONNECT remote:localhost root rootpwd
LIST DATABASES
For more Resource:
http://techwasti.com/
Medium Publication
https://medium.com/techwasti/
Download
0 formats
No download links available.
OrientDB docker setup in your local machine | NatokHD