Changes between Version 2 and Version 3 of Doc/SCDB/FAQ


Ignore:
Timestamp:
Aug 12, 2009, 12:55:32 PM (16 years ago)
Author:
/O=GRID-FR/C=FR/O=CNRS/OU=LAL/CN=Michel Jouvin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/SCDB/FAQ

    v2 v3  
    2929where they point to the actual location of the jar files.  The jsch.jar is no longer a dependency but must be set to an existing jar file; repeating the svnkit.jar definition works and is harmless.
    3030
     31== Deploy failure ==
    3132
     33=== Unable to get info on https://.../tags ===
     34
     35If you get this error at the beginning of the deploy phase when executing `ant deploy`, this means you don't have valid cached credentials to access the `tags` branch in your configuration database that can be used by `svnkit`, the SVN client used by `ant`. To fix the problem, try to write to `tags` branch using `jsvn` utility provided in `external/svnkit`. You can use the following commands as an example, changing the URLs to match your configuration database:
     36{{{
     37external/svnkit/jsvn cp htpp://quattorsrv.example.org/quattor/trunk htpp://quattorsrv.example.org/quattor/tags/test -m 'Deploy test'
     38}}}
     39
     40When executing this command, you should be asked to enter your credentials (userid and password). Note that depending on your exact actual configuration, you may have to define environment variable `JAVA_HOME` to reflect the directory containing `bin/java`.
     41
     42After doing the previous step, check it works by trying to remove the previously created branch. This should work without `jsvn` asking you your credentials.
     43{{{
     44external/svnkit/jsvn rm htpp://quattorsrv.example.org/quattor/tags/test -m 'Remove test'
     45}}}
     46