- Apache Mesos Cookbook
- David Blomquist Tomasz Janiszewski
- 130字
- 2021-07-15 17:04:23
How to do it...
- First, download and install the OpenPGP key for the Mesosphere packages:
$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF
- Now install the Mesosphere repository:
$ DISTRO=$(lsb_release -is | tr '[:upper:]' '[:lower:]') $ CODENAME=$(lsb_release -cs) $ echo "deb http://repos.mesosphere.io/${DISTRO} ${CODENAME} main"|
sudo tee /etc/apt/sources.list.d/mesosphere.list
- Update the apt-get package indexes:
$ sudo apt-get update
- Install Mesos and the included ZooKeeper binaries:
$ sudo apt-get -y install mesos
- At this point, you can start Mesos to do some basic testing. To start the Mesos master and agent (slave) daemons, execute the following command:
$ sudo service mesos-master start $ sudo service mesos-slave start
- To validate the Mesos installation, open a browser and point it to http://<ipaddress>:5050. Replace <ipaddress> with the actual address of the host with the new Mesos installation.
推薦閱讀
- Mastering OpenCV 4
- 深度強化學習算法與實踐:基于PyTorch的實現
- Java應用開發技術實例教程
- R語言與網絡輿情處理
- Learning OpenCV 3 Computer Vision with Python(Second Edition)
- Learning Unreal Engine Android Game Development
- HTML5秘籍(第2版)
- OpenCV with Python By Example
- Moodle 3 Administration(Third Edition)
- Learning Unreal Engine Game Development
- Arduino Electronics Blueprints
- Learning ECMAScript 6
- Microsoft Azure Security
- 計算機應用基礎
- Java Web應用設計及實戰