具体步骤:
use mysql #打开mysql数据库 #将host设置为localhost表示只能本地连接mysql update user set host='localhost' where user='root'; flush privileges; #刷新权限表,使配置生效
如果我们要开启远程连接,可以参考如下方法:
首先登录:
mysql -u root -h localhost -p
use mysql #打开mysql数据库#将host设置为%表示任何ip都能连接mysql,当然您也可以将host指定为某个ip update user set host='%' where user='root' and host='localhost';flush privileges; #刷新权限表,使配置生效
完成之后我们就能远程连接我们的mysql了。