无法 ssh 进入 git:通道 0 上的 PTY 分配请求失败

问题描述 投票:0回答:2

我正在尝试更新自制程序,但无法连接到 git.. 我看到 https 没有通过,当我尝试 ssh -t 时,我得到: PTY 分配请求在通道 0 上失败 这些是我的 ssh -v 结果:

klein@MacBook-Pro .ssh % ssh -v [email protected]
OpenSSH_8.1p1, LibreSSL 2.7.3
debug1: Reading configuration data /Users/klein/.ssh/config
debug1: /Users/klein/.ssh/config line 1: Applying options for github.com
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 47: Applying options for *
debug1: Connecting to github.com port 22.
debug1: Connection established.
debug1: identity file /users/klein/.ssh/id_rsa type 0
debug1: identity file /users/klein/.ssh/id_rsa-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_8.1
debug1: Remote protocol version 2.0, remote software version babeld-42834f78
debug1: no match: babeld-42834f78
debug1: Authenticating to github.com:22 as 'git'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: curve25519-sha256
debug1: kex: host key algorithm: rsa-sha2-512
debug1: kex: server->client cipher: [email protected] MAC: <implicit> compression: none
debug1: kex: client->server cipher: [email protected] MAC: <implicit> compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ssh-rsa SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8
debug1: Host 'github.com' is known and matches the RSA host key.
debug1: Found key in /Users/klein/.ssh/known_hosts:1
debug1: rekey out after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: rekey in after 134217728 blocks
debug1: Will attempt key:  RSA SHA256:FtOwFwwlGSFpdkdM+Po6Yv5CUrgfxPND9Aq/b575NdI agent
debug1: Will attempt key: [email protected] RSA SHA256:9hkiUuvWfFm6hbf5l3zsBBIF6MAQkpeAah3ukcq0cOA agent
debug1: Will attempt key: /users/klein/.ssh/id_rsa RSA SHA256:tFpBa6n3n4eB4KtqUFy0dvj3xWnURehYvdB5tr6BbJQ explicit
debug1: SSH2_MSG_EXT_INFO received
debug1: kex_input_ext_info: server-sig-algs=<[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],ssh-ed25519,ecdsa-sha2-nistp521,ecdsa-sha2-nistp384,ecdsa-sha2-nistp256,rsa-sha2-512,rsa-sha2-256,ssh-rsa,ssh-dss>
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering public key:  RSA SHA256:FtOwFwwlGSFpdkdM+Po6Yv5CUrgfxPND9Aq/b575NdI agent
debug1: Authentications that can continue: publickey
debug1: Offering public key: [email protected] RSA SHA256:9hkiUuvWfFm6hbf5l3zsBBIF6MAQkpeAah3ukcq0cOA agent
debug1: Authentications that can continue: publickey
debug1: Offering public key: /users/klein/.ssh/id_rsa RSA SHA256:tFpBa6n3n4eB4KtqUFy0dvj3xWnURehYvdB5tr6BbJQ explicit
debug1: Server accepts key: /users/klein/.ssh/id_rsa RSA SHA256:tFpBa6n3n4eB4KtqUFy0dvj3xWnURehYvdB5tr6BbJQ explicit
Enter passphrase for key '/users/klein/.ssh/id_rsa': 
debug1: Authentication succeeded (publickey).
Authenticated to github.com ([140.82.112.4]:22).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: pledge: network
debug1: Sending environment.
debug1: Sending env LC_CTYPE = UTF-8
PTY allocation request failed on channel 0
Hi kippelicious! You've successfully authenticated, but GitHub does not provide shell access.
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
debug1: channel 0: free: client-session, nchannels 1
Connection to github.com closed.
Transferred: sent 4208, received 2672 bytes, in 0.2 seconds
Bytes per second: sent 17817.7, received 11313.9
debug1: Exit status 1

我已经删除了整个 .ssh 文件夹,安装了新的 ssh 密钥,但没有任何效果。

有人可以帮忙吗?

git ssh rsa pty
2个回答
3
投票

更好的测试是:

ssh -T [email protected]

然后你只会看到:

Hi kippelicious! You've successfully authenticated, but GitHub does not provide shell access.

这样,您就知道可以开始使用 SSH URL,如

[email protected]:<me>/<my repo>


0
投票

这个错误也发生在我身上,因为小t 当我尝试

ssh -T [email protected]
时,它确实起作用了

© www.soinside.com 2019 - 2024. All rights reserved.