docker service + 서비스가 다운됐는데 이유를 모르겠어요

docker service + 서비스가 다운됐는데 이유를 모르겠어요

모든 또는 rhel 7.5 머신(5 머신)에 docker 서비스를 설치했습니다.

알 수 없는 이유로 모든 머신에서 docker 서비스가 중지된 것을 볼 수 있습니다(머신은 모두 지난 1년 동안 시작되었습니다).

이상하게도 Docker 서비스는 Restart=always로 구성되어 있으므로 Docker 서비스가 종료되면 다음 Docker 서비스 구성에 따라 몇 초 후에 자동으로 시작됩니다.

TimeoutSec=0
RestartSec=2
Restart=always

전체 설명:

more /etc/systemd/system/multi-user.target.wants/docker.service
[Unit]
Description=Docker Application Container Engine
Documentation=https://docs.docker.com
BindsTo=containerd.service
After=network-online.target firewalld.service containerd.service
Wants=network-online.target
Requires=docker.socket

[Service]
Type=notify
# the default is not to use systemd for cgroups because the delegate issues still
# exists and systemd currently does not support the cgroup feature set required
# for containers run by docker
ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
ExecReload=/bin/kill -s HUP $MAINPID
TimeoutSec=0
RestartSec=2
Restart=always

# Note that StartLimit* options were moved from "Service" to "Unit" in systemd 229.
# Both the old, and new location are accepted by systemd 229 and up, so using the old location
# to make them work for either version of systemd.
StartLimitBurst=3

# Note that StartLimitInterval was renamed to StartLimitIntervalSec in systemd 230.
# Both the old, and new name are accepted by systemd 230 and up, so using the old name to make
# this option work for either version of systemd.
StartLimitInterval=60s

# Having non-zero Limit*s causes performance problems due to accounting overhead
# in the kernel. We recommend using cgroups to do container-local accounting.
LimitNOFILE=infinity
LimitNPROC=infinity
LimitCORE=infinity

제가 걱정하는 것은 docker 서비스 PID에 대한 일부 kill작업 입니다 kill -9. 그럴 수도 있지만 반면에 컴퓨터에 로그인한 사용자가 없으므로 이상합니다.
이에 대한 팁이 있습니까?

관련 정보