Access to '/SVN/[repo name]/!svn/me' forbidden [duplicate]

一个人想着一个人 提交于 2019-12-03 23:13:41

Sorry, bahrep was correct that the url had an issue since it was case-sensitive. I am confused why when I cleared the credentials and put in my how the url was corrected.

I was able to correct the URL in TortoiseSVN, by:

  1. right-clicking on the Repository location
  2. Selecting TortoiseSVN --> Relocate
  3. Correct the url and Click Relocate
Surendra Poranki

H20rider

Please make sure the SVN url is correct. SVN is case sensitive. If you defined you root folder as ServicesTrunk then your svn access url needs to be of the same case.

you get the following error if you use

host:port/svn/ServicesTrunk ------- this will work

**case not right**
host:port/svn/servicesTrunk -------- will throw !svn/me' forbidden
host:port/svn/Servicestrunk --------- will throw !svn/me' forbidden

In my case i was getting the same "Access Denied.." message and my repository URL was correct.

This worked out for me

  1. Go to Window in eclipse
  2. Window -> Preferences -> Team -> SVN
  3. Check whether all your svn preferences are set properly.(I changed SVN interface client from JavaHL(JNI)1.8.14(r1692801) to SVNKit (Pure Java) SVNKit v1.8.11.10483)

enter image description here

I had the same problem. In my case problem was in svnaccess.txt file with define permission. Name of groups cannot have spaces e.g

[svnloop:/test group]
@admins = rw 

return this erro You must change to

[svnloop:/testgroup]
@admins = rw 

For me the reason wasn't URL case-sensitivity but http vs. https. The solution was to relocate from

http://svn.code.sf.net/...

to

https://svn.code.sf.net/...

Check authentication data.

In TortoiseSVN: settings\Saved Data\Authentication Data\Clear...

Perhaps you have more than one user/pass

Joy Zhu

Using OS X and svn command line, I get this error when I checkout another application from the same server with another username.

My solution is to clear the credential. The key point is to find where credential information is located. Run svn auth to can see the detail. In my case, it is located at /Users/joy.zhu/.subversion/auth/svn.simple. There is cache file, just remove it.

Update (Or commit...) again, username/password are asked, then you can enter the correct data. Everything goes well then.

I had encountered the similar problem(in windows os), and share my solution here.

problem:

Access to '/svn/project01/!svn/rvr/18022/trunk' forbidden

solution:

  1. Find the root directory of the project01 repository, if you are in the d:\svn\repproject01
  2. Modify VisualSVN-SvnAuthz.ini file
  3. Delete the configuration block similar to the following

    [/xxx]
    user01= 
    
  4. run services.msc Restart SVN service

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!