nuanzhi 发表于 2021-9-25 08:55

PHP

PHP编程启动项目报错SQLSTATE Access denied for user 'root'@'localhost' (using password: YES)
怎么解决

三滑稽甲苯 发表于 2021-9-25 10:21

应该是密码错了

﹏詆調℡ 发表于 2021-9-25 10:22

(1)SSH登录root管理员账户

(2)登录MySql

# mysql -u root -p
Enter password:
(3)执行授权命令

mysql> grant all privileges on *.* to root@'localhost' identified by '密码';
mysql> flush privileges;


mysql> grant all privileges on *.* to root@'%' identified by '密码';
mysql> flush privileges;
(4)退出再试

mysql> quit
Bye
(5)再次登录

brightwill 发表于 2021-9-25 10:25

mysql链接账号密码错误

xxlaotou1997 发表于 2021-9-25 10:31

这个贼简单,只需要几个步骤,第一个,Ctrl+C复制你的错误提示,然后打开浏览器,输入www.baidu.com,按下回车,然后在Ctrl+v粘贴你的错误,点击百度一下,就可以了

wwaaffll 发表于 2021-9-25 10:55

楼上正解

在下猫南北 发表于 2021-9-25 11:08

数据库连接失败

yang19950324 发表于 2021-9-25 11:42

数据库连接密码错误

janny82 发表于 2021-9-25 17:18

已经提示了你的root错误,请核对你的账户 密码~~~~~~~~~~~~~
页: [1]
查看完整版本: PHP