Can't open file 'svn/repo/db/txn-current-lock': Permission denied

前端 未结 8 963
花落未央
花落未央 2020-12-07 13:20

I have set up a Linux Server and installed Apache and SVN and dav_svn on it. Now, when I try to upload to https://x.x.x.x:x/svn/repo with Tortoise SVN I get

8条回答
  •  离开以前
    2020-12-07 14:10

    3 Steps you can follow

    1. chmod -R 775   
      ---> change permissions of repository
      
    2. chown -R apache:apache   
      ---> change owner of svn repository
      
    3. chcon -R -t httpd_sys_content_t   
      ----> change SELinux security context of the svn repository
      

提交回复
热议问题