摘要: 用户管理 mysql>use mysql; 查看 mysql> select host,user,password from user ; 创建 mysql> create user zx_root IDENTIFIED by 'xxxxx'; //identified by 会将纯文本密码加密作为 阅读全文
posted @ 2019-08-23 16:46 叨叨的蜗牛 阅读(86) 评论(0) 推荐(0) 编辑
摘要: (1)登录:mysql -u root -p (2)查看现有用户(mysql8.0.1) (3)新建用户 格式:create user "username"@"host" identified by "password"; eg: /*host="localhost"为本地登录用户,host="ip 阅读全文
posted @ 2019-08-23 16:41 叨叨的蜗牛 阅读(389) 评论(0) 推荐(0) 编辑