我在windows上安装了适用于chrome的Secure Shell扩展。谁能告诉我如何使用这个安全的shell扩展在codeanywhere中连接到我的devbox?
感谢你所有的帮助
发布于 2016-09-27 12:35:21
为了使用Chrome Secure Shell连接到您的CodeAnywhere容器,您需要:
您还需要私钥和公钥才能将身份导入到Chrome Secure Shell中。[2]
/home/cabox/.ssh/id_rsa中,公钥存储在/home/cabox/.ssh/id_rsa.pub中
- Since the `/home/cabox/.ssh/` folder is not visible in the left-hand menu, open an SSH terminal to your container. (Right-click your container, then choose SSH Terminal.)
- At the prompt, type `cp ../.ssh/id_rsa .` to copy the private key to the workspace folder.
- At the prompt, type `cp ../.ssh/id_rsa.pub .` to copy the public key to the workspace folder.
- Right-click your container, and click Refresh to refresh the list of files
- Download the `id_rsa` and `id_rsa.pub` files (which should now be visible on the left-hand menu) by right-clicking and choosing Download
在Chrome Secure Shell中,
id_rsa和id_rsa.pub files发布于 2016-03-01 21:32:53
我对chrome上的ssh扩展一无所知,但首先你必须在你的devbox上安装一个ssh服务器。如果你的devbox是ubuntu,你应该在你的codeanywhere ssh终端上尝试这样做:
sudo apt-get install openssh-server然后在devbox机器上检查你的ip地址:
ifconfig命令。最后,通过以下方式从您的chrome扩展ssh连接到您的devbox:
ssh yourUsernameFromDevbox@devboxIP之后,您只需插入您的devbox机器密码,就可以了。
https://stackoverflow.com/questions/33852962
复制相似问题