mysql 允許ip訪問


grant all privileges on *.* to 'root'@'ip' identified by 'password' with grant option;

flush privileges;

ip如為%,則允許所有Ip訪問

 

8.0版本后,需要如下換成如下命令

create user 'root'@'%' identified by '123456';

grant all on *.* to 'root'@'%';

alter user 'root'@'%' identified with mysql_native_password by '123456';

flush privileges;

123456為密碼


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM