2017年12月21日木曜日

Vagrantでminioがインストールされた仮想マシン(Debian Stretch/9.2)を構築する

以下のVagrantfileを使用して、minioがインストールされた仮想マシン(Debian Stretch/9.2)を構築できます。
仮想マシン構築後、ブラウザからhttp://192.168.55.108:9000/でwebインターフェイルにアクセスできます。

仮想マシンの構築手順

以下のVagrantfileを使用して仮想マシンを構築します。
Vagrantfile
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/debian-9.2"
  config.vm.hostname = "db92minio"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "db92minio"
     vbox.cpus = 2
     vbox.memory = 2048
     vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
  end
  config.vm.network "private_network", ip: "192.168.55.108", :netmask => "255.255.255.0"
  config.vm.network "public_network", ip:"192.168.1.108", :netmask => "255.255.255.0"
  config.vm.provision "shell", inline: <<-SHELL
apt-get -y install task-japanese
sed -i -e 's/# ja_JP.UTF-8 UTF-8/ja_JP.UTF-8 UTF-8/' /etc/locale.gen
locale-gen
update-locale LANG=ja_JP.UTF-8
localectl set-locale LANG=ja_JP.UTF-8
localectl set-keymap jp106
apt-get update
#DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade

# download & install minio
wget https://dl.minio.io/server/minio/release/linux-amd64/minio
chmod +x minio
wget https://dl.minio.io/client/mc/release/linux-amd64/mc
chmod +x mc
mkdir -p /opt/minio/data
mv minio /opt/minio
mv mc /opt/minio
cat << EOF > /etc/systemd/system/minio.service
[Unit]
Description=minio

[Service]
Type=simple
ExecStart=/opt/minio/minio server /opt/minio/data
WorkingDirectory=/opt/minio

[Install]
WantedBy=multi-user.target
EOF
systemctl enable minio.service
systemctl start minio.service
sleep 10

# minioクライアント初期設定
export accessKey=`grep accessKey /root/.minio/config.json | sed -e 's/"//g' | sed -e 's/,//g' | sed -e 's/\t\taccessKey: //g'`
export secretKey=`grep secretKey /root/.minio/config.json | sed -e 's/"//g' | sed -e 's/,//g' | sed -e 's/\t\tsecretKey: //g'`
/opt/minio/mc config host add local http://localhost:9000 $accessKey $secretKey
echo "accessKey -> $accessKey"
echo "secretKey -> $secretKey"

cd /opt/minio/data
# バケットの作成
/opt/minio/mc mb sample
# コンテンツの追加
/opt/minio/mc cp /vagrant/vagrantfile sample
/opt/minio/mc ls sample

echo 'access to http://192.168.55.108:9000/'

SHELL
end

〇minioのwebインターフェイス



関連情報

・Minioのgithubリポジトリ
https://github.com/minio/minio

・Minioに関する他の記事はこちらを参照してください。

0 件のコメント:

コメントを投稿