- 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.
推薦閱讀
- Python機(jī)器學(xué)習(xí):數(shù)據(jù)分析與評分卡建模(微課版)
- 編程的修煉
- CMDB分步構(gòu)建指南
- 編程卓越之道(卷3):軟件工程化
- 匯編語言程序設(shè)計(jì)(第2版)
- Visual Basic程序設(shè)計(jì)習(xí)題解答與上機(jī)指導(dǎo)
- 用Flutter極速構(gòu)建原生應(yīng)用
- Visual Basic程序設(shè)計(jì)實(shí)踐教程
- Java程序設(shè)計(jì)入門
- 區(qū)塊鏈技術(shù)與應(yīng)用
- OpenResty完全開發(fā)指南:構(gòu)建百萬級別并發(fā)的Web應(yīng)用
- Scala Data Analysis Cookbook
- 并行編程方法與優(yōu)化實(shí)踐
- Distributed Computing in Java 9
- Mastering Embedded Linux Programming