0%

001.远程连接数据库

简单理解原理

一、服务器创建远程用户,并赋予相应数据库的权限

GRANT ALL PRIVILEGES ON . TO aa@”%” IDENTIFIED BY “12345678”;
grant语句:将数据库给哪个用户什么样的权限
用法参考:https://www.yiibai.com/mysql/grant.html

二、客户端连接服务器

1576032924(1)

具体服务端如何配置参考:https://blog.csdn.net/qq_19004627/article/details/80986922