导航

mysql添加远程权限

Posted on 2020-02-16 11:14  iitrust  阅读(145)  评论(0)    收藏  举报
mysql -u root -p
grant all privileges  on *.* to root@'%' identified by "password";
flush privileges;