创建用户 create user 'jdxj'@'%' identified by 'pass'; 创建数据库 create database test_remote; 授权 grant all privileges on test_remote.* to 'jdxj'@'%' with grant option; 刷新 flush privileges;