List Info

Thread: Re: Subversion update error




Re: Subversion update error
user name
2007-10-25 11:35:17
Hello Leif,

There could be different reasons for that error and it is
hard to say 
what exactly causes it in your case.

As you're using SSL (https) connection and SVNKit relies on
JDK to 
establish connection over SSL it makes sense to upgrade JDK
to the 
latest version and also install "unlimited
strength" JCE package (see 
http://j
ava.sun.com/products/jce/javase.html for details).


Alexander Kitaev,
TMate Software,
http://svnkit.com/ - Java
[Sub]Versioning Library!

Leif Evers wrote:
> Hi,
>  
> I'm using the continuous integration engine
"hudson" to execute some 
> ant-build-tasks automatically. "Hudons" takes
the build-files out of a 
> subversion-repository by using the svnkit. Before an
automatic built 
> starts, "hudson" makes an update on the
repository. By doing this update 
> occures sometimes the following error:
> 
> started
> Updating https://dingo:12345/repos/ci/AutomatischeBuilds/trunk
> ERROR: Failed to update https://dingo:12345/repos/ci/AutomatischeBuilds/trunk
> org.tmatesoft.svn.core.SVNException: svn: REPORT
request failed on '/repos/ci/!svn/vcc/default'
> svn: Connection reset
> 	at
org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVN
ErrorManager.java:80)
> 	at
org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.r
equest(HTTPConnection.java:517)
> 	at
org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.r
equest(HTTPConnection.java:234)
> 	at
org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.r
equest(HTTPConnection.java:222)
> 	at
org.tmatesoft.svn.core.internal.io.dav.DAVConnection.doRepor
t(DAVConnection.java:219)
> 	at
org.tmatesoft.svn.core.internal.io.dav.DAVConnection.doRepor
t(DAVConnection.java:211)
> 	at
org.tmatesoft.svn.core.internal.io.dav.DAVRepository.update(
DAVRepository.java:609)
> 	at
org.tmatesoft.svn.core.wc.SVNUpdateClient.doUpdate(SVNUpdate
Client.java:162)
> 	at
hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.j
ava:368)
> 	at
hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.j
ava:341)
> 	at hudson.FilePath.act(FilePath.java:280)
> 	at
hudson.scm.SubversionSCM.checkout(SubversionSCM.java:338)
> 	at
hudson.scm.SubversionSCM.checkout(SubversionSCM.java:295)
> 	at
hudson.model.AbstractProject.checkout(AbstractProject.java:4
85)
> 	at
hudson.model.AbstractBuild$AbstractRunner.checkout(AbstractB
uild.java:160)
> 	at
hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.
java:126)
> 	at hudson.model.Run.run(Run.java:573)
> 	at hudson.model.Build.run(Build.java:107)
> 	at
hudson.model.ResourceController.execute(ResourceController.j
ava:66)
> 	at hudson.model.Executor.run(Executor.java:59)
> finished: FAILURE
> 
> The strange thing is, that this error occurs after two
month of working 
> fine. When the error occurs, is not foreseeable also,
because it happens 
> randomly.
> Network problems are not known also. The Syslog of the
subversion-server 
> and the tomcat logfiles are not containing any error
messages.
>  
> Does anyone have an idea to solve the problem? Is there
the posibility 
> to get some more informations, e.g. logfiles?
>  
> Regards,
> Leif

------------------------------------------------------------
---------
To unsubscribe, e-mail: svnkit-users-unsubscribesvnkit.com
For additional commands, e-mail: svnkit-users-helpsvnkit.com


AW: Subversion update error
user name
2007-10-26 02:34:48
Hello,

I have upgraded the SDK and installed the JCE
package...unfortunately without success.

It seems, that the authentication fails. The
subversion-server tries to authenticate the subversion-user
via LDAP, but the user does not exits in the LDAP-directory.
The user is defined in a separate authentication-user-file
(compile.pwd) by using the htpasswd2 command. Users can be
authenticated by LDAP and by file.

However... The server tries to authenticate the user via
LDAP and this fails. It seems, that I have to contact
another mailing-list, am I right?

My repository is defined in the subversion-conf as follows:

##
## Repository for continous-integration components for PA
##
<Location /repos/ci>
  DAV svn
		
  # Subversion settings
  SVNPath /home1/subversion/srv/svn/repos_intern/ci	
			
  # Require SSL connection for password protection.
  SSLRequireSSL		
			
  AuthType Basic
  AuthBasicProvider ldap
  AuthName "Authentication realm for the CI-Team"
  AuthLDAPURL "correct URL"
  AuthzLDAPAuthoritative off
  AuthBasicProvider file
  AuthUserFile
/home1/subversion/srv/svn/access/compile.pwd	
			
  # Limit write permission to list of valid users.
  <LimitExcept GET PROPFIND OPTIONS REPORT>
     Require valid-user
  </LimitExcept>		
  # Limit read permission to list of valid users.
  <Limit GET PROPFIND OPTIONS REPORT>
    Require valid-user
    </Limit>
</Location>

Regards,
Leif


-----Ursprüngliche Nachricht-----
Von: Alexander Kitaev [mailto:Alexander.Kitaevsvnkit.com] 
Gesendet: Donnerstag, 25. Oktober 2007 18:35
An: svnkit-userssvnkit.com
Betreff: Re: Subversion update error

Hello Leif,

There could be different reasons for that error and it is
hard to say what exactly causes it in your case.

As you're using SSL (https) connection and SVNKit relies on
JDK to establish connection over SSL it makes sense to
upgrade JDK to the latest version and also install
"unlimited strength" JCE package (see http://j
ava.sun.com/products/jce/javase.html for details).


Alexander Kitaev,
TMate Software,
http://svnkit.com/ - Java
[Sub]Versioning Library!

Leif Evers wrote:
> Hi,
>  
> I'm using the continuous integration engine
"hudson" to execute some 
> ant-build-tasks automatically. "Hudons" takes
the build-files out of a 
> subversion-repository by using the svnkit. Before an
automatic built 
> starts, "hudson" makes an update on the
repository. By doing this 
> update occures sometimes the following error:
> 
> started
> Updating https://dingo:12345/repos/ci/AutomatischeBuilds/trunk
> ERROR: Failed to update 
> https://dingo:12345/repos/ci/AutomatischeBuilds/trunk
> org.tmatesoft.svn.core.SVNException: svn: REPORT
request failed on '/repos/ci/!svn/vcc/default'
> svn: Connection reset
> 	at
org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVN
ErrorManager.java:80)
> 	at
org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.r
equest(HTTPConnection.java:517)
> 	at
org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.r
equest(HTTPConnection.java:234)
> 	at
org.tmatesoft.svn.core.internal.io.dav.http.HTTPConnection.r
equest(HTTPConnection.java:222)
> 	at
org.tmatesoft.svn.core.internal.io.dav.DAVConnection.doRepor
t(DAVConnection.java:219)
> 	at
org.tmatesoft.svn.core.internal.io.dav.DAVConnection.doRepor
t(DAVConnection.java:211)
> 	at
org.tmatesoft.svn.core.internal.io.dav.DAVRepository.update(
DAVRepository.java:609)
> 	at
org.tmatesoft.svn.core.wc.SVNUpdateClient.doUpdate(SVNUpdate
Client.java:162)
> 	at
hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.j
ava:368)
> 	at
hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.j
ava:341)
> 	at hudson.FilePath.act(FilePath.java:280)
> 	at
hudson.scm.SubversionSCM.checkout(SubversionSCM.java:338)
> 	at
hudson.scm.SubversionSCM.checkout(SubversionSCM.java:295)
> 	at
hudson.model.AbstractProject.checkout(AbstractProject.java:4
85)
> 	at
hudson.model.AbstractBuild$AbstractRunner.checkout(AbstractB
uild.java:160)
> 	at
hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.
java:126)
> 	at hudson.model.Run.run(Run.java:573)
> 	at hudson.model.Build.run(Build.java:107)
> 	at
hudson.model.ResourceController.execute(ResourceController.j
ava:66)
> 	at hudson.model.Executor.run(Executor.java:59)
> finished: FAILURE
> 
> The strange thing is, that this error occurs after two
month of 
> working fine. When the error occurs, is not foreseeable
also, because 
> it happens randomly.
> Network problems are not known also. The Syslog of the

> subversion-server and the tomcat logfiles are not
containing any error messages.
>  
> Does anyone have an idea to solve the problem? Is there
the posibility 
> to get some more informations, e.g. logfiles?
>  
> Regards,
> Leif

------------------------------------------------------------
---------
To unsubscribe, e-mail: svnkit-users-unsubscribesvnkit.com
For additional commands, e-mail: svnkit-users-helpsvnkit.com



------------------------------------------------------------
---------
To unsubscribe, e-mail: svnkit-users-unsubscribesvnkit.com
For additional commands, e-mail: svnkit-users-helpsvnkit.com


[1-2]

about | contact  Other archives ( Real Estate discussion Medical topics )