gpt4 book ai didi

php - 在 EasyPHP{WAMP} 中设置 root 密码后无法从 phpMyAdmin 访问 MySQL

转载 作者:行者123 更新时间:2023-11-29 05:45:39 25 4
gpt4 key购买 nike

在首次启动 MySQL 时成功设置后,页面提示我出于安全原因设置 ROOT 密码。

设置密码后,我无法再访问 MySQL。错误是:

1045 - Access denied for user 'root'@'localhost' (using password: NO) 

在网上查找并在 phpmyadmin foler 的 config.inc.php 中尝试了以下选项:

  1. 将身份验证设置为“http”,以便提示输入用户名和密码

    /* Authentication type */
    $cfg['Servers'][$i]['auth_type'] = 'http';
  2. 在配置文件中设置正确的密码

    $cfg['Servers'][$i]['password'] = 'myPwd';

它们都不起作用。

任何人都可以建议访问 MySQL 的解决方法吗?我并不担心不能使用 root 帐户,但想使用其他用户名在数据库上进行 CRUD。

最佳答案

这是我的 phpmyadmin config.inc.php 文件:

<?php

$i = 0;
$i++;
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = false;

?>

如果 Apache/PHP 与 MySQL 在同一台机器上运行,这应该足够了。然后系统会提示您输入用户名和密码。输入 root 和您设置的密码。

关于php - 在 EasyPHP{WAMP} 中设置 root 密码后无法从 phpMyAdmin 访问 MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2540794/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com