在目录/etc/mysql下找到my.cnf,用vim编辑,找到my.cnf里面的
bind-address = 127.0.0.1
然后用root登陆Mysql数据库。
然后在mysql>这里输入:grant all on *.* to username@'%' identified by 'password';
注意:username是用户名,password是要自己填写的一个密码,例如:
grant all on *.* to root@'%' identified by '123456';
然后刷新一下。执行:flush privileges;
最后重启mysql服务