- Apache Mesos Cookbook
- David Blomquist Tomasz Janiszewski
- 129字
- 2021-07-15 17:04:22
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:
$ 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.
推薦閱讀
- Learning Scala Programming
- Node.js 10實(shí)戰(zhàn)
- Java異步編程實(shí)戰(zhàn)
- 實(shí)戰(zhàn)Java程序設(shè)計(jì)
- Access 2010數(shù)據(jù)庫(kù)基礎(chǔ)與應(yīng)用項(xiàng)目式教程(第3版)
- JS全書:JavaScript Web前端開發(fā)指南
- Getting Started with Python Data Analysis
- 精通Python設(shè)計(jì)模式(第2版)
- Getting Started with Greenplum for Big Data Analytics
- Python語(yǔ)言實(shí)用教程
- C#程序設(shè)計(jì)(項(xiàng)目教學(xué)版)
- Visual Studio Code 權(quán)威指南
- 機(jī)器學(xué)習(xí)微積分一本通(Python版)
- SQL Server 2016 從入門到實(shí)戰(zhàn)(視頻教學(xué)版)
- C++從入門到精通(第6版)