忘mysql root密碼之MYSQLADMIN修改密碼方法

來源:互聯網
上載者:User
關鍵字 網路程式設計 Mysql教程

一般出來忘記密碼都是一新mysql新手朋友,下面我們來告訴你如何利用mysqadmin來把密碼修改過來吧。
我來做幾個例子相信很快就明白了 。
1、原來的密碼是123456
C:>type mysql5.bat
@echo off
mysql -uroot -p123456 -P3306
正確的修改MYSQL使用者密碼的格式是:
我們這裡用
使用者:root(可以換成其他的)
密碼:woshiduide
來演示新密碼。

代碼如下
C:>mysqladmin -uroot -p password woshiduide
Enter password: ******

於是修改成功。
注意PASSWORD關鍵字後面的空格

有好多人是這樣修改的:

代碼如下
C:>mysqladmin -uroot -p password ‘woshiduide’
Enter password: ******

C:>mysqladmin -uroot -p password ‘woshiduide’
Enter password: *********
Warning: single quotes were not trimmed from the password by your command
line client, as you might have expected.

而這個時候真正的密碼是’woshiduide’

代碼如下
C:>mysql -uroot -p’woshiduide’
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 18
Server version: 5.1.17-Beta-community-nt-debug MySQL Community Server (GPL)

Type ‘help;’ or ‘h’ for help. Type ‘c’ to clear the buffer.

mysql>

而新手往往這樣:

代碼如下
C:>mysql -uroot -pwoshiduide
ERROR 1045 (28000): Access denied for user ‘root’@'localhost’ (using password: Y
ES)

所以非常鬱悶,BAIDU、GOOGLE的搜了一大堆。

我現在把密碼改回去。

代碼如下
C:>mysqladmin -uroot -p’woshiduide’ password 123456

2、還有就是可以直接進入MYSQL,然後修改密碼。

代碼如下
mysql> use mysql
Database changed
mysql> update user set PASSWORD = PASSWORD(‘woshiduide’) where USER=’root’ and H
OST=’localhost’;
Query OK, 1 row affected (0.05 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> flush privileges;

mysql> exit
Bye

C:>mysql -uroot -pwoshiduide
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 23
Server version: 5.1.17-Beta-community-nt-debug MySQL Community Server (GPL)

Type ‘help;’ or ‘h’ for help. Type ‘c’ to clear the buffer.

mysql>
Query OK, 0 rows affected (0.02 sec)

3、還有一種就是用SET PASSWORD 命令修改:

代碼如下
C:>mysql5.bat
Enter password: ******
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 8
Server version: 5.1.17-Beta-community-nt-debug-log MySQL Community Server (GPL)

Type ‘help;’ or ‘h’ for help. Type ‘c’ to clear the buffer.

mysql> set password for root@’localhost’ = password(‘woshiduide’);
Query OK, 0 rows affected (0.02 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.09 sec)

mysql> exit
Bye
4、GRANT 也可以,不過這裡不介紹。 因為涉及到許可權的問題。

mysql中mysqladmin命令用法簡介

用於執行管理性操作。 語法是:
shell>; mysqladmin [OPTIONS] command [command-option] command ...
通過執行mysqladmin --help,你可以得到你mysqladmin的版本所支援的一個選項清單。
目前mysqladmin支援下列命令:
create databasename 創建一個新資料庫
drop databasename 刪除一個資料庫及其所有表
extended-status 給出伺服器的 一個擴展狀態訊息
flush-hosts 洗掉所有緩存的主機
flush-logs 洗掉所有日誌
flush-tables 洗掉所有表
flush-privileges 再次裝載授權表(同reload)
kill id,id,... 殺死mysql執行緒
password 新口令,將老口令改為新口令
ping 檢查mysqld是否活著
processlist 顯示服務其中活躍執行緒清單
reload 重載授權表
refresh 洗掉所有表並關閉和打開日誌檔
shutdown 關掉伺服器
status 給出伺服器的簡短狀態訊息
variables 列印出可用變數
version 得到伺服器的版本資訊
所有命令可以被縮短 為其唯一的首碼。 例如:
shell>; mysqladmin proc stat
+----+-------+-----------+----+-------------+------+-------+------+
| Id | User | Host | db | Command | Time | State | Info |
+----+-------+-----------+----+-------------+------+-------+------+
| 6 | monty | localhost | | Processlist | 0 | | |
+----+-------+-----------+----+-------------+------+-------+------+
Uptime: 10077 Threads: 1 Questions: 9 Slow queries: 0 Opens: 6 Flush tabl es: 1
Open tables: 2 Memory in use: 1092K Max memory used: 1116K
mysqladmin status命令結果有下述列:
Uptime MySQL伺服器 已經運行的秒數
Threads 活躍執行緒(客戶)的數量
Questions 從mysqld啟動起來自客戶問題的數量
Slow queries 已經超過long_query_time秒的查詢數量
Opens mysqld已經打開了多少表
Flush tables flush ..., refresh和reload命令數量
Open tables 現在被打開的表數量
Memory in use 由mysqld代碼直接分 配的記憶體(只有在MySQL用--with-debug編譯時可用)
Max memory used 由mysqld代碼直接分配的最大記憶體(只有在MySQL用--with-debug編譯時可用)
主要是管理 不是使用 使用的話直接進入mysql create table
也可以mysqldmin create database
./***.sql(這裡面是匯出或者自己寫的語句)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.