本文共 2353 字,大约阅读时间需要 7 分钟。
CentOS是目前企业里面用的相对较多的版本,随着技术的成熟,越来越多的用户选择使用docker环境。但是,如果直接在CentOS6.5中通过yum安装,安装完成后我无法启动docker服务的,因为Linux内核版本太低,我们需要先进行升级再安装。下面我们简单介绍一下具体的安装步骤:
1.查看当前版本[root@localhost ~]# more /etc/issueCentOS release 6.5 (Final)[root@localhost ~]# uname -aLinux localhost.localdomain 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux2.升级内核a.导入public keyrpm --import b,安装ELRepo到CentOS-6.5中rpm -ivh 3.安装kernel-lt(lt=long-term)yum --enablerepo=elrepo-kernel install kernel-lt -y或者安装kernel-ml(ml=mainline)yum --enablerepo=elrepo-kernel install kernel-ml -y4.编辑grub.conf文件,修改Grub引导顺序vim /etc/grub.conf#grub.conf generated by anacondadefault=0timeout=5splashimage=(hd0,0)/grub/splash.xpm.gzhiddenmenutitle CentOS (4.4.121-1.el6.elrepo.x86_64)root (hd0,0)kernel /vmlinuz-4.4.121-1.el6.elrepo.x86_64 ro root=UUID=9955fe5f-5015-4582-a9d5-60fedd85d282 rd_NO_LUKS rd_NO_LVM LANG=zh_CN.UTF-8 rd_NO_MD SYSFONT=latarcyrheb-sun16 crashkernel=auto KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rhgb quietinitrd /initramfs-4.4.121-1.el6.elrepo.x86_64.imgtitle CentOS (2.6.32-431.el6.x86_64)root (hd0,0)kernel /vmlinuz-2.6.32-431.el6.x86_64 ro root=UUID=9955fe5f-5015-4582-a9d5-60fedd85d282 rd_NO_LUKS rd_NO_LVM LANG=en_US.UTF-8 rd_NO_MD SYSFONT=latarcyrheb-sun16 crashkernel=auto KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rhgb quietinitrd /initramfs-2.6.32-431.el6.x86_64.img确认刚安装好的内核在哪个位置,然后设置default值(从0开始),一般新安装的内核在第一个位置,所以设置default=0。5.重启,查看内核版本号.[root@localhost ~]# reboot[root@localhost ~]# uname -r4.4.121-1.el6.elrepo.x86_64至此,CentOS6.5的内核升级完成,下面就可以安装docker了.二.安装docker
直接使用命令: yum install docker-io是会报错的!!! 提示:No package docker-io available.需要先安装yum 源.yum -y install 再执行yum install docker-io就可以正常安装了!!启动dockerservice docker start查看docker版本:[root@localhost ]# docker versionClient version: 1.7.1Client API version: 1.19Go version (client): go1.4.2Git commit (client): 786b29d/1.7.1OS/Arch (client): linux/amd64Server version: 1.7.1Server API version: 1.19Go version (server): go1.4.2Git commit (server): 786b29d/1.7.1OS/Arch (server): linux/amd64查看docker日志.cat /var/log/docker至此,docker安装完成!!!三.卸载docker列出你安装过的包[root@localhost ~]# yum list installed | grep dockerdocker-io.x86_64 1.7.1-2.el6 @epel 删除软件包yum -y remove docker-io.x86_64(为了速度更快,建议修改使用国内源!)转载于:https://blog.51cto.com/lifulin/2327229