怎么使用SSH命令行远程登录运行在CloudFoundry上的应用
今天就跟大家聊聊有关怎么使用SSH命令行远程登录运行在CloudFoundry上的应用,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
当我试图用如下命令行采用SSH远程登录到运行在CloudFoundry环境下的应用时,
cf ssh -N -T -L 9229:127.0.0.1:9229 jerry-demo-server
遇到这个错误消息:
ssh: unable to authenticate, attempted methods [none password], no supported methods remain
https://*.com/questions/47102080/ssh-in-go-unable-to-authenticate-attempted-methods-none-no-supported-method
https://pvtl.force.com/s/article/SSH-to-a-Container-Fails-with-ssh-handshake-failed-Error-Message
使用命令行查看我的这个应用的ssh-enabled标志位:
cf ssh-enabled jerry-demo-server
发现处于disabled状态:
于是用命令行将这个标志位打开:
cf enable-ssh jerry-demo-server
cf ssh-enabled jerry-demo-server
cf enable-ssh jerry-demo-server
之后重启应用:
问题解决。
看完上述内容,你们对怎么使用SSH命令行远程登录运行在CloudFoundry上的应用有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注行业资讯频道,感谢大家的支持。