创建mysql用户、数据库、授权
以下所有指令需要在数据库服务器使用mysql指令进入dba用户才可执行
创建mysql用户
创建report用户,如果不存在则创建并且所有ip都能访问,密码为123456
create user if not exists 'report'@'%' identified by '123456';
创建数据库
创建base数据库,编码为utf8mb4,排序规则为utf8mb4_unicode_ci
create database if not exists base character set utf8mb4 collate utf8mb4_unicode_ci;
授权
授权report用户对base库的所有表有所有的操作权限。并且密码为123456
grant all privileges on base.* to 'report'@'%' identified by '123456';
刷新配置
flush privileges ;