SVN Error during use1.Error while creating module:org.apache.subversion.javahl.ClientException:Authorization failed
SVN: Authentication failed
Scenario: When you first submit a project after you start the SVN service
Solution: Modify the configuration files under the warehousing directory svnserve.conf, passwd, Authz
The first type: Turn on anonymous access. Modify the svnserve.conf file to change the value of anon-access to write
The second type: Set up authorized access.
To modify the svnserve.conf file:
Open auth-access = write, password-db = passwd (Specify to use passwd file to save the user name password letterAuthz-db = Authz (Specify to save authorization information with Authz file) and set anon-access to none (otherwisewill report error 5)
To modify the passwd file:
Add User Username = password form
To modify the Authz file:
Actions to add a combination set permission
Like what:
[/] # Set permissions on the root directory
@kaifa = RW # To set permissions on a group at @ to read and write
Ceshi = R# read-only
* = # shielding effect, that is, in addition to the set of Kaifa group and Ceshi users, other people do not have permission
2.Filesystem have no item svn:url ' Svn://localhost/oa/designpattern ' non-existent in revision 2
A scenario appears:
Submit project for the first time
Solution:
When this error occurs, we can find that the symbol on the item is? and *, we just need to right click and submit the item again,
You can include it in the repository
3.SVN:E200009: Commit failed (details below):
svn:e200009: "F:\workspace\SVN\SpaceJohnnie\OA\Hello.txt" has not been included in version control
A scenario appears:
F:\WORKSPACE\SVN\SPACEJOHNNIE\OA>SVN Commit Hello.txt
Solution:
Put the file into version control, execute the command svn add Hello.txt
4. Svn:e205007: Commit failed (details below):
SVN:E205007: Cannot use external editor to get log information, consider setting environment variable $SVN _editor, or
Use the--message (-m) or--file (-f) option
svn:e205007: svn_editor,visual or EDITOR environment variable is not set, in the runtime configuration parameters
There's no "editor-cmd" option.
A scenario appears:
After you execute the Add command, submit the file to the server
SVN commit Hello.txt
Solution:
This is because we did not write the log at the time of submission, just add the parameter-m to
SVN commit-m "First commit" Hello.txt
5.Item is not readable
SVN: A path was encountered that was not readable and access denied.
A scenario appears:
Error in permission configuration, no anonymous access value is set to None, i.e.: Anon-access = None
Solution:
Modify svnserve.conf File Settings anon-access = None
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
SVN Error during use