Cloud Foundry SSH 不工作
Cloud foundry SSH not working
我无法使 SSH 工作。
我检查了 SSH 是否在应用程序和 Space 级别上启用。
但是当我 运行
cf ssh "MY-APP-NAME"
我收到以下错误:
FAILED
Error: SSH session allocation failed: ssh: unexpected packet in response to
channel open: <nil>
我也尝试过不使用 CLi 并使用命令进行连接
ssh -p 2222 cf:abcdefab-1234-5678-abcd-1234abcd1234/0@ssh.MY-DOMAIN.com
但是当我输入密码时,服务器停止了连接(我使用的是 Putty)。
我正在尝试使用 SSH 访问,因为我需要启动 npm install
来安装我的应用程序的依赖项。
感谢您的帮助
无需通过 ssh 进入应用程序即可安装依赖项。
请查看 Node.js 的 Swisscoms 入门指南:
https://docs.developer.swisscom.com/tutorial-nodejs/index.html
'Declare App Dependencies' (https://docs.developer.swisscom.com/tutorial-nodejs/dependencies.html) shows you how you specify the dependencies in a file called 'package.json'. This will then be automatically installed by the nodejs buildpack (https://github.com/cloudfoundry/nodejs-buildpack).
部分
我无法使 SSH 工作。
我检查了 SSH 是否在应用程序和 Space 级别上启用。
但是当我 运行
cf ssh "MY-APP-NAME"
我收到以下错误:
FAILED
Error: SSH session allocation failed: ssh: unexpected packet in response to
channel open: <nil>
我也尝试过不使用 CLi 并使用命令进行连接
ssh -p 2222 cf:abcdefab-1234-5678-abcd-1234abcd1234/0@ssh.MY-DOMAIN.com
但是当我输入密码时,服务器停止了连接(我使用的是 Putty)。
我正在尝试使用 SSH 访问,因为我需要启动 npm install
来安装我的应用程序的依赖项。
感谢您的帮助
无需通过 ssh 进入应用程序即可安装依赖项。 请查看 Node.js 的 Swisscoms 入门指南: https://docs.developer.swisscom.com/tutorial-nodejs/index.html 'Declare App Dependencies' (https://docs.developer.swisscom.com/tutorial-nodejs/dependencies.html) shows you how you specify the dependencies in a file called 'package.json'. This will then be automatically installed by the nodejs buildpack (https://github.com/cloudfoundry/nodejs-buildpack).
部分