<![CDATA[Latest posts for the topic "Lỗi (13)Permission denied: access to xxx denied trong Apache trên Cent"]]> /hvaonline/posts/list/24.html JForum - http://www.jforum.net Lỗi (13)Permission denied: access to xxx denied trong Apache trên Cent www.howtoforge.com/perfect-server-centos-5.2 Start thử Apache đã thấy trang chào mừng của Apache+CentOS ok. Tiếp đó mình tạo một thư mục dành riêng cho web (mình không dùng mặc định /var/www/) là /web Tạo một VirtualHost trong /etc/httpd/conf.d/vhosts.conf như sau: Code:
NameVirtualHost *:80

<VirtualHost *:80>
DocumentRoot /web/abc.com/html
ServerName abc.com
<Directory "/web/abc.com/html">
allow from all
Options +Indexes
</Directory>
</VirtualHost>
Khi mình truy cập vào abc.com trên trình duyệt thì xem được nội dung trang index.html Mình upload thư mục phpmyadmin lên và truy cập vào abc.com/phpmyadmin thì bị lỗi: Forbidden You don't have permission to access /phpmyadmin/ on this server. Apache/2.2.3 (CentOS) Server at abc.com Port 80 Trong Apache log: [Wed Dec 07 06:35:04 2011] [error] [client xxx.xxx.xxx.xxx] (13)Permission denied: access to /phpmyadmin/index.php denied Mình tạo thử 1 file info.php với nội dung <?php phpinfo(); ?> trên abc.com chạy tốt. Tiếp đó, mình chmod 644 các lần lượt các thư mục và tập tin trong: /web /web/abc.com /web/abc.com/html /web/abc.com/html/phpmyadmin và chown tất cả về apache:apache Kết quả vẫn là lỗi như trên. Note: Mình thực hiện tất cả những thao tác trên server với quyền root. Các bạn hướng dẫn mình khắc phục với ! Cảm ơn :) ]]>
/hvaonline/posts/list/40739.html#250790 /hvaonline/posts/list/40739.html#250790 GMT
Lỗi (13)Permission denied: access to xxx denied trong Apache trên Cent /hvaonline/posts/list/40739.html#250799 /hvaonline/posts/list/40739.html#250799 GMT Lỗi (13)Permission denied: access to xxx denied trong Apache trên Cent /hvaonline/posts/list/40739.html#250801 /hvaonline/posts/list/40739.html#250801 GMT Lỗi (13)Permission denied: access to xxx denied trong Apache trên Cent

hungth05 wrote:
Hi TheShinichi! Bạn có thể vào file config của phpMyAdmin để chỉnh sữa lại 2 dòng: # vim /etc/httpd/conf.d/phpMyAdmin.conf order deny,allow deny from all allow from 127.0.0.1 Sữa thành: # order deny,allow # deny from all allow from 127.0.0.1 service httpd restart Finish! 
---> trường hợp này nếu install phpmyadmin bằng yum thì như thế nếu như down source về dùng thì cần kiểm tra như anh Quân. getenforce ---> trả về kết quả Enforcing ---> chưa tắt Selinux ---> thực hiện setenfoce 0 để tắt. getenforce --->trả về kết quả Permissive ---> đã tắt Selinux]]>
/hvaonline/posts/list/40739.html#250802 /hvaonline/posts/list/40739.html#250802 GMT
Lỗi (13)Permission denied: access to xxx denied trong Apache trên Cent /hvaonline/posts/list/40739.html#250852 /hvaonline/posts/list/40739.html#250852 GMT