create user db_user@'%' identified by 'db_pass'; #创建用户 给所有数据库 添加上创建访问权限 grant all privileges on *.* to root@'%' identified by '123456'; root 是用户名 123456 密码 因人而异 给单独的数据库添加创建访问权限 grant all privileges on oneinstack.* to root@'%' identified by '123456'; oneinstack.* 代表 oneinstack 数据库