Docker 安装Centos7
2022/7/23 5:25:25
本文主要是介绍Docker 安装Centos7,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
背景:我需要三台Centos7来部署分布式系统,但是只有一台Centos7,故想用Docker虚拟三台出来
1、下载Centos7镜像,通过docker search centos7查看镜像列表,用第一个。
[root@free-share local]# docker pull docker.io/ansible/centos7-ansible Using default tag: latest Trying to pull repository docker.io/ansible/centos7-ansible ... latest: Pulling from docker.io/ansible/centos7-ansible 45a2e645736c: Pull complete 1c3acf573616: Pull complete edcb61e55ccc: Pull complete cbae31bad30a: Pull complete aacbdb1e2a62: Pull complete fdeea4fb835c: Pull complete Digest: sha256:39eff7d56b96530d014083cd343f7314c23acbd1ecf37eb75a71a2f6584d0b02 Status: Downloaded newer image for docker.io/ansible/centos7-ansible:latest [root@free-share local]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE docker.io/ansible/centos7-ansible latest 688353a31fde 5 years ago 447 MB
2、使用镜像创建容器
[root@free-share local]# docker run -itd -p 6022:22 --name=vm01 -v /bodata:/bodata -h vm01 --privileged=true 688353a31fde 1a055acb4e761a61775667a3193c811b5327ef0fc2aeb77e33d1fb325474fe32 [root@free-share local]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 7ec547fc37e5 688353a31fde "/bin/bash" 31 seconds ago Up 27 seconds 0.0.0.0:6022->22/tcp vm01
-i:以交互模式运行容器,通常与 -t 同时使用;
-t:为容器重新分配一个伪输入终端,通常与 -i 同时使用;
-d:后台运行容器,并返回容器ID;
-p:指定端口映射,格式为:主机(宿主)端口:容器端口
--name:为容器指定一个名称;
-h:为容器指定hostname
-v:将宿主机的目录挂载在容器中,格式为:主机(宿主)目录:容器目录,且不存在时会自行创建
3、此时使用ssh工具连ip:6022是不通的,要进入容器安装一些基础工具(sshd等网络工具)后才可以用ssh连接。
[root@free-share bodata]# docker exec -it 7ec547fc37e5 /bin/bash [root@vm01 ~]# yum install -y openssh-server [root@vm01 ~]# yum install -y net-tools [root@vm01 ~]# ssh-keygen -A ##为ssh生成必要的秘钥等 [root@vm01 ~]# /usr/sbin/sshd ##启动ssh后台服务 [root@vm01 ~]# echo 1|passwd --stdin root ##修改容器root用户密码为1,也可以用passwd root来修改
4、用xshell连接ip:6022,连接成功。
Connecting to 192.168.2.54:6022... Connection established. To escape to local shell, press 'Ctrl+Alt+]'. WARNING! The remote SSH server rejected X11 forwarding request. [root@vm01 ~]#
[root@free-share bodata]# docker exec -it 7ec547fc37e5 /bin/bash [root@7ec547fc37e5 ~]# yum install -y openssh-server [root@7ec547fc37e5 ~]# yum install -y net-tools [root@7ec547fc37e5 ~]# ssh-keygen -A ##为ssh生成必要的秘钥等 [root@7ec547fc37e5 ~]# /usr/sbin/sshd ##启动ssh后台服务 [root@7ec547fc37e5 ~]# echo 1|passwd --stdin root ##修改容器root用户密码为1,也可以用passwd root来修改
这篇关于Docker 安装Centos7的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14Docker端口:你真的公开了哪些东西?
- 2024-11-14用DOCKER在家里的实验室里搞些酷炫的玩意儿
- 2024-11-05掌握Docker:高效安全的十大最佳实践
- 2024-11-05在 Docker Compose 中怎么设置端口映射-icode9专业技术文章分享
- 2024-11-05在 Docker Compose 中怎么设置环境变量-icode9专业技术文章分享
- 2024-11-04Docker环境部署项目实战:新手入门教程
- 2024-11-04Docker环境部署资料:新手入门教程
- 2024-11-01Docker环境部署教程:新手入门指南
- 2024-11-01超越Docker:苹果芯片上的模拟、编排和虚拟化方案讲解
- 2024-11-01Docker环境部署:新手入门教程