ubuntu 14.04 64位安装配置docker教程
背景
一年前就听说了docker,想用它做虚拟机,今天终于有机会付诸实践了。
我这里使用的是64位 ubuntu 14.04。想虚拟出4台设备,分别安装软件,进行集群测试。
由于linux容器的bug,docker在linux的kernel3.8上运行最佳。
环境检查及安装
看下我们的ubuntu版本命令:
再来看下内核,命令:
uname -r 3.2.0-67-generic
由于内核没有达到要求,我们接下来用下面的命令升级内核:
注意:升级后需要重启ubuntu.#重启后检查内核版本。
*******如果上述升级内核方法无法升级,参考如下方法:
ubuntu 14.04 用户怎样安装 kernel 3.14 内核 *(安装方法,直接下载deb安装包,使用以下命令)
32 位系统安装命令
下载安装包:
wget kernel.ubuntu.com/~kernel-ppa/mainline/v3.14-trusty/linux-headers-3.14.0-031400_3.14.0-031400.201403310035_all.deb
wget kernel.ubuntu.com/~kernel-ppa/mainline/v3.14-trusty/linux-headers-3.14.0-031400-generic_3.14.0-031400.201403310035_i386.deb
wget kernel.ubuntu.com/~kernel-ppa/mainline/v3.14-trusty/linux-image-3.14.0-031400-generic_3.14.0-031400.201403310035_i386.deb
安装:
64 位系统安装命令
下载安装包:
wget kernel.ubuntu.com/~kernel-ppa/mainline/v3.14-trusty/linux-headers-3.14.0-031400_3.14.0-031400.201403310035_all.deb
wget kernel.ubuntu.com/~kernel-ppa/mainline/v3.14-trusty/linux-headers-3.14.0-031400-generic_3.14.0-031400.201403310035_amd64.deb
wget kernel.ubuntu.com/~kernel-ppa/mainline/v3.14-trusty/linux-image-3.14.0-031400-generic_3.14.0-031400.201403310035_amd64.deb
安装:
********
安装部署docker
更新下源:
vim /etc/apt/sources.list
使用以下阿里源:
deb http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
升级并安装:
apt-get update apt-get install docker.io service docker.io restart
启动
root@linuxidc:~#docker run -i -t ubuntu /bin/bash cannot connect to the docker daemon. is 'docker -d' running on this host? root@iz28ikebrg6z:~# docker -d
出现如下错误:
root@iz28ikebrg6z:~# docker -d
could not find a free ip address range for interface 'docker0'. please configure its address manually and run 'docker -b docker0'
然后我们只需要输入:
注意这里,每次重启后都要执行上面这条命令,制定子网掩码。
再执行 docker -d 启动ok说明docker安装完毕并启动成功。
创建容器及使用
docker pull ubuntu #此处是从官网拉取名为ubuntu的image docker images 查看拉取下来的镜像,注意:repository:tag后边启动使用 docker run -i -t ubuntu:latest /bin/bash #创建一个容器,-t是临时终端。 docker run -dit [container_name or container_id]#交互式启动 run -d ubuntu:latest /bin/bash #后台启动。 //tips:退出时,使用[ctrl + d]或exit,这样会结束docker当前线程,容器结束。 //可以同时使用[ctrl + p][ctrl + q]退出而不终止容器运行 docker exec -it [container_name or container_id] /bin/bash #会在指定容器中执行指定命令。 docker rename container_name new_name #给容器重命名 docker rm container_id #删除容器 docker accach container_name #进入某个后台容器 run -d -p 50001:22 ubuntu:latest /bin/bash #创建端口映射从50001到容器的22端口,然后登陆安装ssh
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: docker容器调用yum报错的解决办法
推荐阅读
-
mysql 5.7.17 安装配置方法图文教程(ubuntu 16.04)
-
Linux(Ubuntu)下mysql5.7.17安装配置方法图文教程
-
mysql 5.7.16 安装配置方法图文教程(ubuntu 16.04)
-
Linux(Ubuntu)下Mysql5.6.28安装配置方法图文教程
-
Ubuntu Server 16.04下mysql8.0安装配置图文教程
-
Ubuntu 18.04下mysql 8.0 安装配置方法图文教程
-
mysql 5.7.17 安装配置方法图文教程(ubuntu 16.04)
-
Linux(Ubuntu)下Mysql5.6.28安装配置方法图文教程
-
Linux(Ubuntu)下mysql5.7.17安装配置方法图文教程
-
mysql 5.7.16 安装配置方法图文教程(ubuntu 16.04)