gpt4 book ai didi

git - 使用 sshpass 和私钥时 SSH 挂起

转载 作者:行者123 更新时间:2023-12-02 11:37:00 24 4
gpt4 key购买 nike

我在 Kubernetes 中有一个 alpine 镜像,我尝试在其中使用 Deploy Key(带密码)推送到 Git。

现在我的 command好像:

command: ["/bin/sh", "-c", "GIT_SSH_COMMAND=\"sshpass -p mygreatpassphrase ssh -vvv\" git -C /workspace push --mirror git@github.com:foo/bar.git"]

结果是:
<snip>
debug3: send packet: type 21
debug2: set_newkeys: mode 1
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug3: receive packet: type 21
debug1: SSH2_MSG_NEWKEYS received
debug2: set_newkeys: mode 0
debug1: rekey after 134217728 blocks
debug1: Will attempt key: /.ssh/id_rsa
debug1: Will attempt key: /.ssh/id_dsa
debug1: Will attempt key: /.ssh/id_ecdsa
debug1: Will attempt key: /.ssh/id_ed25519
debug1: Will attempt key: /.ssh/id_xmss
debug2: pubkey_prepare: done
debug3: send packet: type 5
debug3: receive packet: type 7
debug1: SSH2_MSG_EXT_INFO received
debug1: kex_input_ext_info: server-sig-algs=<ssh-ed25519,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,ssh-rsa,rsa-sha2-512,rsa-sha2-256,ssh-dss>
debug3: receive packet: type 6
debug2: service_accept: ssh-userauth
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug3: send packet: type 50
debug3: receive packet: type 51
debug1: Authentications that can continue: publickey
debug3: start over, passed a different list publickey
debug3: preferred publickey,keyboard-interactive,password
debug3: authmethod_lookup publickey
debug3: remaining preferred: keyboard-interactive,password
debug3: authmethod_is_enabled publickey
debug1: Next authentication method: publickey
debug1: Trying private key: /.ssh/id_rsa

它无限期地卡在这条线上。
可悲的是,ssh 似乎没有更详细的输出。
我不确定问题是否出在 sshpass容器内或实际出现问题的地方。

在 Docker 中构建也挂起:
FROM alpine/git

RUN apk add --no-cache sshpass

RUN sshpass -p foo /bin/sh -c 'read X < /dev/tty'
sshpass已打开以下文件:
lr-x------    1 tempuser root            64 Jul 31 10:43 0 -> pipe:[380942247]
l-wx------ 1 tempuser root 64 Jul 31 10:43 1 -> pipe:[380942248]
l-wx------ 1 tempuser root 64 Jul 31 10:43 2 -> pipe:[380944011]
lrwx------ 1 tempuser root 64 Jul 31 10:43 3 -> /dev/pts/ptmx
lrwx------ 1 tempuser root 64 Jul 31 10:43 4 -> /dev/pts/0

ssh 相反:
lr-x------    1 tempuser root            64 Jul 31 09:23 0 -> pipe:[380942247]
l-wx------ 1 tempuser root 64 Jul 31 09:23 1 -> pipe:[380942248]
l-wx------ 1 tempuser root 64 Jul 31 09:23 2 -> pipe:[380944011]
lrwx------ 1 tempuser root 64 Jul 31 09:23 3 -> socket:[380944638]
lrwx------ 1 tempuser root 64 Jul 31 10:43 4 -> /dev/tty

最佳答案

对于 Keys with Passphrase,SSH 提示不同。
因此必须使用 -P assphrase 更改提示:

command: ["/bin/sh", "-c", "GIT_SSH_COMMAND=\"sshpass -p mygreatpassphrase -P assphrase ssh -vvv\" git -C /workspace push --mirror git@github.com:foo/bar.git"]

关于git - 使用 sshpass 和私钥时 SSH 挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57286132/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com