This is an automated email from the ASF dual-hosted git repository.
git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/mesos-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 7876bce Updated the website built from mesos SHA: fe5a294.
7876bce is described below
commit 7876bceecd8c49b0a764fbf68ed2b07548aee3a2
Author: jenkins <[email protected]>
AuthorDate: Tue Mar 5 23:56:11 2019 +0000
Updated the website built from mesos SHA: fe5a294.
---
.../binary-packages}/index.html | 65 ++++++++++++++--------
.../latest/binary-packages}/index.html | 65 ++++++++++++++--------
content/downloads/index.html | 8 +++
content/getting-started/index.html | 4 ++
content/sitemap.xml | 8 +++
5 files changed, 106 insertions(+), 44 deletions(-)
diff --git a/content/getting-started/index.html
b/content/documentation/binary-packages/index.html
similarity index 74%
copy from content/getting-started/index.html
copy to content/documentation/binary-packages/index.html
index 1c43f3e..7c4a59e 100644
--- a/content/getting-started/index.html
+++ b/content/documentation/binary-packages/index.html
@@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
- <title>Apache Mesos | Getting Started</title>
+ <title>Apache Mesos - Getting started using Binaries.</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:locale" content="en_US"/>
@@ -27,7 +27,7 @@
<link
href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"
rel="stylesheet">
<link rel="alternate" type="application/atom+xml" title="Apache Mesos
Blog" href="/blog/feed.xml">
- <link href="../assets/css/main.css" rel="stylesheet" />
+ <link href="../../assets/css/main.css" rel="stylesheet" />
<!-- Google Analytics Magic -->
@@ -63,7 +63,7 @@
</li>
<li><a href="http://mesos.apache.org">Apache Mesos</a></li>
- <li><a href="/getting-started/">Getting Started</a></li>
+ <li><a href="/documentation/">Documentation</a></li>
</ul><!-- /.breadcrumb -->
</div><!-- /.container -->
</div><!-- /.topnav -->
@@ -95,37 +95,58 @@
<div class="content">
<div class="container">
- <div class="row">
- <div class="col-md-2">
- <ul class="list-group">
- <li class="list-group-item"><a
href="/documentation/latest/building/">How To Build</a></li>
- <li class="list-group-item"><a
href="/documentation/latest/beginner-contribution">Beginner
Contribution</a></li>
- <li class="list-group-item"><a
href="/documentation/latest/advanced-contribution">Advanced
Contribution</a></li>
- <li class="list-group-item"><a
href="https://issues.apache.org/jira/browse/MESOS">JIRA Issue Tracker</a></li>
- </li>
+ <div class="row-fluid">
+ <div class="col-md-4">
+ <h4>If you're new to Mesos</h4>
+ <p>See the <a href="/getting-started/">getting started</a> page for more
+ information about downloading, building, and deploying Mesos.</p>
+
+ <h4>If you'd like to get involved or you're looking for support</h4>
+ <p>See our <a href="/community/">community</a> page for more details.</p>
</div>
- <div class="col-md-10">
- <h1>Getting Started</h1>
+ <div class="col-md-8">
+ <h1>Binary Packages</h1>
+<h2>Downloading the Mesos RPM</h2>
+<p>Download and install the latest stable RPM binary from the <a
href="https://bintray.com/mesos/">Bintray Repository</a>:</p>
+<pre><code>$ cat > /tmp/bintray-mesos-el.repo <<EOF
+#bintray-mesos-el - packages by mesos from Bintray
+[bintray-mesos-el]
+name=bintray-mesos-el
+baseurl=https://dl.bintray.com/mesos/el/7/x86_64
+gpgcheck=0
+repo_gpgcheck=0
+enabled=1
+EOF
-<p>For a great introduction to building and running a distributed system with
Apache Mesos, watch Benjamin Hindman's <a
href="https://www.youtube.com/watch?v=hTcZGODnyf0">talk on YouTube</a>. If
anything could be considered <i>required reading</i>, it would be the official
white paper: <a
href="https://people.eecs.berkeley.edu/~alig/papers/mesos.pdf">Mesos: A
Platform for Fine-Grained Resource Sharing in the Data Center</a>.</p>
+$ sudo mv /tmp/bintray-mesos-el.repo /etc/yum.repos.d/bintray-mesos-el.repo
+$ sudo yum update
+$ sudo yum install mesos
+</code></pre>
+<p>The above instructions show how to install the latest version of Mesos for
RHEL 7.
+Substitute <code>baseurl</code> the with the appropriate URL for your
operating system.</p>
-<div class="row-fluid">
- <h2 name="building">How To Build</h2>
- <p>See the <a href="/documentation/latest/building">building
documentation</a> to learn how to build Mesos from source on various
platforms.</p>
+<h2>Start Mesos Master and Agent.</h2>
- <h2 name="contribute">Contribute</h2>
- <p>Read the <a href="/documentation/latest/beginner-contribution">beginner
contribution guide</a> for a first-time introduction to the process of
contributing to Mesos. For the standard day-to-day workflow for advanced Mesos
contributors, read our <a
href="/documentation/latest/advanced-contribution">advanced contribution
guide</a>. The latter guide also includes information on our core libraries, <a
href="https://github.com/apache/mesos/blob/master/3rdparty/stout/README.md">stout</a
[...]
+<p>The RPM installation creates the directory <code>/var/lib/mesos</code> that
can be used as a work directory.</p>
- <h2 name="community">Community</h2>
- <p>Refer to the <a href="/community">community page</a> for our mailing
lists, Slack, IRC, and JIRA issue tracker.</p>
-</div>
+<p>Start the Mesos master with the following command:</p>
+
+<pre><code>$ mesos-master --work_dir=/var/lib/mesos
+</code></pre>
+
+<p>On a different terminal, start the Mesos agent, and associate it with the
Mesos master started above:</p>
+
+<pre><code>$ mesos-agent --work_dir=/var/lib/mesos --master=127.0.0.1:5050
+</code></pre>
+<p>This is the simplest way to try out Mesos after downloading the RPM. For
more complex and production
+setup instructions refer to the <a
href="http://mesos.apache.org/documentation/latest/#administration">Administration</a>
section of the docs.</p>
</div>
</div>
diff --git a/content/getting-started/index.html
b/content/documentation/latest/binary-packages/index.html
similarity index 74%
copy from content/getting-started/index.html
copy to content/documentation/latest/binary-packages/index.html
index 1c43f3e..40b914d 100644
--- a/content/getting-started/index.html
+++ b/content/documentation/latest/binary-packages/index.html
@@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
- <title>Apache Mesos | Getting Started</title>
+ <title>Apache Mesos - Getting started using Binaries.</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:locale" content="en_US"/>
@@ -27,7 +27,7 @@
<link
href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"
rel="stylesheet">
<link rel="alternate" type="application/atom+xml" title="Apache Mesos
Blog" href="/blog/feed.xml">
- <link href="../assets/css/main.css" rel="stylesheet" />
+ <link href="../../../assets/css/main.css" rel="stylesheet" />
<!-- Google Analytics Magic -->
@@ -63,7 +63,7 @@
</li>
<li><a href="http://mesos.apache.org">Apache Mesos</a></li>
- <li><a href="/getting-started/">Getting Started</a></li>
+ <li><a href="/documentation/">Documentation</a></li>
</ul><!-- /.breadcrumb -->
</div><!-- /.container -->
</div><!-- /.topnav -->
@@ -95,37 +95,58 @@
<div class="content">
<div class="container">
- <div class="row">
- <div class="col-md-2">
- <ul class="list-group">
- <li class="list-group-item"><a
href="/documentation/latest/building/">How To Build</a></li>
- <li class="list-group-item"><a
href="/documentation/latest/beginner-contribution">Beginner
Contribution</a></li>
- <li class="list-group-item"><a
href="/documentation/latest/advanced-contribution">Advanced
Contribution</a></li>
- <li class="list-group-item"><a
href="https://issues.apache.org/jira/browse/MESOS">JIRA Issue Tracker</a></li>
- </li>
+ <div class="row-fluid">
+ <div class="col-md-4">
+ <h4>If you're new to Mesos</h4>
+ <p>See the <a href="/getting-started/">getting started</a> page for more
+ information about downloading, building, and deploying Mesos.</p>
+
+ <h4>If you'd like to get involved or you're looking for support</h4>
+ <p>See our <a href="/community/">community</a> page for more details.</p>
</div>
- <div class="col-md-10">
- <h1>Getting Started</h1>
+ <div class="col-md-8">
+ <h1>Binary Packages</h1>
+<h2>Downloading the Mesos RPM</h2>
+<p>Download and install the latest stable RPM binary from the <a
href="https://bintray.com/mesos/">Bintray Repository</a>:</p>
+<pre><code>$ cat > /tmp/bintray-mesos-el.repo <<EOF
+#bintray-mesos-el - packages by mesos from Bintray
+[bintray-mesos-el]
+name=bintray-mesos-el
+baseurl=https://dl.bintray.com/mesos/el/7/x86_64
+gpgcheck=0
+repo_gpgcheck=0
+enabled=1
+EOF
-<p>For a great introduction to building and running a distributed system with
Apache Mesos, watch Benjamin Hindman's <a
href="https://www.youtube.com/watch?v=hTcZGODnyf0">talk on YouTube</a>. If
anything could be considered <i>required reading</i>, it would be the official
white paper: <a
href="https://people.eecs.berkeley.edu/~alig/papers/mesos.pdf">Mesos: A
Platform for Fine-Grained Resource Sharing in the Data Center</a>.</p>
+$ sudo mv /tmp/bintray-mesos-el.repo /etc/yum.repos.d/bintray-mesos-el.repo
+$ sudo yum update
+$ sudo yum install mesos
+</code></pre>
+<p>The above instructions show how to install the latest version of Mesos for
RHEL 7.
+Substitute <code>baseurl</code> the with the appropriate URL for your
operating system.</p>
-<div class="row-fluid">
- <h2 name="building">How To Build</h2>
- <p>See the <a href="/documentation/latest/building">building
documentation</a> to learn how to build Mesos from source on various
platforms.</p>
+<h2>Start Mesos Master and Agent.</h2>
- <h2 name="contribute">Contribute</h2>
- <p>Read the <a href="/documentation/latest/beginner-contribution">beginner
contribution guide</a> for a first-time introduction to the process of
contributing to Mesos. For the standard day-to-day workflow for advanced Mesos
contributors, read our <a
href="/documentation/latest/advanced-contribution">advanced contribution
guide</a>. The latter guide also includes information on our core libraries, <a
href="https://github.com/apache/mesos/blob/master/3rdparty/stout/README.md">stout</a
[...]
+<p>The RPM installation creates the directory <code>/var/lib/mesos</code> that
can be used as a work directory.</p>
- <h2 name="community">Community</h2>
- <p>Refer to the <a href="/community">community page</a> for our mailing
lists, Slack, IRC, and JIRA issue tracker.</p>
-</div>
+<p>Start the Mesos master with the following command:</p>
+
+<pre><code>$ mesos-master --work_dir=/var/lib/mesos
+</code></pre>
+
+<p>On a different terminal, start the Mesos agent, and associate it with the
Mesos master started above:</p>
+
+<pre><code>$ mesos-agent --work_dir=/var/lib/mesos --master=127.0.0.1:5050
+</code></pre>
+<p>This is the simplest way to try out Mesos after downloading the RPM. For
more complex and production
+setup instructions refer to the <a
href="http://mesos.apache.org/documentation/latest/#administration">Administration</a>
section of the docs.</p>
</div>
</div>
diff --git a/content/downloads/index.html b/content/downloads/index.html
index 3f8662f..6844d5f 100644
--- a/content/downloads/index.html
+++ b/content/downloads/index.html
@@ -610,8 +610,13 @@
<div class="col-md-8">
<h1>Download Mesos</h1>
<p>Download the most recent stable release:
+ Source
<a
href="http://www.apache.org/dyn/closer.cgi/mesos/1.7.1/mesos-1.7.1.tar.gz">
1.7.1
+ </a>,
+ RPM
+ <a href="https://bintray.com/mesos/el/mesos/1.7.1#files">
+ 1.7.1
</a>
(<a
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=12343861">
Release Notes
@@ -625,6 +630,9 @@
<a href="https://github.com/apache/mesos">GitHub</a>.
</p>
+ <h4>Getting older Mesos binaries</h4>
+ Previous versions of Mesos can be downloaded from the BinTray URL:<a
href="https://bintray.com/mesos">https://bintray.com/mesos</a>.
+
<p>Once you have downloaded Mesos, follow the
<a href="/getting-started/">getting started instructions</a>,
and take a look at the rest of the
diff --git a/content/getting-started/index.html
b/content/getting-started/index.html
index 1c43f3e..351793d 100644
--- a/content/getting-started/index.html
+++ b/content/getting-started/index.html
@@ -116,6 +116,10 @@
<div class="row-fluid">
+ <h2 name="binary-packages">How to use Binary Packages</h2>
+
+ Find out how to download <a
href="/documentation/latest/binary-packages">binary packages</a> and run Mesos
on supported platforms.
+
<h2 name="building">How To Build</h2>
<p>See the <a href="/documentation/latest/building">building
documentation</a> to learn how to build Mesos from source on various
platforms.</p>
diff --git a/content/sitemap.xml b/content/sitemap.xml
index 5d1ee43..e7ea673 100644
--- a/content/sitemap.xml
+++ b/content/sitemap.xml
@@ -77,6 +77,10 @@
<lastmod>2019-03-05T00:00:00+00:00</lastmod>
</url>
<url>
+ <loc>http://mesos.apache.org/documentation/latest/binary-packages/</loc>
+ <lastmod>2019-03-05T00:00:00+00:00</lastmod>
+ </url>
+ <url>
<loc>http://mesos.apache.org/documentation/latest/markdown-style-guide/</loc>
<lastmod>2019-03-05T00:00:00+00:00</lastmod>
</url>
@@ -18753,6 +18757,10 @@
<lastmod>2019-03-05T00:00:00+00:00</lastmod>
</url>
<url>
+ <loc>http://mesos.apache.org/documentation/binary-packages/</loc>
+ <lastmod>2019-03-05T00:00:00+00:00</lastmod>
+ </url>
+ <url>
<loc>http://mesos.apache.org/documentation/markdown-style-guide/</loc>
<lastmod>2019-03-05T00:00:00+00:00</lastmod>
</url>