Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.01 KB

README.md

File metadata and controls

51 lines (35 loc) · 1.01 KB

First Framework: 15PuzzleSolver

Problem Description by clicking here

Requirements

Start the mesos-demo VM

$ 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

Run framework in the mesos-demo VM

$ 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