Access denied for user (using password:YES) 发表于 2021-01-17 | 分类于 MySQL 123find / -name my*.cnfvim /usr/my.cnf 在[mysql]下添加 1skip_grant_tables 保存之后重新登陆 1mysql -u root -p 直接回车即可 1234567use mysql;update user SET password=password('591xt.xyz') where user=’root’;flush privileges;exit;