Problem Description by clicking here
- VirtualBox 4.1.18+
- Vagrant 1.3+
$ wget http://downloads.mesosphere.io/demo/mesos.box -O mesos.box
$ vagrant box add --name mesos-demo mesos.box
$ vagrant up
The Mesos Web UI: http://10.141.141.10:5050
$ vagrant ssh
$ cd hostfiles
# Update install dependencies
$ sudo apt-get update
$ sudo apt-get install libcurl4-openssl-dev libboost-regex1.55-dev \
libprotobuf-dev libgoogle-glog-dev protobuf-compiler
# Build
$ make all
# Start the scheduler with the mesos master ip
$ ./first_framework --master 127.0.1.1:5050
### Cleanup
```bash
# Exit out of the VM
vagrant@mesos:hostfiles $ exit
# Stop the VM
$ vagrant halt
# To delete all traces of the vagrant machine
$ vagrant destroy