centos7下mysql授权远程连接

授权远程访问:

登陆:


使用mysql数据库(真正的数据库,而非数据库软件),将所有数据库的所有表(*.*)的所有权限(all privileges),授予通过任何ip(%)访问的root用户,密码为123456,最后刷新(flush privileges)即可。
use mysql
grant all privileges on *.* to 'root'@'%' identified by '123456';
flush privileges;


开放防火墙端口:

通过vim修改/etc/sysconfig/iptables,添加一行(这里是为了简单添加一行,更多防火墙知识请自行学习):



重启防火墙:



在windows下,我用 navicat测试:


远程连接成功。


原文出自:http://blog.csdn.net/u012367513/article/details/40538267

你可能感兴趣的:(linux)