2015-10-27 40 views
0

我正在通過HTTP訪問我的SVN倉庫時,「無法打開請求的SVN文件系統」的錯誤(阿帕奇)無法打開請求的SVN文件系統,文件權限似乎OK

的httpd.conf

<...> 
LoadModule dav_module modules/mod_dav.so 
LoadModule dav_svn_module modules/mod_dav_svn.so 
<...> 
User svn 
Group svn 
<...> 
<Location /svn> 
    DAV svn 
    SVNPath /srv/svn 
</Location> 

SVN倉庫似乎有正確的premissions

[[email protected] ~]$ ls -lart /srv/svn 
total 16 
drwxrwxrwx. 3 root root 16 Oct 20 10:58 .. 
-rw-rw-r--. 1 svn svn 229 Oct 20 10:58 README.txt 
drwxrwxr-x. 2 svn svn 39 Oct 20 10:58 locks 
drwxrwxr-x. 2 svn svn 4096 Oct 20 10:58 hooks 
drwxrwxr-x. 2 svn svn 51 Oct 20 10:58 conf 
-r--r--r--. 1 svn svn  2 Oct 20 10:58 format 
drwxrwxr-x. 6 svn svn 80 Oct 20 10:58 . 
drwxrwsr-x. 6 svn svn 4096 Oct 20 10:58 db 

我運行Apache作爲用戶svn

[[email protected] ~]$ ps auxwww|grep httpd 
ec2-user 14304 0.0 0.0 110276 996 pts/0 T 06:07 0:00 less /etc/httpd/conf/httpd.conf 
root  15102 0.0 0.5 240004 5496 ?  Ss 08:39 0:00 /usr/sbin/httpd -DFOREGROUND 
svn  15103 0.0 0.3 240004 3116 ?  S 08:40 0:00 /usr/sbin/httpd -DFOREGROUND 
svn  15104 0.0 0.3 240004 3116 ?  S 08:40 0:00 /usr/sbin/httpd -DFOREGROUND 
svn  15105 0.0 0.3 240004 3116 ?  S 08:40 0:00 /usr/sbin/httpd -DFOREGROUND 
svn  15106 0.0 0.3 240004 3116 ?  S 08:40 0:00 /usr/sbin/httpd -DFOREGROUND 
svn  15107 0.0 0.4 240164 4124 ?  S 08:40 0:00 /usr/sbin/httpd -DFOREGROUND 

Apache的錯誤日誌

[Tue Oct 27 08:40:10.515487 2015] [authz_core:debug] [pid 15107] mod_authz_core.c(835): [client ::1:56072] AH01628: authorization result: granted (no directives) 
[Tue Oct 27 08:40:10.515747 2015] [:error] [pid 15107] (20014)Internal error: [client ::1:56072] Can't open file '/srv/svn/format': Permission denied 
[Tue Oct 27 08:40:10.515760 2015] [dav:error] [pid 15107] [client ::1:56072] Could not fetch resource information. [500, #0] 
[Tue Oct 27 08:40:10.515763 2015] [dav:error] [pid 15107] [client ::1:56072] Could not open the requested SVN filesystem [500, #13] 
[Tue Oct 27 08:40:10.515765 2015] [dav:error] [pid 15107] [client ::1:56072] Could not open the requested SVN filesystem [500, #13] 

SVN工作與file訪問,但不http

[[email protected] ~]$ svn list file://localhost/srv/svn 
branches/ 
src/ 
[[email protected] ~]$ svn list http://localhost/svn 
svn: E000013: Unable to connect to a repository at URL 'http://localhost/svn' 
svn: E000013: Could not open the requested SVN filesystem 

我也試圖改變權限/srv/svn/format爲666,但它並沒有幫助。

紅帽企業Linux服務器版本7.1。 SVN 1.8.8版本

任何幫助將不勝感激。

+0

嘗試將運行apache服務器的用戶更改爲apache和組apache。然後向Apache訪問存儲庫文件添加權限。 –

回答

1

錯誤的原因是SELinux模塊阻止訪問文件。我已經通過編輯/etc/selinux/config文件(參見how)禁用了SELinux,並且在重新啓動後,svn list http://localhost/svn終於有效。

相關問題