##Orientdb Installation## # Installing Oracle Java# sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-set-default java -version ###Downloading and Installing OrientDB## wget https://orientdb.com/download.php?file=orientdb-community-2.1.3.tar.gz sudo tar -xf download.php?file=orientdb-community-2.1.3.tar.gz -C /opt sudo mv /opt/orientdb-community-2.1.3 /opt/orientdb ###Starting the Server### cd /opt/orientdb sudo bin/server.sh ###Since OrientDB is now running in your terminal window, in a second terminal window to the same Droplet, confirm that the server is listening on ports 2424 (for binary connections) and 2480 (for HTTP connections). To confirm that it's listening for binary connections, execute:### sudo netstat -plunt | grep 2424 sudo netstat -plunt | grep 2480 ###Connecting to the Console## sudo /opt/orientdb/bin/console.sh connect remote:127.0.0.1 root root-password exit
it's always a good idea to keep track of your learning.