2018-11-06
进入数据库
mysql -uroou(用户) -p123456(密码)
授权某个user可远程访问
grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘123456‘ with grant option; #root为远程连接的用户,123456为远程连接密码 flush privileges; #刷新数据库缓存,使上面授权生效
测试远程连接
在另一台机器上远程连接数据库
mysql -h IP -uroot -p123456 #IP为远程机器地址,root为远程授权用户,123456为密码
原文地址:https://www.cnblogs.com/fqxy/p/9916369.html
时间: 2024-10-12 08:29:26