windows怎样ssh连接docker中的Ubuntu?

windows怎样ssh连接docker中的Ubuntu?,第1张

docker是容器镜像,而且创建的容器container只是镜像的一个实例

如果镜像中没有ssh服务,并不能使用ssh连接,docker虽然也是虚拟化

但是和VMware virtualbox的虚拟化还不一样,并不是一个完整的 *** 作系统

因此,请使用docker exec命令进入容器中 *** 作

希望可以帮助你,请采纳 ,谢谢

putty 使用ssh链接ubuntu 填写ip 端口号 22然后链接就可以了啊 安装mysql

第一步

1

sudo apt-get autoremove --purge mysql-server-5.0

2

sudo apt-get remove mysql-server

3

sudo apt-get autoremove mysql-server

4

sudo apt-get remove mysql-common (非常重要)

第二步:清理残留数据

1

dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P

第三步:安装 mysql

1

sudo apt-get install mysql-server

2

sudo apt-get install mysql-client

3

sudo apt-get install php5-mysql(安装php5-mysql 是将php和mysql连接起来 )

在使用虚拟机过程中,因为时常要切换到win7下调试,所以比较麻烦。所以最近尝试在win下用SSH Secure Shell Client登陆虚拟机,为了避免反复的su切换到root,所以希望以root用户登陆。

1.首先win7安装SSH Secure Shell Client,Ubuntu下也使用apt-get安装openssh-server。

2.将 /etc/ssh/sshd_confg中PermitRootLogin no 改为yes,重新启动ssh服务。

3.最重要的一点是Ubuntu超级用户root用户被禁用掉了,这就是为什么我们登陆时只能以普通用户登陆,而且switch user时没有root选项。

必须使用命令启动root。即输入:sudo passwd。然后输入密码即可启动root。

此时如果ping通虚拟机的话,就可以正常ssh登陆到Ubuntu。这样也就可以在win7下直接通过ssh *** 作Ubuntu,而不需要在虚拟机和win7之间频繁的切换。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/8089235.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-13
下一篇 2023-04-13

发表评论

登录后才能评论

评论列表(0条)

保存