- 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.
推薦閱讀
- Java語言程序設計
- Flask Web全棧開發實戰
- Learning C# by Developing Games with Unity 2020
- Debian 7:System Administration Best Practices
- Visual Basic程序開發(學習筆記)
- QGIS By Example
- Learning Zurb Foundation
- 利用Python進行數據分析(原書第3版)
- 學習OpenCV 4:基于Python的算法實戰
- Java網絡編程核心技術詳解(視頻微課版)
- Python函數式編程(第2版)
- C++從入門到精通(第6版)
- 零基礎輕松學C++:青少年趣味編程(全彩版)
- 大規模語言模型開發基礎與實踐
- Getting Started with Web Components