1. ホーム
  2. git

[解決済み] 認証ソケットからのレスポンス長読み込みエラー

2022-02-27 05:12:39

質問

Ruby on railsプロジェクトで、プロジェクトのデプロイにcapistrano、unicorn、postgresql、nginxを使用しています。 cap production git:check このエラーが発生します。

Error reading response length from authentication socket.

ログトレース

INFO [13522bc0] Running /usr/bin/env mkdir -p /tmp/deploy_test/ as [email protected]
DEBUG [13522bc0] Command: /usr/bin/env mkdir -p /tmp/deploy_test/
INFO [13522bc0] Finished in 0.291 seconds with exit status 0 (successful).
DEBUG Uploading /tmp/deploy_test/git-ssh.sh 0.0%
INFO Uploading /tmp/deploy_test/git-ssh.sh 100.0%
INFO [3b379ef0] Running /usr/bin/env chmod +x /tmp/deploy_test/git-ssh.sh as [email protected]
DEBUG [3b379ef0] Command: /usr/bin/env chmod +x /tmp/deploy_test/git-ssh.sh
INFO [3b379ef0] Finished in 0.067 seconds with exit status 0 (successful).
INFO [8355617a] Running /usr/bin/env git ls-remote --heads [email protected]:mezbahalam/deploy_test.git as [email protected]
DEBUG [8355617a] Command: ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/deploy_test/git-ssh.sh /usr/bin/env git ls-remote --heads [email protected]:mezbahalam/deploy_test.git )
DEBUG [8355617a]    Error reading response length from authentication socket.
DEBUG [8355617a]    6399a4a331342141ed3bbf3afb58f58828f96c76    refs/heads/master
INFO [8355617a] Finished in 9.683 seconds with exit status 0 (successful).

私はいくつかの 投稿 しかし、解決策を見出すことができない。

解決方法を教えてください。

TL;DR

# start/restart ssh-agent
eval "$(ssh-agent -s)"

# add the desired ssh-key
ssh-add ~/.ssh/id_rsa

ご覧ください。 https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/ をご覧ください。


私は過去に同じ問題を経験し、この投稿はそれを解決するために非常に役に立ちました。 http://www.antleon.com/2014/04/rails-capistrano-deployment-ssh-error-reading-response-length-from-authentication-socket/

お役に立てれば幸いです。