2017-06-15 5 views
0

私はhudsonを通じてsvnリポジトリにコミットしようとしています。私はsshをする新しく、ここでエラーを見つけることができないのですこのssh接続のエラーは何ですか?

debug1: ssh_rsa_verify: signature correct 
debug1: SSH2_MSG_NEWKEYS sent 
debug1: expecting SSH2_MSG_NEWKEYS 
debug1: SSH2_MSG_NEWKEYS received 
debug1: SSH2_MSG_SERVICE_REQUEST sent 
debug1: SSH2_MSG_SERVICE_ACCEPT received 
debug1: Authentications that can continue: publickey,password,keyboard-interactive 
debug1: Next authentication method: publickey 
debug1: Trying private key: /home/app/.ssh/identity 
debug1: Offering public key: /home/app/.ssh/id_rsa 
debug1: Authentications that can continue: publickey,password,keyboard-interactive 
debug1: Trying private key: /home/atgapp/.ssh/id_dsa 
debug1: Next authentication method: keyboard-interactive 
debug1: read_passphrase: can't open /dev/tty: No such device or address 
debug1: Authentications that can continue: publickey,password,keyboard-interactive 
debug1: read_passphrase: can't open /dev/tty: No such device or address 
debug1: Authentications that can continue: publickey,password,keyboard-interactive 
debug1: read_passphrase: can't open /dev/tty: No such device or address 
debug1: Authentications that can continue: publickey,password,keyboard-interactive 
debug1: Next authentication method: password 
debug1: read_passphrase: can't open /dev/tty: No such device or address 
debug1: Authentications that can continue: publickey,password,keyboard-interactive 
Permission denied, please try again. 
debug1: read_passphrase: can't open /dev/tty: No such device or address 
debug1: Authentications that can continue: publickey,password,keyboard-interactive 
Permission denied, please try again. 
debug1: read_passphrase: can't open /dev/tty: No such device or address 
Received disconnect from 192.xxx.xxx.xx: 2: Too many authentication failures for atgapp 
svn: Commit failed (details follow): 
svn: To better debug SSH connection problems, remove the -q option from 'ssh' in the [tunnels] section of your Subversion configuration file. 
svn: Network connection closed unexpectedly 

エラー部分をデバッグすることにより

export SVN_SSH="ssh -v " 
svn commit --username user --password pass -m "message" file.sql 

があると思われます。

答えて

0

基本的には、Git HubとのSSh接続に必要な鍵(RSA)を探しています.Git HubリポジトリからダウンロードできるRSA鍵を使って試すことができます。

ありがとう Abhay Johri

関連する問題