Tôi cần cập nhật /etc/httpd/conf.d/phpMyAdmin.conf
để cho phép người dùng từ xa.
Tôi vừa thay thế nội dung của <directory>
đầu tiên gắn thẻ như vậy ...
Tôi đã xóa:
<Directory /usr/share/phpMyAdmin/>
AddDefaultCharset UTF-8
<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
Require ip 127.0.0.1
Require ip ::1
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Directory>
Và thay thế nó bằng cái này:
<Directory /usr/share/phpMyAdmin/>
AddDefaultCharset UTF-8
Order allow,deny
Allow from all
</Directory>
Và khởi động lại máy chủ:sudo service httpd restart
Hoạt động ngay bây giờ!