windows下忘卻MySQL暗碼的修正辦法。本站提示廣大學習愛好者:(windows下忘卻MySQL暗碼的修正辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是windows下忘卻MySQL暗碼的修正辦法正文
1、windows下修正MySQL暗碼的辦法
假如在Windows下忘卻了MySQL的暗碼,可以如許做:
1.封閉正在運轉的MySQL辦事:net stop mysql或 在windows 義務治理器中停止 mysqld.exe 過程或在 治理對象外面的辦事找到 mysql辦事 ,將其停滯;
C:\Users\Administrator>net stop mysql
MySQL 辦事正在停滯.
MySQL 辦事已勝利停滯。
2.翻開敕令行,轉到mysql的bin目次下;
C:\Users\Administrator>cd C:\Program Files\MySQL\MySQL Server 5.5\bin
C:\Program Files\MySQL\MySQL Server 5.5\bin>
3.輸出:mysqld -nt --skip-grant-tables
然後回車,假如沒有毛病信息,就好了;
注:skip-grant-tables參數用了以後,便可以跳過登錄校驗;
C:\Program Files\MySQL\MySQL Server 5.5\bin>mysqld -nt --skip-grant-tables
140317 13:23:11 [Warning] option 'new': boolean value 't' wasn't recognized. Set
to OFF.
4.再翻開一個敕令行(由於適才誰人DOS窗口曾經不克不及動了),異樣轉到mysql的bin目次下;
5.直接輸出 mysql 並回車,假如勝利,將湧現MySQL提醒符 >
C:\Users\Administrator>cd C:\Program Files\MySQL\MySQL Server 5.5\bin
C:\Program Files\MySQL\MySQL Server 5.5\bin>mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.5.35 MySQL Community Server (GPL)
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
6.切換到mysql表
mysql>USE mysql;
7.可以修正暗碼了:
UPDATE user SET password=PASSWORD("123456") WHERE user="root";
8.刷新權限,不要忘卻了:
mysql>FLUSH PRIVILEGES;
9.加入:(加入的辦法許多 有quit、exit、ctrl+c、\q 等等);
10.刊出或重啟盤算機,然後翻開MySQL辦事,應用用戶名root和設置的新暗碼便可以登錄了。
2、更改mysql暗碼經常使用的三種辦法
年夜部門情形下,普通用戶沒有權限更改暗碼,只要請求了權限或root用戶才可以更改暗碼;
1.辦法1:用mysqladmin
mysqladmin -u root password "123456";
假如root曾經設置過暗碼,采取以下辦法
mysqladmin -u root password -p "123456";
2.辦法2: 用SET PASSWORD敕令,不須要應用FLUSH PRIVILEGES;
mysql -u root -p
mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('123456');
3.辦法3: 用UPDATE直接編纂user表
mysql> USE mysql;
mysql> UPDATE user SET Password = PASSWORD('123456') WHERE user='root';