Mysql操作集

99 阅读1分钟

关闭host连接限制

mysql -u root -p 密码
use mysql;
update user set host = '%' where user = 'root';
FLUSH PRIVILEGES;
exit