1.配置安全组,设置只用本地访问连接服务器和数据库。(这是云服务器中安全组的设置)
(这是轻量服务器安全组的设置位置)
2.登录MySQL数据库。
3.设置数据库的root用户可以被外界IP访问连接。
use mysql;
select host, user from user;
update user set host = '%' where user = 'root';
update user set host = '%' where user = 'root' and host = '本地ip地址';
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '设置通过Navicat软件中的ssh登录数据库的密码';