2018年2月8日木曜日

VagrantでOrientDBがインストールされた仮想マシン(CentOS7.4)を構築す

OrientDBはJava製のNoSQLデータベースです。
以下のVagrantfileを使用して、OrientDBをインストールした仮想マシン(CentOS7.4)を構築できます。
仮想マシン構築後、ブラウザからhttp://192.168.55.109:2480にアクセスします。デフォルトユーザはadmin、パスワードはadminです。

Vagrantfile
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/centos-7.4"
  config.vm.hostname = "co74orientdb"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "co74orientdb"
     vbox.cpus = 2
     vbox.memory = 2048
     vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
  end
config.vm.network "private_network", ip: "192.168.55.109", :netmask => "255.255.255.0"
config.vm.network "public_network", ip:"192.168.1.109", :netmask => "255.255.255.0"
  config.vm.provision "shell", inline: <<-SHELL
localectl set-locale LANG=ja_JP.UTF-8

# install java
yum -y install java-1.8.0-openjdk

# download and install orientdb community edition
yum -y install unzip
wget https://bit.ly/orientdb-ce-2-2-31 -O orientdb-community-2.2.31.zip
unzip orientdb-community-2.2.31.zip
mv orientdb-community-2.2.31 /opt/orientdb

cat << EOF > /etc/systemd/system/orientdb.service
[Unit]
Description=OrientDB

[Service]
Type=simple
ExecStart=/opt/orientdb/bin/server.sh
ExecStop=/opt/orientdb/bin/shutdown.sh
WorkingDirectory=/opt/orientdb
KillMode=process

[Install]
WantedBy=multi-user.target
EOF
systemctl enable orientdb.service
systemctl start orientdb.service

echo 'access http://192.168.55.109:2480'
echo 'user: admin    password: admin'

SHELL
end

○OrientDB Studioの画面

0 件のコメント:

コメントを投稿