博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
docker命令无法使用,关闭selinux 即可
阅读量:5876 次
发布时间:2019-06-19

本文共 986 字,大约阅读时间需要 3 分钟。

运行“systemctl start docker.service” 报错 '

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

运行'docker ps' 报错'

Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?'
关闭selinux即可
操作步骤如下:
[root@localhost ~]# getenforce
Enforcing
[root@localhost ~]# setenforce 0
[root@localhost ~]# getenforce
Permissive
[root@localhost ~]# systemctl start docker.service
Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.

[root@localhost ~]# vi /etc/selinux/config 修改 SELINUX=disabled 重新启动系统即可

[root@localhost ~]# init 6
Last login: Mon Aug 27 06:12:24 2018 from 192.168.1.105
[root@localhost ~]# systemctl status docker.service
[root@localhost ~]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES

转载于:https://blog.51cto.com/8772603/2165120

你可能感兴趣的文章
在Fedora25上轻松安装Cuda8
查看>>
程序员们,AI来了,机会来了,危机也来了
查看>>
JavaScript基础笔记集合(转)
查看>>
解决——CSS :before、:after ,当content使用中文时有时候会出现乱码
查看>>
一致性Hash 分析和实现
查看>>
总结java中的super和this关键字
查看>>
201521123009 《Java程序设计》第11周学习总结
查看>>
可解释的机器学习
查看>>
Python3之多线程学习
查看>>
aspx页面@Page指令解析
查看>>
POJ 2002
查看>>
MVC和MTV结构分析
查看>>
每天一个linux命令:mkdir
查看>>
thinkphp总体设计
查看>>
HYPER -V 独立安装的 2016版本 中文版 下载好慢啊
查看>>
最大数maxnumber bzoj1012 JSOI2008 单调队列
查看>>
githua学习地址
查看>>
(转)微信网页扫码登录的实现
查看>>
SpringBoot2.x配置Cors跨域
查看>>
用AJAX实现页面登陆以及注册用户名验证
查看>>