Last active
June 18, 2019 09:07
-
-
Save dims/7ad86fb2ec12c91a4672 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Start ZooKeeper | |
| --------------- | |
| ````cd ~/zookeeper-3.4.8/ | |
| sudo bin/zkServer.sh start-foreground | |
| ```` | |
| Start Mesos Master | |
| ------------------ | |
| ``` | |
| sudo ./bin/mesos-master.sh --ip=127.0.0.1 --work_dir=/var/lib/mesos --zk=zk://10.0.3:2181/mesos --quorum=1 | |
| ``` | |
| Start Mesos Slave | |
| ------------------ | |
| ``` | |
| sudo ./bin/mesos-slave.sh --master=127.0.0.1:5050 --containerizers=docker,mesos --exutor_registration_timeout=5mins | |
| ``` | |
| Start Marathon | |
| -------------- | |
| ``` | |
| sudo ./bin/start --master zk://10.0.0.3:2181/mesos --zk zk://localhost:2181/marathon | |
| ``` | |
| Deploy Example Marathon App | |
| --------------------------- | |
| https://mesosphere.github.io/marathon/docs/application-basics.html | |
| Notes | |
| ----- | |
| - http://mesos.apache.org/gettingstarted/ | |
| - https://github.com/mesosphere/marathon | |
| - https://mesosphere.github.io/marathon/docs/ | |
| - https://mesosphere.github.io/marathon/docs/native-docker.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment