From 59f46bcbcc44f25d68545e0e4c64a893bcad423a Mon Sep 17 00:00:00 2001 From: Matt McNaughton Date: Tue, 3 Dec 2019 09:00:57 -0500 Subject: [PATCH] Add missing `systemctl` step for running `cri-o` (#17926) After installing `cri-o`, we must run `systemctl daemon-reload` before trying to run `systemctl start crio`. Otherwise, `systemd` doesn't know about the crio configuration. Similar instructions already exist for installing docker - this diff adds these instructions for crio. --- .../en/docs/setup/production-environment/container-runtimes.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/en/docs/setup/production-environment/container-runtimes.md b/content/en/docs/setup/production-environment/container-runtimes.md index a721d9ee1dfcd..9594fd2946d42 100644 --- a/content/en/docs/setup/production-environment/container-runtimes.md +++ b/content/en/docs/setup/production-environment/container-runtimes.md @@ -200,6 +200,7 @@ yum install --nogpgcheck cri-o ### Start CRI-O ``` +systemctl daemon-reload systemctl start crio ```