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
  • 相关阅读:
    网络安装Centos的方法
    命令源码文件——Golang
    mosquitto: error while loading shared libraries: libwebsockets.so.12: cannot open shared object file
    centos7安装mysql初始化报错
    MQTT --- 操作行为
    MQTTv5.0 ---AUTH – 认证交换
    MQTT v5.0------SUBSCRIBE 报文
    MQTT --- Retained Message
    inux centos7下源码 tar安装5.7.26详解
    20. 有效的括号
  • 原文地址:https://www.cnblogs.com/mangoVic/p/7240953.html
Copyright © 2011-2022 走看看