防火墙高级设置,新建入站规则,添加mysql服务端口如3306
命令行firewall设置
首先登录mysql,查看所有用户和主机信息
use mysql; select Host, User from user;
增加一个新的用户及地址
create user 'username'@'%' identified by 'password'; grant all on *.* to 'username'@'%';
← MySQL主从备份 MySQL进阶 →