且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

phpMyAdmin不允许我登录-未显示错误

更新时间:2021-12-06 21:58:15

可能的原因是-

a)用户已被锁定.

b)用户数超出指定的数量.

b) There are too many users more than specified.

c)您的系统/IP(已提供权利)已更改.

c) Your System/Ip (rights were provided to which) has been changed.

请按照以下步骤操作-

第一步:请服务器与root用户连接,并检查您是否能够使用数据库.

Step1: Please server connect with root user and check if you are able to use your DB.

Step2:执行以下命令.

Step2: execute below commands.

mysql>刷新主机;

mysql> flush hosts;

现在,如果成功,请尝试从phpmyadmin连接,然后再进行其他明智的检查,如果是,则获取与IP相关的错误,然后检查该IP是否具有必需的权限.

Now try to connect from phpmyadmin if success then fine other wise check if you are getting any IP related error if yes then check if that ip have required permissions.

其他原因可能是

  1. opened_files_limit超出了您在配置文件中提到的内容.
  2. 磁盘已满.
  3. 打开的线程过多/连接过多.
  4. 您的登录用户由于密码输入错误多次而被锁定(配置文件中提到的限制默认为10).
  5. 未从外部在数据库服务器上打开mysql端口(默认为3306).
  6. 用户没有您的系统IP的权限.等