shardingsphere-proxy.zip新增sharding用户
- 用户名为ribincao ,'%'表示所有 ip 都可访问,'123456'为密码
create user 'sharding'@'%' identified by 'sharding';
- 授予用户权限, 否则操作会报 command denied 错误
GRANT ALL PRIVILEGES ON . TO 'sharding'@'%' IDENTIFIED BY 'sharding' WITH GRANT OPTION;
flush privileges;