sandeep.saxena_at_rbs.com wrote:
> Hi ,
> I am facing some issues in initializing the slave repository with
> master repository. My repositories both on master and slave are at
> c:\repo and here are the configurations :
> +++++++++++++++++Master Apache httpd.conf +++++++++++++++++++
> <Location /repo>
> DAV svn
> SVNListParentPath on
> SVNPath C:\Repo
> AuthType Basic
> AuthName "Subversion repositories"
> AuthUserFile passwd
> #AuthzSVNAccessFile svnaccessfile
> Require valid-user
> </Location>
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++
> and slave entries are as following :
> ++++++++++++++++Slave Apache httpd.conf++++++++++++++++++++
> <Location /repo/>
> DAV svn
> SVNListParentPath on
> SVNPath C:\Repo
> SVNMasterURI _http://master/repo_
> AuthType Basic
> AuthName "Subversion repositories"
> AuthUserFile passwd
> #AuthzSVNAccessFile svnaccessfile
> Require valid-user
> </Location>
> <Location /project-proxy-sync/>
> DAV svn
> SVNPath C:\Repo
> Order deny,allow
> Deny from all
> Allow from master
> </Location>
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++
> Now when I try to initialize my slave with my master repositories I
> get following message :
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> C:\>svnsync init _http://slave/repo/_ _http://master/repo_ --username
> myuser --password mypasswrd
> *svnsync: Server sent unexpected return value (405 Method Not Allowed)
> in respons
> e to PROPFIND request for '/repo'*
The username and password options are deprecated, use --sync-username
for the slave repo and --source-username for the master repository.
hth,
Lieven
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-08-15 23:02:55 CEST