zoukankan      html  css  js  c++  java
  • 制作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
  • 相关阅读:
    linux上的常用的进程与内存优化命令
    ubuntu 上运行的django 出现No space left on device错误
    openstack 使用pbr配置,setup.cfg的格式与含义
    openstack中安装包与组件
    对drf序列化器的理解
    对商品数据表的理解
    首页广告数据表的理解
    对省市区地址的理解
    对邮箱验证的理解
    用户中心个人信息实现的理解
  • 原文地址:https://www.cnblogs.com/mangoVic/p/7240953.html
Copyright © 2011-2022 走看看