MySQL用户
已收录文章:2篇
-
更改mysql密码 -- 查询用户权限 show grants for 'root'@'%'; update mysql.user set authentication_string=password('密码') where user='root' and Host = 'localhost'; flush privileges; -- 或者下面方式 alter user 'test1'@'localhost' identified329 收藏
-
一、用户管理 1.1 新建用户 create user '用户名'@'主机名' [identified by [password] '密码']; 用户名就不用解释了,就是我们登录时使用的账号主机名指定我们创建的用户可以在哪些主机上登陆,可使用I286 收藏