All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sh.jmash-propertyset.0.0.3.source-code.readme.txt Maven / Gradle / Ivy

The newest version!
1、主库创建写用户  

create user 'dev_write'@'%' identified by 'jmash123456';
grant all privileges on *.* to 'dev_write'@'%';
flush privileges;

SET PASSWORD FOR 'dev_write'@'%' = PASSWORD('jmash123456');

2、备库创建读用户  

create user 'dev_read'@'%' identified by 'jmash123456';
grant SELECT  on *.* to 'dev_read'@'%';
flush privileges;

SET PASSWORD FOR 'dev_read'@'%' = PASSWORD('jmash123456');




© 2015 - 2025 Weber Informatics LLC | Privacy Policy