我是靠谱客的博主 殷勤凉面,最近开发中收集的这篇文章主要介绍容器启动报错-runc找不到,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

场景

容器启动失败,报错日志如下

time="2020-09-30T14:11:55+08:00" level=error msg="docker Start failed API error (500): {"message":"OCI runtime create failed: unable to retrieve OCI runtime error (open /run/containerd/io.containerd.runtime.v1.linux/moby/30fdb2f047c1e5d9a2b7d478883626e7b920ee97046d5ce2cd84c5bc8cac5792/log.json: no such file or directory): fork/exec /usr/bin/runc: no such file or directory: unknown"}n" line="docker/create.go:264"
time="2020-09-30T14:11:55+08:00" level=error msg="docker start due to API error (500): {"message":"OCI runtime create failed: unable to retrieve OCI runtime error (open /run/containerd/io.containerd.runtime.v1.linux/moby/30fdb2f047c1e5d9a2b7d478883626e7b920ee97046d5ce2cd84c5bc8cac5792/log.json: no such file or directory): fork/exec /usr/bin/runc: no such file or directory: unknown"}nn" containerID=69017 line="docker/create.go:267"

这个 /usr/bin/runc 文件找不到到问题,疑似docker bug,参考 https://github.com/cri-o/cri-o/issues/1767

解决

做软链接

type runc
ln -s /sbin/runc     /usr/bin/runc

重启相关容器即可

最后

以上就是殷勤凉面为你收集整理的容器启动报错-runc找不到的全部内容,希望文章能够帮你解决容器启动报错-runc找不到所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部