解決辦法:
進(jìn)入mysql命令界面,輸入
select host,user from mysql.user;
host字段所有值都是localhost碎连,說明只允許本地訪問
設(shè)置允許任意IP訪問灰羽,執(zhí)行語句:
update mysql.user set host = '%' where user = 'root';
flush privileges;
連接mysql
解決辦法:
進(jìn)入mysql命令界面,輸入
select host,user from mysql.user;
host字段所有值都是localhost碎连,說明只允許本地訪問
設(shè)置允許任意IP訪問灰羽,執(zhí)行語句:
update mysql.user set host = '%' where user = 'root';
flush privileges;
連接mysql