1. 程式人生 > >docker centos7 容器上安裝ssh

docker centos7 容器上安裝ssh

docker centos7 ssh

在容器上執行
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 ‘‘ 

修改 /etc/ssh/sshd_config 配置信息:
UsePAM yes 改為 UsePAM no 
UsePrivilegeSeparation sandbox 改為 UsePrivilegeSeparation no

修改完後,重新啟動sshd
/usr/sbin/sshd -D&

修改root密碼就可以進行ssh登錄了
passwd root


docker centos7 容器上安裝ssh