步骤一、需要先关闭虚拟机的防火墙,才能够连接成功
firewalld的基本使用:
启动: systemctl start firewalld
关闭: systemctl stop firewalld
查看状态: systemctl status firewalld
开机禁用 : systemctl disable firewalld
开机启用 : systemctl enable firewalld
步骤二、进行额外的配置
输入密码:
mysql -u root -p
赋予root用户远程连接的权限:
grant all privileges on *.* to 'root'@'%' identified by '密码';
flush privileges;
之后即可成功连接。