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

linux忘記mysql密碼找回方法

2022-06-13   來源: MySQL 

  linux忘記mysql教程密碼找回方法 今天我們主要是講一下關於linux忘記mysql密碼處理方法下面提供了種linux忘記mysql密碼找回方法哦

  方法一 # /etc/initd/mysql stop # mysqld_safe user=mysql

  linux忘記mysql教程密碼找回方法

  今天我們主要是講一下關於linux忘記mysql密碼處理方法下面提供了種linux忘記mysql密碼找回方法哦

  方法一

  # /etc/initd/mysql stop

  # mysqld_safe user=mysql skipgranttables skipnetworking &

  # mysql u root mysql

  mysql> update user set password=password(newpassword) where user=root;

  mysql> flush privileges;

  mysql> quit

  # /etc/initd/mysql restart

  # mysql uroot p

  enter password: <輸入新設的密碼newpassword>

  mysql>

  方法二

  直接使用/etc/mysql/f文件中[client]節提供的用戶名和密碼:

  # mysql udebiansysmaint p

  enter password: <輸入[client]節的密碼>

  mysql> update user set password=password(newpassword) where user=root;

  mysql> flush privileges;

  mysql> quit

  # mysql uroot p

  enter password: <輸入新設的密碼newpassword>

  mysql>

  方法三

  這種方法我沒有進行過測試因為我的root用戶默認密碼已經被我修改過了那位有空測試一下把結果告訴我謝謝!!

  # mysql uroot p

  enter password: <輸入/etc/mysql/f文件中[client]節提供的密碼>

  方法四

  方法如下 關閉mysql服務 /etc/initd/mysqld stop 使用 –skipgranttables選項啟動mysql服務可以修 改/etc/inind/mysqld腳本啟動位置增加此選項 vi /etc/initd/mysqld

  方法如下

   關閉mysql服務

  /etc/initd/mysqld stop

  使用 –skipgranttables選項啟動mysql服務可以修 改/etc/inind/mysqld腳本啟動位置增加此選項

  vi /etc/initd/mysqld

  在下面運行啟動的語句裡增加skipgranttables

  /usr/bin/mysqld_safe skipgranttables datadir=$datadir socket=$socketfile

  logerror=$errlogfile pidfile=$mypidfile

  加入skipgranttables的意思是啟動mysql服務的時候跳 過權限表認證啟動後連接到mysql的root不需要口令

  重新啟動mysql服務

  /etc/initd/mysqld start

   修改root用戶的密碼

  mysql> update mysqluser set password=password() where user=root

  mysql> flush privileges

  mysql> quit

   重新啟動mysql就可以使用 新密碼登錄了

  mysql

  mysql u root –p

  輸入密碼

  關閉mysql服務

  /etc/initd/mysqld stop

   重新修改第步修改的/etc/initd/mysqld使其保持原來不變也就是取消skipgranttables語句

  重新 啟動mysql服務

  /etc/initd/mysqld start

  unix


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