1、创建用户 username,密码 password
grant usage on *.* to 'username'@'localhost' identified by 'password';
2、查看记录
select host,user,password from mysql.user where user='username';
3、设置可以远程访问
grant all privileges on *.* to username@'%'identified by 'password';
PS:如果设置后还是无法连接,可能是服务器没有对外开放端口(默认3306),需要手动设置一下。