怎么解决localhost无法链接本地mysql数据库问题

2024-12-30 02:00:25
推荐回答(1个)
回答1:

提供2个方法

  1. grant授权root用户localhost权限,例如:


    grant all privileges on * to root@localhost identified by 'password';
  2. 修改MySQL库user表将user=root的host修改为localhost


    update user set host='localhost' where host='127.0.0.1' ;