更改

跳转至: 导航搜索

CentOS

添加1,249字节, 2019年9月16日 (一) 08:39
phpMyAdmin安装后无法访问
* 默认情况下,CentOS 7上的phpMyAdmin只允许从回环地址(127.0.0.1)访问。
* 为了能远程连接,你需要改动它的配置。 vi /etc/httpd/conf.d/phpMyAdmin.conf
*: sudo vi /etc/httpd/conf.d/phpMyAdmin.conf
** 修改后的文件内容
**: <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 #注释掉
**: Require all granted #新添加
**: </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>
**: <Directory /usr/share/phpMyAdmin/setup/>
**: <IfModule mod_authz_core.c>
**: # Apache 2.4
**: <RequireAny>
**: #Require ip 127.0.0.1 #注释掉
**: #Require ip ::1 #注释掉
**: Require all granted #新添加
**: </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>
* 最后,重启httpd使改动生效。
*: systemctl restart httpd
* 而一般情况下不需要,也不建议对phpMyAdmin.conf的修改。
* 初次安装完phpmyadmin,仅仅需要重启apache
*: systemctl restart httpd
497
个编辑

导航菜单