虚拟机里centos7下 mysql5.6远程连接Navicat

使用Navicat工具,进行远程授权登录

一、使用root用户登录到mysql

mysql -u root -p

虚拟机里centos7下  mysql5.6远程连接Navicat

 

 

 查询数据库 show databases;

虚拟机里centos7下  mysql5.6远程连接Navicat

 

 

 使用mysql数据库(真正的数据库,而非数据库软件),将所有数据库的所有表(*.*)的所有权限(all privileges),授予通过任何ip(%)访问的root用户,密码为为你自己设置的密码,执行下面的命令,最后刷新(flush privileges)即可。刷新之后重启mysql

use  mysql;

grant all privileges on *.* to 'root'@'%' identified by '你自己设置的密码' with grant option; flush privileges;

  service mysqld restart

虚拟机里centos7下  mysql5.6远程连接Navicat

开放防火墙端口:

开启防火墙:

启动: systemctl start firewalld 查看状态: systemctl status firewalld  禁用,禁止开机启动: systemctl disable firewalld 停止运行: systemctl stop firewalld

开放防火墙端口3306:

firewall-cmd --zone=public --add-port=3306/tcp --permanent

重新载入:

firewall-cmd --reload

查看所有打开的端口:

firewall-cmd --zone=public --list-ports

虚拟机里centos7下  mysql5.6远程连接Navicat

 

 再去Navicat远程连接mysql

就会发现连接成功

虚拟机里centos7下  mysql5.6远程连接Navicat

 

 

 

 

 

 

 

 

上一篇:Mysql设置远程访问权限


下一篇:九阴真经Ambari——3.安装并配置MariaDB