Database summary 02

This article deals with issues other than database languages

! ! ! change Password

Method 1: Use the SET PASSWORD command

首先登录MySQL。 
格式:mysql> set password for 用户名@localhost = password('新密码'); 
例子:mysql> set password for root@localhost = password('123'); 

Method 2: Use mysqladmin

格式:mysqladmin -u用户名 -p旧密码 password 新密码 
例子:mysqladmin -uroot -p123456 password 123 

Method 3: Use UPDATE to directly edit the user table

首先登录MySQL。 
mysql> use mysql; 
mysql> update user set password=password('123') where user='root' and host='localhost'; 
mysql> flush privileges; 

Method 4: When you forget the root password, you can do this

以windows为例: 
1. 关闭正在运行的MySQL服务。 
2. 打开DOS窗口,转到mysql\bin目录。 
3. 输入mysqld --skip-grant-tables 回车。--skip-grant-tables 的意思是启动MySQL服务的时候跳过权限表认证。 
4. 再开一个DOS窗口(因为刚才那个DOS窗口已经不能动了),转到mysql\bin目录。 
5. 输入mysql回车,如果成功,将出现MySQL提示符 >6. 连接权限数据库: use mysql;6. 改密码:update user set password=password("123") where user="root";(别忘了最后加分号) 。 
7. 刷新权限(必须步骤):flush privileges; 。 
8. 退出 quit。 
9. 注销系统,再进入,使用用户名root和刚才设置的新密码123登录。

! ! ! Completely uninstall the database

If the uninstallation of the database is incomplete, an error will be reported when a new database is installed, so it needs to be cleanly uninstalled before reinstalling.
Here are the steps:

1、双击安装包,点击下一步,然后点击remove。卸载。

2、手动删除Program Files中的MySQL目录。

3、手动删除ProgramData目录(这个目录是隐藏的)中的MySQL。

The uninstallation is complete.

Guess you like

Origin blog.csdn.net/cena1001/article/details/113002927