Docker容器设置ssh连接
这里以debian容器为例:
一、进入容器、更改更新源及安装openssh-server
二、添加目录、修改配置文件
注:(这个地方看启动服务时的提示信息,运行sshd服务的命令只能使用绝对路径/usr/sbin/sshd -D)
- 下面修改/etc/ssh/sshd_config 先说下PermitRootLogin:prohibit-password 允许root登陆但不能使用密码登陆yes 允许root以任何方式登陆,我们这里只允许使用密钥无密码登陆:
- 下面修改/etc/pam.d/sshd
注:这个是一个pam登陆控制,可以参考ftp服务器设置
三、添加ssh服务,使服务在容器打开时就启动:
centos容器中遇到的问题:
显示/etc/ssh/中缺少公钥和私钥:
$ ssh-keygen -t rsa -N '' -f /etc/ssh/ sh_host_rsa_key
$ ssh-keygen -t ed25519 -N '' -f /etc/ssh/ssh_host_ed25519_key
$ ssh-keygen -t ecdsa -N '' -f /etc/ssh/ssh_host_ecdsa_key