Doc downloads (PDF, HTML & XML)
[FishEye Knowledge Base]
FishEye does not control directly when authentication information is used to access Subversion repositories. It delegates this operation to the JavaHL layer in use. JavaHL will then ask FishEye to supply credentials when required, using a callback. The default JavaHL layer shipped with FishEye, SVNKit, can cache credentials at the server level rather than at the repository level.
There are different approaches to solving this issue:
When using FishEye/Crucible 2.10, or later, we recommend that you simply include the username in the URL when defining the repository in FishEye. For example, use
http://username@host.com/
.
FishEye can be configured to use the native JavaHL implementation, which will correctly apply the appropriate credentials.
The simplest solution is to have the same credentials for accessing the Subversion Server.
Alternatively, SVNKit can be tricked into thinking that different servers are being used. For each connection to a repository a hostname in the hosts file can be defined.
All these entries then point to the same IP address of the SVN Server, but to SVNKit they look like different servers, thus bypassing the problem.
Example hosts entries (replace the IP address with the address of the SVN Server):
123.45.6.78 account1 123.45.6.78 account2
Replace these new server names in the SVN URLs:
http://account1/svn/project-a/ http://account2/svn/project-b/