安装完phpMyAdmin 2.8.1后的报错:
访问http://192.168.1.10/phpmyadmin这个后,出现下面的错误:
欢迎使用 phpMyAdmin 2.8.1
Probably reason of this is that you did not create configuration file. You might want to use setup script to create one.
错误
MySQL 返回:
#1130 - #HY000Host '192.168.1.10' is not allowed to connect to this MySQL server
Open new phpMyAdmin window
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
是不是你的数据库服务器里httpd里加了验证服务,你自己不知道呀..
输入网址http://192.168.1.10/phpmyadmin 一般不要认证的,因为用户和密码在.config.inc.php文件里做了修改,只是为了安全起见,一般会在apache里设置用户认证的..
是不是服务器有防火墙啥的?
对.config.inc.php文件做了配置
$cfg['PmaAbsoluteUri'] = 'http://192.168.1.10/phpmyadmin/'
$cfg['Servers'][$i]['host'] = '192.168.1.10'; // MySQL hostname or IP address
。。。。。。。。。。。。。。。。
$cfg['Servers'][$i]['auth_type'] = 'http'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user
$cfg['Servers'][$i]['password'] = '111111'; // MySQL password (only needed)
192.168.1.10是MYSQL服务器,我通过192.168.1.8访问http://192.168.1.10/phpmyadmin ,弹出认证框,我输入用户名root , 密码111111 ,但是返回“Wrong username/password. Access denied.
”。
我在192.168.1.10上
[root@maxl bin]# ./mysql -uroot -p
Enter password: 111111
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 55 to server version: 4.1.9-log
Type 'help;' or 'h' for help. Type 'c' to clear the buffer.
mysql>
却可以进入。
哪里不对啊,为什么从客户端不能进入PHPMYADMIN呢?
你没有建立配置文件.config.inc.php