日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

centos 安装testlink出现:You don't have permission to access /testlink on this server

發布時間:2025/3/21 57 豆豆
生活随笔 收集整理的這篇文章主要介紹了 centos 安装testlink出现:You don't have permission to access /testlink on this server 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

You don't have permission to access /testlink on this server.

解決方法:
1. 訪問的文檔權限不夠。要755以上權限。解決方法:用命令chmod 755 /var/www/ 或其他相應目錄。

2. SELinux或防火墻的原因。解決方法:先關閉SELinux和讓防火墻通過WWW服務。
???? 修改? /etc/selinux/config文件
????????? SELINUX=disabled
?
3. 虛擬主機配置錯誤。解決方法:重新配置虛擬主機或暫時關閉。

4. DocumentRoot的設置。解決方法如下:

打開 apache的配置文件httpd.conf,找到這段代碼:

<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>

有時候由于配置了php后,這里的“Deny from all”已經拒絕了一切連接。把該行改成“allow from all”,修改后的代碼如下,問題解決。

<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
</Directory>

#service myslqd restart
#service httpd restart


原文地址:

http://blog.csdn.net/yzlworld/article/details/6245246

總結

以上是生活随笔為你收集整理的centos 安装testlink出现:You don't have permission to access /testlink on this server的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。