2017-06-15 63 views
0

我想通過哈德森承諾svn倉庫。這個ssh連接有什麼錯誤?

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

通過調試錯誤部分似乎是

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 

我是新來的SSH和不能夠在這裏找到錯誤。

回答

0

基本上它正在尋找與Git Hub進行SSh連接所需的密鑰(RSA),我相信您可以嘗試使用可從Git Hub Repository下載的RSA密鑰。

謝謝 Abhay Johri