• 制作centos sshd 镜像


    [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

    制作:

    yum install -y passwd openssl openssh-server ssh-keygen -q -t rsa -b 2048 -f /etc/ssh/ssh_host_rsa_key -N ''  
    ssh-keygen -q -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N ''
    ssh-keygen -t dsa -f /etc/ssh/ssh_host_ed25519_key -N '' 
     
    然后,修改 /etc/ssh/sshd_config 配置信息:
    UsePAM yes 改为 UsePAM no 
    UsePrivilegeSeparation sandbox 改为 UsePrivilegeSeparation no
     
    sed -i "s/#UsePrivilegeSeparation.*/UsePrivilegeSeparation no/g" /etc/ssh/sshd_config
    sed -i "s/UsePAM.*/UsePAM no/g" /etc/ssh/sshd_config
    
    更改root密码
    passwd root
    /usr/sbin/sshd -D

    Dockerfile:

    FROM centos:7.2.1511
    LABEL maintainer "zhangpengzhong@datagrand.com"
    
    RUN yum install passwd openssl openssh-server -y 
        && ssh-keygen -q -t rsa -b 2048 -f /etc/ssh/ssh_host_rsa_key -N '' 
        && ssh-keygen -q -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N '' 
        && ssh-keygen -t dsa -f /etc/ssh/ssh_host_ed25519_key -N '' 
    
    RUN sed -i "s/#UsePrivilegeSeparation.*/UsePrivilegeSeparation no/g" /etc/ssh/sshd_config 
        && sed -i "s/UsePAM.*/UsePAM no/g" /etc/ssh/sshd_config
    
    CMD /usr/sbin/sshd -D
    
    RUN echo "root:xxxxx" |chpasswd
  • 相关阅读:
    【C#】解析C#中LING的使用
    【Android】解析Paint类中Xfermode的使用
    【Android】解析Paint类中MaskFilter的使用
    【C#】C#对电子邮件的收发操作
    【Linux】linux/unix下telnet提示Escape character is '^]'的意义
    【Linux】CentOs中yum与rpm区别
    【C#】C#对Excel表的操作
    【SqlServer】解析SqlServer中的事务
    【Android】Android传感器
    【SqlServer】SqlServer的异常处理
  • 原文地址:https://www.cnblogs.com/mangoVic/p/7240953.html
Copyright © 2020-2023  润新知