码迷,mamicode.com
首页 > 数据库 > 详细

重温MySQL

时间:2018-02-09 17:29:12      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:查询   grant   11.2   highlight   password   gpo   pytho   min   create   

登录

mysql -uroot -p123456

查询当前用户

 select user();

技术分享图片

不执行某条语句

\c

技术分享图片

查看帮助信息

 help create user;

创建用户

create user ‘0bug‘@‘%‘ identified by ‘123456‘;  # 所有人都能登录

create user ‘user192‘@‘192.168.32.*‘ identified by ‘123456‘;  # 指定网段的人可以登录

链接mysql

mysql -u0bug -p123456 -h192.168.11.25

技术分享图片

为用户授权

all privileges可简写成all ,赋给0bug所有库下的所有表权限

 grant all privileges on *.* to ‘0bug‘@‘%‘;

flush privileges;  # 刷新

技术分享图片

创建用户并授权(两部合一步)

grant all on *.* to ‘lcg‘@‘%‘ identified by ‘123456‘;

技术分享图片

修改用户登录密码

mysqladmin -uroot -p123456 password 123

技术分享图片

杀死mysql进程

tasklist |findstr mysql  # 查看进程

tskill mysqld  # 通过进程名杀死进程

taskkill -f /PID 12532  # 通过进程pid杀死进程

技术分享图片

忘记密码后修改密码方案

杀死mysqld--->启动mysqld跳过授权表,登录root用户后更新密码

tasklist |findstr mysql

taskkill -f /PID 10176

另起终端登录root用户更改密码:
mysql -uroot -p

update mysql.user set password=password(‘123123‘) where user=‘root‘ and host=‘localhost‘;

flush privileges;

技术分享图片

技术分享图片

 

重温MySQL

标签:查询   grant   11.2   highlight   password   gpo   pytho   min   create   

原文地址:https://www.cnblogs.com/0bug/p/8435925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!