Loading...
修改捆绑地址给予指定账户远程访问权限(本站无重要数据直接使用root 账户测试了)mysql -u root -p use mysql; grant all PRIVILEGES on *.* to root@'%' identified by '数据库密码'; flush privileges; 解释:grant all PRIVILEGES on *.* to root@'%' i...