数据库运维平台~功能使用

一 简介: 使用平台的一些注意点

二 账号创建

      每种账号只能注册一个,线上数据库所有操作一共三种账号

      读写账号      

     grant select,insert,delete,update,create,drop,alter,trigger,super,replication client,replication slave,process on *.* to 'user'@'%' identified by 'password'; 

     只读账号

     grant select on *.* to 'user'@'%' identified by 'password' 

     监控账号   

    grant select,show,process on *.* to 'user'@'%' identified by 'password' 

     inception账号

    grant all privileges  on *,* to 'user'@'%' identified by 'password'

猜你喜欢

转载自www.cnblogs.com/danhuangpai/p/11739104.html