摘要: 用户管理 mysql>use mysql; 查看 mysql> select host,user,password from user ; 创建 mysql> create user zx_root IDENTIFIED by 'xxxxx'; //identified by 会将纯文本密码加密作为 阅读全文
posted @ 2017-08-24 17:07 Study_Work 阅读(1000) 评论(0) 推荐(0) 编辑
摘要: 1、创建新用户 通过root用户登录之后创建 >> grant all privileges on *.* to testuser@localhost identified by "123456" ; // 创建新用户,用户名为testuser,密码为123456 ; >> grant all pr 阅读全文
posted @ 2017-08-24 13:39 Study_Work 阅读(132) 评论(0) 推荐(0) 编辑