解决:dockerd: failed to start daemon: Devices cgroup isn‘t mounted
Posted 互联网老辛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决:dockerd: failed to start daemon: Devices cgroup isn‘t mounted相关的知识,希望对你有一定的参考价值。
问题复现
安装docker-19.03.9.tgz
解压并安装后,启动docker
./dockerd & 出现报错提示如下:
failed to start daemon: Devices cgroup isn’t mounted
问题分析
此问题很可能是cgroup没有挂载导致的,因为cgroup没有挂载,所以无法工作。
我们可以直接挂载即可。
问题解决
此处我们直接使用脚本解决,你可以直接复制脚本到你的服务器中,执行即可。
注释:
set -e : 在脚本的前面加上这条命令,表示如果任何语句的执行结果不是true则应该退出。
如果要增加可读性,可以使用set -o errexit,它的作用与set -e相同。
-e 表示文件存在
moutpoint: 判断指定的目录是否是挂载点
set -e
# 这句是告诉bash如何有任何语句执行结果不为ture,就应该退出。
if grep -v '^#' /etc/fstab | grep -q cgroup; then
echo 'cgroups mounted from fstab, not mounting /sys/fs/cgroup'
exit 0
fi
# kernel provides cgroups?
if [ ! -e /proc/cgroups ]; then
exit 0
fi
# 确保目录存在
if [ ! -d /sys/fs/cgroup ]; then
exit 0
fi
# mount /sys/fs/cgroup if not already done
if ! mountpoint -q /sys/fs/cgroup; then
mount -t tmpfs -o uid=0,gid=0,mode=0755 cgroup /sys/fs/cgroup
fi
cd /sys/fs/cgroup
# get/mount list of enabled cgroup controllers
for sys in $(awk '!/^#/ { if ($4 == 1) print $1 }' /proc/cgroups); do
mkdir -p $sys
if ! mountpoint -q $sys; then
if ! mount -n -t cgroup -o $sys cgroup $sys; then
rmdir $sys || true
fi
fi
done
exit 0
挂载完的效果:
问题总结
这个问题我看到网上也经常会出现,本测试结果真实有效,可以直接复制脚本解决。
以上是关于解决:dockerd: failed to start daemon: Devices cgroup isn‘t mounted的主要内容,如果未能解决你的问题,请参考以下文章
centos下git报错Failed to connect to repository : Command "git ls-remote -h HEAD" returned sta
centos下git报错Failed to connect to repository : Command "git ls-remote -h HEAD" returned sta
centos下git报错Failed to connect to repository : Command "git ls-remote -h HEAD" returned sta
词云:解决pip install wordcloud安装过程中报错“error: command 'x86_64-linux-gnu-gcc' failed with exit sta
阿里云专有网络GitLab6.3.1启动报错 master failed to start
Realcase: Failed to upgrade SQL Server 2016 SP2 CU11. (Installation success or error status: 1648)(示