- 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.
推薦閱讀
- Mastering Ext JS(Second Edition)
- Android Wearable Programming
- UVM實戰(zhàn)
- Spring核心技術(shù)和案例實戰(zhàn)
- NGINX Cookbook
- 軟件測試教程
- Creating Data Stories with Tableau Public
- SQL Server 入門很輕松(微課超值版)
- 人人都能開發(fā)RPA機器人:UiPath從入門到實戰(zhàn)
- Solr權(quán)威指南(下卷)
- HTML5游戲開發(fā)實戰(zhàn)
- Mastering Machine Learning with R
- C# 7 and .NET Core 2.0 Blueprints
- Python Django Web從入門到項目實戰(zhàn)(視頻版)
- Python程序員面試算法寶典