mysql5.7 允许root远程访问

来源:互联网 发布:ps软件 编辑:程序博客网 时间:2024/05/27 20:05

update mysql.user set Host='%' where HOST='localhost' and User='root';

flush privileges;


0 0