熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> MySQL >> 正文

linux mysql密碼重設

2022-06-13   來源: MySQL 

  長時間沒登錄mysql 之前又沒把這個密碼記錄下來現在密碼忘記了!網上找了一下重設mysql 密碼的方法試了一下成功了!把他共享出來 給大家參考參考

   先結束mysql 進程

  # killall mysqld

   用mysql 安全模式運行並跳過權限難

  # mysqld_safe skipgranttables

   用root 登錄 此時不需要密碼

  # mysql u root

   現在開始修改密碼了

  mysql> use mysql;

  Reading table information for completion of table and column names

  You can turn off this feature to get a quicker startup with A

  Database changed

  mysql> update user set Password = PASSWORD(your new password) where User = root ;

  Query OK rows affected ( sec)

  Rows matched:   Changed:   Warnings:

  mysql> quit

  Bye

  OK成功了!

  注意當運行 mysqld_safe skipgranttables 後停在Starting mysqld daemon with databases from /var/lib/mysql 可以新開一個遠程終端繼續操作


From:http://tw.wingwit.com/Article/program/MySQL/201311/29411.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.