svn: Not authorized to open root of edit operation
I got this error from subversion running as daemon while trying to checkout the repository:
$ svn co svn://192.168.0.1/nomanager --username svnadmin Authentication realm: <svn://192.168.0.1:3690> Nomanager Repository Password for 'svnadmin': svn: Not authorized to open root of edit operation
To solve this issue, you need to update the svnserve.conf file of that repository:
$ vi /svn/nomanager/conf/svnserve.conf
Change the line non-access = read to anon-access = none and try again.
You may also like to read:
* 5 steps to secure your Linux Server
* Ensuring secure access to production Linux Servers
* Bash script to backup essential log files in Linux
* Quickly change your ssh port from defualt 22 to something higher
* SSH port forwarding from remote to local machine
* Save root or user history to check later
* Install and configure denyhost to prevent brute force attacks
thank u.. It worked.