当前位置:Gxlcms > 数据库问题 > 虚拟机里centos7下 mysql5.6远程连接Navicat

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

时间:2021-07-01 10:21:17 帮助过:19人阅读

一、使用root用户登录到mysql

mysql -u root -p

技术图片

 

 

 查询数据库 show databases;

技术图片

 

 

 使用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

技术图片

开放防火墙端口:

开启防火墙:

启动: 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

技术图片

 

 再去Navicat远程连接mysql

就会发现连接成功

技术图片

 

 

 

 

 

 

 

 

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

标签:设置   ant   ane   成功   禁用   stat   所有权   disable   rman   

人气教程排行