2017年10月4日水曜日

Vagrantでmosquittoがインストールされた仮想マシン(bento/ubuntu-16.04ベース)を構築する

mosquittoがインストールされたubuntu16.04ベースの仮想マシンを構築するには以下のVagrantfileを使用します。

Vagrantfile

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/ubuntu-16.04"
  config.vm.hostname = "ub1604mosquitto"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "ub1604mosquitto"
     vbox.cpus = 2
     vbox.memory = 1024
     vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
  end
  config.vm.network "private_network", ip: "192.168.55.101", :netmask => "255.255.255.0"
  config.vm.network "public_network", ip:"192.168.1.101", :netmask => "255.255.255.0"
  config.vm.provision "shell", inline: <<-SHELL
# update packages
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade

apt-get -y install mosquitto mosquitto-clients

# execute commands for test.
mosquitto_sub -t mytopic/test -h ub1604mosquitto >> /tmp/sample.txt 2>&1 &
sleep 10
mosquitto_pub -t mytopic/test -h ub1604mosquitto -m "test message."
sleep 10
cat /tmp/sample.txt
SHELL
end
・関連情報
Vagrantでmosquittoがインストールされた仮想マシン(bento/centos-7.4ベース)を構築する

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

0 件のコメント:

コメントを投稿