mysql 修改root 使用者密碼

來源:互聯網
上載者:User

文章來源:http://www.centos.bz/2011/04/reset-mysql-root-password/

你可以按照以下簡單的五步來重設MySQL資料庫伺服器密碼。第一步,停止MySQL伺服器。第二步,使用–skip-grant-tables選擇啟動mysqld進程以便解除要求密碼登入提示。第三步,以root使用者串連mysql伺服器。第四步,設定一個新的mysql root使用者密碼。第五步,退出並重啟mysql伺服器。以下給出每步的具體命令。

1、停止mysql服務
  1. /etc/init.d/mysql stop

輸出:
Stopping MySQL database server: mysqld.

2、設定忽略密碼啟動mysql伺服器
  1. mysqld_safe --skip-grant-tables &

輸出:
[1] 5988
Starting mysqld daemon with databases from /var/lib/mysql
mysqld_safe[6025]: started

3、使用mysql用戶端串連mysql伺服器
  1. mysql -u root

輸出:
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 1 to server version: 4.1.15-Debian_1-log

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

mysql>

4、設定一個新的mysql root使用者密碼
  1. mysql> use mysql;
  2. mysql> update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root';
  3. mysql> flush privileges;
  4. mysql> quit
5、停止mysql伺服器
  1. /etc/init.d/mysql stop

輸出:
Stopping MySQL database server: mysqld
STOPPING server from pid file /var/run/mysqld/mysqld.pid
mysqld_safe[6186]: ended

[1]+ Done mysqld_safe –skip-grant-tables

6、啟動mysql伺服器並測試
  1. /etc/init.d/mysql start
  2. mysql -u root -p
 
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.