首页 > 数据库 > MySQL > 正文

mysql 安装问题小总结

2024-07-24 12:59:33
字体:
来源:转载
供稿:网友

1、在安装MySQL时 ,注意命令行是否需要加空格,比如下图

2、 access denied for user 'root'@'localhost' (using passWord YES)

出现这问题可能是在首次进入mysql时输入了password,首次进入时是默认密码为空的。

运行cmd

输入mysql -u root -p,出现password:直接回车可以进入。

进入mysql数据库:mysql> use mysql;

给root用户设置新密码:update mysql.user set authentication_string=password('自己的密码') where user='root' and Host = 'localhost';


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表