标签:测试 远程机器 mysql 数据库远程连接 class use col root 远程连接
2018-11-06
mysql -uroou(用户) -p123456(密码)
grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘123456‘ with grant option; #root为远程连接的用户,123456为远程连接密码 flush privileges; #刷新数据库缓存,使上面授权生效
mysql -h IP -uroot -p123456 #IP为远程机器地址,root为远程授权用户,123456为密码
标签:测试 远程机器 mysql 数据库远程连接 class use col root 远程连接
原文地址:https://www.cnblogs.com/fqxy/p/9916369.html