给MySQL添加root用户的远程权限

#mysql -uroot -p123456 >use mysql; >select host,user,password from user; >create user 'root'@'%' identified by '123456'; >grant all on *.* to root@'%' identified by '123456'; >exit
相关文章
相关标签/搜索