Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Authentication Failure when accessing visualSVN server from linux svn client

Our VisualSVN server has "Integrated Windows Authentication" enabled, so I cannot access to it via Ubuntu/svn.

When I do this :

svn checkout http://MyRepo 

I get these errors:

svn: E120191: Unable to connect to a repository at URL 'http://MyRepo'
svn: E120191: Error running context: The requested authentication type(s) are not supported.

Does anybody know a solution to this problem (other than not using Windows Authentication) ?

like image 594
Erik Plum Avatar asked Feb 18 '26 20:02

Erik Plum


1 Answers

  1. If you have Integrated Windows Authentication enabled, then your client computer has to be joined the Active Directory domain where VisualSVN Server resides (or at least trusted AD domain). In such case Integrated Windows Authentication will work from the Linux machine (over Kerberos or NTLM) without any problems.

  2. For a non-domain Windows machine, it is always possible to put AD credentials to Windows Credential Manager and you could authenticate over IWA without any issues. I don't know any alternative on Linux for the tool but I guess that there has to be one.

  3. You can enable Basic Windows Authentication in VisualSVN Server settings in addition to Integrated Windows Authentication. This way Linux-based should be able to authenticate over Basic.

like image 162
bahrep Avatar answered Feb 21 '26 10:02

bahrep