Mysql相关问题-----1045 Access denied for user 'root'@'localhost' (using password: YES)报错

MySQL 连接错误,使用Navicat连接MySQL出现错误:1045 Access denied for user ‘root‘@‘localhost‘ (using password: YES)

解决方案:

1.编辑mysql配置文件my.ini

在mysql的安装目录下

,在[mysqld]这个条目下加入 skip-grant-tables 保存退出后重启mysql

[mysqld]
#作用是跳过登录的验证
#skip-grant-tables
port = 3306
basedir=C:\\softwaretool\\mysql-5.7.23-winx64
datadir=C:\\softwaretool\\mysql-5.7.23-winx64\\data
max_connections=200
character-set-server=utf8
default-storage-engine=INNODB
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
max_allowed_packet = 20M
[mysql]
default-character-set=utf8

2.重启mysql

在计算机-管理-服务里面找到MySQL的服务,如图

这时候在cmd里面输入mysql -u root -p就可以不用密码登录了,出现 password:的时候直接回车可以进入,不会出现ERROR 1045 (28000),但很多操作都会受限制,因为没有grant权限。

3.进入mysql数据库,给root用户设置密码

mysql> use mysql;
mysql> update mysql.user set authentication_string=password(‘密码‘) where user=‘root‘ ;

4.刷新数据库,并退出

mysql> flush privileges;
mysql> quit; 

5.修改my.ini文件

改好之后,再修改一下my.ini这个文件,把我们刚才加入的 "skip-grant-tables"这行删除,保存退出再重启mysql服务,再重新用Navicat连接就可以了。

[mysqld]
#作用是跳过登录的验证
#skip-grant-tables
port = 3306
basedir=C:\\softwaretool\\mysql-5.7.23-winx64
datadir=C:\\softwaretool\\mysql-5.7.23-winx64\\data
max_connections=200
character-set-server=utf8
default-storage-engine=INNODB
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
max_allowed_packet = 20M
[mysql]
default-character-set=utf8

Mysql相关问题-----1045 Access denied for user 'root'@'localhost' (using password: YES)报错

原文地址:https://www.cnblogs.com/luckyplj/p/11972143.html

时间: 2024-10-01 04:41:45

Mysql相关问题-----1045 Access denied for user 'root'@'localhost' (using password: YES)报错的相关文章

windows mysql提示:1045 access denied for user 'root'@'localhost' using password yes 解决方案

简单粗暴 工具xwamp 路径:H:\xampp\mysql\bin\my.ini.php 打开my.ini,在[mysqld]下面添加 skip-external-lockingskip-name-resolveskip-grant-tables 停止mysql ->打开xwamp的shell可以输入命令,如下 Setting environment for using XAMPP for Windows. [email protected]-CGL9PRT h:\xampp # mysql

windows mysql提示:1045 access denied for user'root'@'localhost' using password yes

一大早打开Navicat Lite for MySQL客户端,提示1045 access denied for user ’root’@’localhost’ using password yes,太不给力了,网上搜了很多资料,最终问题得以解决,下面将详细的解决过程分享给大家,希望遇到同样问题的同胞,少走弯路: 1.打开DOS进入mysql下bin目录:本人:C:\Program Files\MySQL\MySQL Server 5.1\bin     2.停止mysql服务,net stop 

mysql提示:1045 access denied for user'root'@'localhost' using password yes

1.打开DOS进入mysql下bin目录(C:\Program Files\MySQL\MySQL Server 5.6\bin) 2.停止mysql服务,net stop  mysql 3.输入:mysqld --defaults-file="C:\Program Files\MySQL\MySQL Server 5.6\my-default.ini" --console --skip-grant-tables 4.重新打开一个DOS窗口,进入mysql下bin目录,输入:mysql

解决MySql 数据库 提示:1045 access denied for user 'root'@'localhost' using password yes

今天想用用MySQL 数据库  谁知道老提示 1045 access denied for user 'root'@'localhost' using password yes 最后在csdn 上找到了答案 来源:http://bbs.csdn.NET/topics/310006640     13楼 解决: 1. 开始 --> cmd   --> net stop mysql  (停用MySQL服务  没启动的可以省略) 2. 找到安装路径 MySQL Server 5.1下的my.ini

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

当你重装数据库后出现这个问题的时候,不要着急,首先你要去你的确定你的数据库已经成功的把服务开启了, 然后确定你的密码和账户,IP都确认的情况下, 去寻找config.inc.php 这个文件,根据配置的不同,地方可能出现在不同的地方,如果你配置的是XAMPP的时候, 可能是这个: D:\xampp\phpMyAdmin\config.inc.php 其他路径就没有进行测试了,大不了全盘检索就新行了,然后看里面的 /* Authentication type and info */ $cfg['S

wampserver登陆mysql出现#1045 - Access denied for user 'root'@'localhost' (using password: YES) 问题

原因:mysql的用户名和密码与phpMyAdmin的配置文件的用户名密码不相对应所以连不上去 解决: 1.登陆mysql修改密码 可以用cmd控制台登陆也可以用wamp的mysql控制台mysql console登陆 ->use mysql ->update user set password=password("密码") where user='root'; 2.修改phpMyAdmin的配置文件的用户名密码 \wamp\apps\phpmyadmin3.4.10.1下

解决mysql提示错误:1045 access denied for user 'root'@'localhost' using password yes

少年,请看下图. 1. 开一个dos 2. 再开一个dos 3.即可.补充一个linux下的: 解决mysql提示错误:1045 access denied for user 'root'@'localhost' using password yes

mysql: 1045 access denied for user 'root'@'localhost' using password yes

原因是:root的密码错误了. 解决思路:关闭mysql服务,重新启动mysql服务,启动mysql的时候,指定不需要校验密码.然后登陆mysql,修改密码,退出.再重新启动mysql服务. 1.关闭mysql 2.启动mysql,指定不需要校验密码 C:\Program Files\MySQL\MySQL Server 5.1\bin>mysqld --defaults-file="C:\ProgramFiles\MySQL\MySQL Server 5.1\my.ini" -

新手PHP连接MySQL数据库出问题(Warning: mysqli_connect(): (HY000/1045): Access denied for user 'root'@'localhost' (using password: YES))

我用的环境是wampServer集成的软件包 在php连接MySQL数据库的时候老是出现这个问题Warning: mysqli_connect(): (HY000/1045): Access denied for user 'root'@'localhost' (using password: YES) 你好,我也遇到过这个问题,下面是我的解决方法: 首先,通过WAMP打开mysql控制台. 提示输入密码,因为现在是空,所以直接按回车.(wamp 默认数据库密码为空) 然后输入"use mysq