目录

2638264600 的个人博客

记录精彩的程序人生

标签: mariadb (1)

mariadb相关内容 有更新!

用户权限 create user username@localhost identified by ‘password’; grant all on . to username@localhost indentified by ‘password’; grant all privileges on . to username@‘%’ identified by ‘password’; grant all privileges on . to username@‘hostname’ identified by ‘password’ with grant option; 其中只授予部分权限把 其中 all privileges或者all改为select,insert,update,delete,create,drop,index,alter,grant,references,reload,shutdown,process,file其中一部分。 server.cnf文件,在[mysqld]标签下添加 init_connect=‘SET collation_connection = utf8_....