window7 scp 访问docker容器中镜像
2021-06-18 19:16
标签:with init 命令 系统版本 分配 备忘 roo 重启 window 遇到坑不少,做一下记录,备忘!! 准备工作,pull ubuntu 镜像( Ubuntu 18.04.1 ) ###Docker的Ubuntu镜像安装的容器无ifconfig命令和ping命令 ###查看系统版本 ###ssh #安装ssh #启动 ssh #vim ###win 添加路由 ####启动 ubuntu 镜像 ####一定要修改 docker 镜像ubuntu容器用户密码 ### 通常来说,就可以正常登录了,但是我这边仍旧登录不上去, 所以解决方法 etc/ssh/sshd_config 修改该配置文件: 将 PermitRootLogin without-password 修改为 PermitRootLogin yes,如下: 配置好后就可以用winscp工具连接了 你的docker容器所分配镜像IP 在加你设置的对外开放的端口 备注: 1.ssh 设置服务自启动 保存退出,最好重启docker ubuntu镜像 2.在docker 镜像命令中 退出 Ctrl + p Ctrl + q Ctrl + c 这样就可以在 ubutnu容器不关闭的情况下,退出了 直接退出: exit window7 scp 访问docker容器中镜像 标签:with init 命令 系统版本 分配 备忘 roo 重启 window 原文地址:https://www.cnblogs.com/smars1990/p/10297891.htmldocker pull ubuntu
apt-get update
apt install net-tools # ifconfig
apt install iputils-ping # ping
cat /etc/issue
#查看sshps -e|grep ssh
sudo apt-get install openssh-server
service ssh start
apt-get install vim
#删除
route delete 192.168.100.106
#添加
route add -p 192.168.0.0 mask 255.255.0.0 192.168.100.1
#查看
route print 192.168.100.106docker run -it --rm -p 5022:22 1f89248e3d1f /bin/bash
passwd root
# Authentication:
LoginGraceTime 120
PermitRootLogin without-password
StrictModes yes
# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
vi /etc/rc.local
/etc/init.d/ssh start
文章标题:window7 scp 访问docker容器中镜像
文章链接:http://soscw.com/index.php/essay/95619.html