Ubuntu Kylin 16.04 安装docker(使用阿里镜像)
在部署ceph存储集群的过程中,发现ceph集群不稳定,总是会出现 pgs inactive
的warning。后来打算跟师兄一样使用docker部署ceph,而自己目前的主机上均没有安装docker。于是,首先需要安装docker。现在将自己安docker的过程记录下来,以便后面查阅。
- 1. 如果曾经安装过docker,移除已经安装过得docker
$ sudo apt-get remove docker docker-engine docker-ce docker.io
- 2. 更新apt包索引
$ sudo apt-get update
- 3. 安装前置环境
$ sudo apt-get install -y\
apt-transport-https ca-certificates\
curl software-properties-common
- 4. 添加Docker的阿里镜像GPG key
$ curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
- 5. 验证该key是否安装成功(一般提示ok就不用验证了)
$ sudo apt-key fingerprint 0EBFCD88
- 6. 设置stable存储库
$ sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
或者
$ sudo add-apt-repository \
"deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
$(lsb_release -cs) \
stable"
- 7. 再次更新apt包索引
$ sudo apt-get update
- 8. 列出可用的版本并安装自己想要的版本
$ sudo apt-cache madison docker-ce
选择要安装的特定版本,第二列是版本字符串,第三列是存储库名称,它指示包来自哪个存储库,以及扩展它的稳定性级别。要安装一个特定的版本,将版本字符串附加到包名中,并通过等号(=)分隔它们:
$ sudo apt-get install docker-ce=<VERSION>
或者直接安装最新版本
$ sudo apt-get install -y docker-ce
- 9. 验证docker
查看docker是否启动,显示active表示已经启动
$ systemctl status docker
若未启动,开启docker服务
$ sudo systemctl start docker
重启docker服务
$ sudo service docker restart
检查安装版本,注意一定得加sudo
,不然报错如下:
Got permission denied while trying to connect to the Docker daemon socket at
unix:///var/run/docker.sock: Get http://%2Fvar%2Frun%2Fdocker.sock/v1.27/version: dial
unix /var/run/docker.sock: connect: permission denied
$ sudo docker version
$ sudo docker info
$ sudo docker --version
运行Hello World 实例(第一次运行,会提示Unable to find image 'hello-world:latest' locally
)
$ sudo docker run hello-world
- 10. 应用用户加入docker组 ,避免每次都要输入sudo