MavericsからApache 2.4で動いているsvnサーバにcommitしようとするとエラー
自作ツールをsubversionで管理する様にしています。
自宅サーバ(FreeBSD 9.1)を立ち上げて、svnサーバもそちらに移しました。Appace 2.4を使っています。
OS X 10.9から、svn commitしようとすると、次の様なエラーで怒られます。
% svn commit -m 'new version' Authentication realm: <http://svn.example.com:80> Subversion repositories svn: E160013: Commit failed (details follow): svn: E160013: '/svn/work/!svn/me' path not found
どうも、Subversionの1.7からの問題で、1.7.2ではFixしているらしいです。
OS X 10.9のSubversionのバージョンは、1.7.10の様です。
% svn --version svn, version 1.7.10 (r1485443) compiled Aug 13 2013, 15:31:22 Copyright (C) 2013 The Apache Software Foundation. This software consists of contributions made by many people; see the NOTICE file for more information. Subversion is open source software, see http://subversion.apache.org/ The following repository access (RA) modules are available: * ra_neon : Module for accessing a repository via WebDAV protocol using Neon. - handles 'http' scheme - handles 'https' scheme * ra_svn : Module for accessing a repository using the svn network protocol. - handles 'svn' scheme * ra_local : Module for accessing a repository on local disk. - handles 'file' scheme * ra_serf : Module for accessing a repository via WebDAV protocol using serf. - handles 'http' scheme - handles 'https' scheme
それなら大丈夫の様な気がするのですが、ダメでした。
次に見つけたのが、次のウェブページです。ありがとうございます。
Apacheの設定に、"SVNAdvertiseV2Protocol Off"を入れると良いみたいです。
# vi svn.conf # Subversion connections <Location /svn> DAV svn SVNListParentPath on SVNParentPath /exports/svn SVNIndexXSLT "/svnindex.xsl" SVNAdvertiseV2Protocol Off AuthType Digest AuthName "Subversion repositories" AuthUserFile /exports/svn/svn_digest Require valid-user </Location>
無事に、commitできるようになりました。
ディスカッション
コメント一覧
まだ、コメントがありません