From 547b5489df8c11ea25984dbaf914c58216d27219 Mon Sep 17 00:00:00 2001 From: David Noland Date: Tue, 24 Mar 2020 13:57:34 -0700 Subject: [PATCH] Fixed groupadd https://github.com/rancher/docs/issues/2331 --- content/rancher/v2.x/en/security/hardening-2.3.5/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/rancher/v2.x/en/security/hardening-2.3.5/_index.md b/content/rancher/v2.x/en/security/hardening-2.3.5/_index.md index 5ba7ccdd14a..213826808ad 100644 --- a/content/rancher/v2.x/en/security/hardening-2.3.5/_index.md +++ b/content/rancher/v2.x/en/security/hardening-2.3.5/_index.md @@ -43,7 +43,7 @@ A user account and group for the **etcd** service is required to be setup prior To create the **etcd** group run the following console commands. ``` -addgroup --gid 52034 etcd +groupadd --gid 52034 etcd useradd --comment "etcd service account" --uid 52034 --gid 52034 etcd ```