MySQL 配置允许远程连接

MySQL出于安全考虑,默认只允许本地连接,当想使用远程连接的时候就需要授权才行。

执行SQL,操作mysql库

grant all privileges on *.* to 'root'@'%' identified by '密码' with grant option;
flush privileges;

发表评论

邮箱地址不会被公开。 必填项已用*标注