安装docker要满足一定的条件,对于cents系统,要求必须是64位,并且内核版本是3.10以上。
如果你的centos操作系统内核低于3.10,需要升级到这个版本以上,才能安装docker。
第一步,先看目前的内核版本@H_403_6@
uname -r
在我的系统上输出:
2.6.32-431.el6.centos.plus.x86_64
第二步,导入public key@H_403_6@
- 1
第三步,安装ELRepo@H_403_6@
rpm -Uvh http://www.org/elrepo-release-6-6.el6.noarch.rpm
- 1
第四步,安装内核@H_403_6@
rpm -Uvh http://www.org/elrepo-release-6-6.el6.noarch.rpm
- 1
第四步,安装内核@H_403_6@
在yum的ELRepo源中,有mainline(4.6)、long-term(3.10)这2个内核版本,考虑到long-term更稳定,会长期更新,所以选择这个版本。
查看ELRepo源中内核:http://elrepo.org/linux/kernel/el6/x86_64/RPMS/
安装命令:yum --enablerepo=elrepo-kernel install kernel-lt -y
第五步,编辑grub.conf,修改Grub引导顺序@H_403_6@
vim /etc/grub.conf
确认刚安装好的内核在哪个位置,然后设置default值(从0开始),一般新安装的内核在第一个位置,所以设置default=0。
第六步,重启,查看内核版本号@H_403_6@
unmet -r
在我的系统上输出