1

私はここでは少し新しいですが、コードについて助けが必要です。ここにあります:

SVNRepositoryFactoryImpl.setup(); 

    SVNURL url = 
      SVNURL. 
          parseURIEncoded("svn+ssh://xxx"); 
    File keyFile = 
          new File("C://Users/xxxx/Documents/priave_key/private_key.ppk"); 
    System.out.println("PPK file space:"+keyFile.getTotalSpace());
    SVNSSHAuthentication sshCredentials = 
         new SVNSSHAuthentication(Settings.name, keyFile, Settings.pass, 22, false, url, false); 
    System.out.println(sshCredentials.getPrivateKey()==null);
    System.out.println("hasPrivateKey(): "+sshCredentials.hasPrivateKey());
    SVNUserNameAuthentication authorNameCredentials = new SVNUserNameAuthentication(Settings.name, false); 
    SVNPasswordAuthentication passwordCredentials =  new SVNPasswordAuthentication(Settings.name, Settings.pass, false); 

    ISVNAuthenticationManager authManager = 
        new BasicAuthenticationManager(new SVNAuthentication[] { 
                     sshCredentials, 
                     authorNameCredentials, 
                     passwordCredentials}); 
    SVNRepository repository = SVNRepositoryFactory.create(url); 
    repository.setAuthenticationManager(authManager); 

    try { 

        SVNDirEntry info = repository.info("", -1); 
        System.out.println(info); 
    } finally { 
        repository.closeSession(); 
    } 

したがって、これを実行した後、次の出力が得られます。

PPK file space:107374178304
false
hasPrivateKey(): true
Exception in thread "main" org.tmatesoft.svn.core.SVNAuthenticationException: svn:     E170001: Authentication required for 'xxx@svn+ssh://xxx'
    at     org.tmatesoft.svn.core.internal.wc.SVNErrorManager.authenticationFailed(SVNErrorManager.jav    a:47)
    at     org.tmatesoft.svn.core.internal.wc.SVNErrorManager.authenticationFailed(SVNErrorManager.jav    a:41)
    at 

org.tmatesoft.svn.core.auth.BasicAuthenticationManager.getNextAuthentication(BasicAuthentic    ationManager.java:223)
at     org.tmatesoft.svn.core.internal.io.svn.SVNSSHConnector.open(SVNSSHConnector.java:141)
at org.tmatesoft.svn.core.internal.io.svn.SVNConnection.open(SVNConnection.java:77)
at     org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl.openConnection(SVNRepositoryImpl.j    ava:1252)
at     org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryImpl.info(SVNRepositoryImpl.java:1195)
    at SVNTestNew.main(SVNTestNew.java:40)

これはクラスで問題になる可能性があると思います。これは、に対してnullとtrueをSVNSSHAuthentication与えるためです。)または、これは間違った考えですか?誰かがこの問題をどのように解決できるか教えてもらえますか?getPrivateKey()hasPrivateKey(

4

1 に答える 1

0

私によると、あなたの公開鍵と秘密鍵は適切な場所にありません。

Linuxマシンを使用している場合は、秘密鍵の場合、デフォルトのパスがあります:-

${USER_HOME}/.ssh/abc.rsa or abc.dsa

そして、あなたはあなたの公開鍵を次のサーバーに保存しなければなりません:

デフォルトパス:-

${USER_HOME}/.ssh/authorized_keys

パスを変更できます/etc/sshd_config file

于 2012-09-07T19:28:57.417 に答える