「Mesos」の版間の差分

提供: Ubuntu入門
移動: 案内検索
(ページの作成:「Apache Software Foundation が開発している Mesos とは、Dockerコンテナのオーケストレーションの仕組みを提供するソフトウェア...」)
(相違点なし)

2015年8月30日 (日) 19:28時点における版

Apache Software Foundation が開発している Mesos とは、Dockerコンテナのオーケストレーションの仕組みを提供するソフトウェアです。Mesosのほかには、Googleの開発したKubernetes があります。

読み方

Mesos
めそす

概要

Mesos は、単体では、単純な機能しか持たないため、複数ホストのコンテナを管理する場合には、ほかのツールを利用します。コンテナ情報の管理には、ZooKeeper を利用します。

インストール

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF
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
 
sudo apt update
sudo apt -y install mesos marathon chronos

設定

 

使い方

 

関連項目