如何开启MySQL远程访问权限 允许远程连接

2024-11-28 07:36:13
推荐回答(2个)
回答(1):

GRANT ALL PRIVILEGES ON *.* TO 'test'@'%' identified by 'test' WITH GRANT OPTION;

'test'@'localhost'中test为你的mysql用户名,identified by 'test'中的test为密码

回答(2):

在mysql 数据库 user表里面 有个Host 字段 修改这个字段为%