docker centos7 安装ssh具体步骤

作者:lqh 时间:2022-11-27 08:10:03 

 docker centos7 安装ssh具体步骤,这里记录下,也行能帮助到正在读文章的朋友。

一. 从docker hub 下载centos 官方镜像


hr:centos7 hr$ docker pull centos:7

下载完后,查看本地资源库:
hr:centos7 hr$ docker images
REPOSITORY      TAG         IMAGE ID      CREATED       VIRTUAL SIZE
 centos        7          ce20c473cd8a    7 weeks ago     172.3 MB

运行容器
hr:centos7 hr$ docker run -i -t centos:7 /bin/bash

二. 安装passwd,openssl,openssh-server


[root@b5926410fe60 /]# yum install passwd openssl openssh-server -y

启动sshd:
# /usr/sbin/sshd -D
这时报以下错误:
[root@ b5926410fe60 /]# /usr/sbin/sshd
Could not load host key: /etc/ssh/ssh_host_rsa_key
Could not load host key: /etc/ssh/ssh_host_ecdsa_key
Could not load host key: /etc/ssh/ssh_host_ed25519_key

执行以下命令解决:
[root@b5926410fe60 /]# ssh-keygen -q -t rsa -b 2048 -f /etc/ssh/ssh_host_rsa_key -N ''  
[root@b5926410fe60 /]# ssh-keygen -q -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N ''
[root@b5926410fe60 /]# ssh-keygen -t dsa -f /etc/ssh/ssh_host_ed25519_key -N ''

然后,修改 /etc/ssh/sshd_config 配置信息:
UsePAM yes 改为 UsePAM no
UsePrivilegeSeparation sandbox 改为 UsePrivilegeSeparation no

[root@b5926410fe60 /]# sed -i "s/#UsePrivilegeSeparation.*/UsePrivilegeSeparation no/g" /etc/ssh/sshd_config
[root@b5926410fe60 /]# sed -i "s/UsePAM.*/UsePAM no/g" /etc/ssh/sshd_config

修改完后,重新启动sshd
[root@b5926410fe60 /]# /usr/sbin/sshd -D

三. 修改root 密码

 [root@b5926410fe60 /]# passwd root

四. 查看容器ip地址(如果宿主机是linux操作系统则跳过这一步)


[root@b5926410fe60 /]# ip addr ls eth0
84: eth0@if85: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP
 link/ether 02:42:ac:11:00:02 brd ff:ff:ff:ff:ff:ff
 inet 172.17.0.2/16 scope global eth0
   valid_lft forever preferred_lft forever
 inet6 fe80::42:acff:fe11:2/64 scope link
   valid_lft forever preferred_lft forever

五. 将当前容器保存为镜像


hr:centos7 hr$ docker ps -all
CONTAINER ID IMAGE    COMMAND    CREATED       STATUS          PORTS   NAMES
b5926410fe60 centos:7  "/bin/bash" 4 minutes ago    Exited (0) 4 seconds ago      centos7ssh

hr:centos7 hr$ docker commit b5926410fe60 herong/centos7-ssh

六. 在宿主机上基于新创建的镜像启动新的容器


--先删除之前的容器
hr:centos7 hr$ docker ps -all
CONTAINER ID    IMAGE   COMMAND       CREATED       STATUS           PORTS        NAMES
4122f818a741    herong/centos7-ssh:latest  "/usr/sbin/sshd"  13 seconds ago   Exited (0) 13 seconds ago            happy_mclean

hr:centos7 hr$ docker rm -f 4122f818a741

--基于新镜像运行容器
hr:centos7 hr$ docker run -d -p 10022:22 herong/centos7-ssh:latest /usr/sbin/sshd -D

--查看映射端口是否成功
hr:centos7 hr$ docker ps -all
CONTAINER ID    IMAGE   COMMAND        CREATED       STATUS       PORTS          NAMES
4966d35fe0a3    herong/centos7-ssh:latest  "/usr/sbin/sshd -D"  3 seconds ago    Up 3 seconds    0.0.0.0:10022->22/tcp  compassionate_kowalevski

hr:centos7 hr$ docker port 4966d35fe0a3
22/tcp -> 0.0.0.0:10022

七. 从宿主机连接到容器


 w 如果宿主机是非linux操作系统,则需要通过docker-machine ip连到容器
 -- 查看docker-machine Ip地址
 hr:centos7 hr$ docker-machine ip default
 192.168.99.100

--通过docker-machine ip 连接到容器,输入之前设置的密码即可登录成功
 hr:centos7 hr$ ssh root@192.168.99.100 -p 10022
 The authenticity of host '[192.168.99.100]:10022 ([192.168.99.100]:10022)' can't be established.
 ECDSA key fingerprint is SHA256:d3JNckcTVv1ASJlwv+IT/bJwlzMC4U1T/PmsKYIHMhQ.
 Are you sure you want to continue connecting (yes/no)? yes
 Warning: Permanently added '[192.168.99.100]:10022' (ECDSA) to the list of known hosts.
 root@192.168.99.100's password:
 [root@4966d35fe0a3 ~]# pwd
 /root

w 如果宿主机是linux操作系统,则通过第4步查看到的ip地址连接
 hr:centos7 hr$ ssh root@172.17.0.2 -p 10022

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

标签:docker,centos7,安装ssh
0
投稿

猜你喜欢

  • 一个站长论坛运营经验——和大家分享

    2008-12-09 15:57:00
  • ProFtpd快速指南(三)

    2007-09-20 13:50:00
  • 张文魁:支付宝等已成“新基础设施”

    2009-10-27 14:20:00
  • Web服务器负载均衡方案

    2008-12-22 17:22:00
  • 门户网站没有草根网站有前途

    2008-01-26 19:29:00
  • 教您在LINUX中架设代理服务器

    2008-10-13 16:50:00
  • 搜狗输入法——国内众包案例

    2009-08-30 15:19:00
  • 使用rsync在两台VPS间传输文件

    2011-08-24 20:13:41
  • VMware中CentOS 7设置文件夹共享的方法

    2021-06-23 22:14:52
  • 高效时间管理-介绍GTD

    2009-02-10 12:41:00
  • linux服务器安全

    2009-11-24 15:10:00
  • 详解Linux下crontab的使用与注意事项

    2023-03-30 04:59:27
  • 分布式Hibernate search详解

    2023-08-14 18:53:17
  • 活用DedeCms进行SEO优化全攻略

    2009-04-04 12:45:00
  • 做网站确实能让你快速致富!

    2008-05-25 18:25:00
  • Windows Server 2008 R2的八大优势

    2009-05-27 14:44:00
  • 25个支持自定义的免费和付费主流wordpress主题

    2012-03-06 20:32:42
  • "杀死"你的服务器的6种方法

    2010-08-30 20:06:00
  • dedecms关键词长度修改统一说明

    2010-06-20 15:42:00
  • 开个小型的网络公司大概要多少钱?

    2009-07-20 14:58:00
  • asp之家 网站运营 m.aspxhome.com