This is an automated email from the ASF dual-hosted git repository.

tillt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new fe5a294  Added getting started using the Mesos binaries.
fe5a294 is described below

commit fe5a294b2c7312e40c32b0ad5cee5cd94c79b9fd
Author: Senthil Kumaran <[email protected]>
AuthorDate: Tue Mar 5 23:52:59 2019 +0100

    Added getting started using the Mesos binaries.
    
    Adds informations on how to quickly setup Mesos from RPMs.
    
    Review: https://reviews.apache.org/r/65116/
---
 docs/binary-packages.md             | 44 +++++++++++++++++++++++++++++++++++++
 site/source/downloads.html.erb      |  8 +++++++
 site/source/getting-started.html.md |  4 ++++
 3 files changed, 56 insertions(+)

diff --git a/docs/binary-packages.md b/docs/binary-packages.md
new file mode 100644
index 0000000..462e732
--- /dev/null
+++ b/docs/binary-packages.md
@@ -0,0 +1,44 @@
+---
+title: Apache Mesos - Getting started using Binaries.
+layout: documentation
+---
+
+# Binary Packages
+
+## Downloading the Mesos RPM
+
+Download and install the latest stable RPM binary from the [Bintray 
Repository](https://bintray.com/mesos/):
+
+    $ 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
+
+    $ sudo mv /tmp/bintray-mesos-el.repo /etc/yum.repos.d/bintray-mesos-el.repo
+
+    $ sudo yum update
+
+    $ sudo yum install mesos
+
+The above instructions show how to install the latest version of Mesos for 
RHEL 7.
+Substitute `baseurl` the with the appropriate URL for your operating system.
+
+## Start Mesos Master and Agent.
+
+The RPM installation creates the directory `/var/lib/mesos` that can be used 
as a work directory.
+
+Start the Mesos master with the following command:
+
+    $ mesos-master --work_dir=/var/lib/mesos
+
+On a different terminal, start the Mesos agent, and associate it with the 
Mesos master started above:
+
+    $ mesos-agent --work_dir=/var/lib/mesos --master=127.0.0.1:5050
+
+This is the simplest way to try out Mesos after downloading the RPM. For more 
complex and production
+setup instructions refer to the 
[Administration](http://mesos.apache.org/documentation/latest/#administration) 
section of the docs.
diff --git a/site/source/downloads.html.erb b/site/source/downloads.html.erb
index 259ca43..d5a165c 100644
--- a/site/source/downloads.html.erb
+++ b/site/source/downloads.html.erb
@@ -24,8 +24,13 @@ breadcrumb: Downloads
   <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/<%= 
data.releases.latest_stable.version %>/mesos-<%= 
data.releases.latest_stable.version %>.tar.gz">
           <%= data.releases.latest_stable.version %>
+        </a>,
+        RPM
+        <a href="https://bintray.com/mesos/el/mesos/<%= 
data.releases.latest_stable.version %>#files">
+        <%= data.releases.latest_stable.version %>
         </a>
         (<a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311242&version=<%=
 data.releases.latest_stable.jira_version %>">
           Release Notes
@@ -39,6 +44,9 @@ breadcrumb: Downloads
         <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/site/source/getting-started.html.md 
b/site/source/getting-started.html.md
index 2b1b18f..429e2c4 100644
--- a/site/source/getting-started.html.md
+++ b/site/source/getting-started.html.md
@@ -9,6 +9,10 @@ layout: getting_started_section
 <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>
 
 <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>
 

Reply via email to