You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ti...@apache.org on 2015/12/17 06:35:34 UTC

[2/3] mesos git commit: Added update for systemd in centos Getting Started.

Added update for systemd in centos Getting Started.

Several bugs related to older versions of systemd have caused failures
on centos 7.1 (e.g. MESOS-3296, MESOS-3352, MESOS-3352). We now add
instructions to explicity update systemd as part of the system
requirements.

Review: https://reviews.apache.org/r/41372/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/097dd2f1
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/097dd2f1
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/097dd2f1

Branch: refs/heads/master
Commit: 097dd2f1943e45e189183304b6232460f4ae6a03
Parents: e789379
Author: Kevin Klues <kl...@gmail.com>
Authored: Thu Dec 17 06:25:46 2015 +0100
Committer: Till Toenshoff <to...@me.com>
Committed: Thu Dec 17 06:26:05 2015 +0100

----------------------------------------------------------------------
 docs/getting-started.md | 8 ++++++++
 1 file changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/097dd2f1/docs/getting-started.md
----------------------------------------------------------------------
diff --git a/docs/getting-started.md b/docs/getting-started.md
index a571624..987d160 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -140,6 +140,14 @@ Following are the instructions for stock CentOS 7.1. If you are using a differen
     gpgkey=http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco
     EOF
 
+    # Parts of Mesos require systemd in order to operate. However, Mesos
+    # only supports versions of systemd that contain the 'Delegate' flag.
+    # This flag was first introduced in 'systemd version 218', which is
+    # lower than the default version installed by centos. Luckily, centos
+    # 7.1 has a patched 'systemd < 218' that contains the 'Delegate' flag.
+    # Explicity update systemd to this patched version.
+    $ sudo yum update systemd
+
     # Install essential development tools.
     $ sudo yum groupinstall -y "Development Tools"