CentOS版本问题安装Docker报错的解决方案

1. 版本信息

# cat /etc/system-release
  CentOS Linux release 7.2.1511 (Core) 
  # uname -a
  Linux k8s-daniel-3 3.10.0-327.28.3.el7.x86_64 #1 SMP Thu Aug 18 19:05:49 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

2. Docker的安装和错误

直接使用yum -y install docker进行安装, 然后无法启动.

CentOS版本问题安装Docker报错的解决方案

3. 报错信息

错误信息: systemctl status docker.service

CentOS版本问题安装Docker报错的解决方案

错误信息:  journalctl -xe

CentOS版本问题安装Docker报错的解决方案

4. 解决方法, 升级CentOS

yum -y update

5. 再次检查

# cat /etc/system-release
  CentOS Linux release 7.6.1810 (Core) 
  # uname -a
  Linux k8s-daniel-3 3.10.0-327.28.3.el7.x86_64 #1 SMP Thu Aug 18 19:05:49 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

CentOS版本问题安装Docker报错的解决方案

6. 重启reboot

非常关键, 一定要reboot, 否则docker还是起不起来。

7. 验证, 问题解决

CentOS版本问题安装Docker报错的解决方案

相关推荐