Docker使用ssh连接
Docker使用ssh连接
Ubuntu 不适用与centos
安装sshd服务
sudo apt-get install openssh-server
service ssh start
centos连接container
安装sshd服务
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 ''
# 启动服务,好多人要加-D参数,但是我在用Centos7的时候使用-D会导致进程没反应,也不启动
/usr/sbin/sshd
主机连接container
//主要做端口映射,后面需要使用该端口进行连接
docker run -it -v /Users/liuhao/workspace/:/workspace -p 222:22 5182e96772bf bash
//我这里的container是一直用的,先前已经建立的改用户
ssh liuhao@127.0.0.1 -p222
sshd配置(非必要)
# 允许root登陆
vim /etc/ssh/sshd_config
PermitRootLogin 的值 withoutPassword改为yes
# 允许使用空密码进行登录
PermitEmptyPasswords yes前面的#号去掉
本文来自博客园,作者:我爱吃炒鸡,转载请注明原文链接:https://www.cnblogs.com/chinaliuhan/p/15558384.html