failed to unmount target/data/rancher/k3s/agent/: device or resource busy: unknown
修改linux内核参数:fs.may_detach_mounts=1。现象描述:添加deploy出现下面错误。
·
现象描述:添加deploy出现下面错误
failed to unmount target/data/rancher/k3s/agent/containerd/tmpmounts/containerd-mount927045004: device or resource busy: unknown
修改linux内核参数:fs.may_detach_mounts=1
修改方法 :
#方法1:修改内核参数
#临时修改
echo 1 > /proc/sys/fs/may_detach_mounts
或者
sysctl -w fs.may_detach_mounts=1
#永久修改
#查看所有内核参数
sysctl -a
sysctl -a |grep fs.file-max
#添加内核参数
cat >> /etc/sysctl.conf <<EOF
fs.may_detach_mounts=1
EOF
#重新加载配置
sysctl -p
然后重启集群
更多推荐
已为社区贡献1条内容
所有评论(0)