OrientDB Installation Cheat Sheet on Ubuntu 16.04
대표적인 NoSQL DB인 OrientDB를 Ubuntu 16.04에 설치하기 위한 커닝 페이퍼이다. OrientDB는 JAVA로 작성되었기 때문에 JAVA를 먼저 설치하여야 한다.
1 2 3 4 5 6 7 |
root@ubuntu:~# add-apt-repository ppa:webupd8team/java root@ubuntu:~# apt update root@ubuntu:~# apt install oracle-java8-set-default root@ubuntu:~# java -version java version "1.8.0_121" Java(TM) SE Runtime Environment (build 1.8.0_121-b13) Java HotSpot(TM) 64-Bit Server VM (build 25.121-b13, mixed mode) |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
root@ubuntu:~# wget http://orientdb.com/download.php?file=orientdb-community-2.2.17.tar.gz&os=linux root@ubuntu:~# tar -xf orientdb-community-2.2.17.tar.gz -C /opt root@ubuntu:/opt/orientdb/bin# ./server.sh +---------------------------------------------------------------+ | WARNING: FIRST RUN CONFIGURATION | +---------------------------------------------------------------+ | This is the first time the server is running. Please type a | | password of your choice for the 'root' user or leave it blank | | to auto-generate it. | | | | To avoid this message set the environment variable or JVM | | setting ORIENTDB_ROOT_PASSWORD to the root password to use. | +---------------------------------------------------------------+ |