当前位置:   article > 正文

CentOS7安装docker以及启动docker失败的解决_centos docker unknown server os

centos docker unknown server os

一. 检查Linux内核版本,CenterOS7安装docker要求内核版本在3.10以上:uname  -r

二. 使用yum命令安装:yum install docker

三. 启动Docker:service docker start(最好使用systemctl start docker替代service docker start,原因见另一篇博客:https://blog.csdn.net/yzh_1346983557/article/details/84943287

报错:Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.

按照提示:systemctl status docker.service,看到的日志信息:

原因:是由于docker不支持图像内核驱动,不支持SELinux这个内核上的OrthALA2图形驱动程序。

解决办法:修改docker配置文件:vim  /etc/sysconfig/docker ,把OPTIONS一行改为:

OPTIONS='--selinux-enabled=false --log-driver=journald --signature-verification=false'

按下“Esc”,输入“:wq”保存退出vim编辑模式,再启动:service docker start就ok了。

四. 使用docker运行helloworld:docker run hello-world

补充:

    查看版本: docker -v
    开机启动docker: systemctl enable docker

    停止docker:  systemctl stop docker

   

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/176677?site
推荐阅读
相关标签
  

闽ICP备14008679号