- create database mplusbase;
- create user 'mplusbase'@'%' identified by 'mplusbase';
- create user 'mplusbase'@'localhost' identified by 'mplusbase';
- flush privileges;
- grant all privileges on mplusbase.* to 'mplusbase'@'%';
- grant all privileges on mplusbase.* to 'mplusbase'@'localhost';
|