程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 在ubuntu中如何重置mysql服務器的root密碼

在ubuntu中如何重置mysql服務器的root密碼

編輯:MySQL綜合教程

  在ubuntu中如何重置mysql服務器的root密碼   在ubuntu下安裝了mysql 5 server,結果不知道什麼原因,安裝時輸入的root帳號密碼在使用時無論如何都不能通過數據庫服務器的驗證。無奈只有重置mysql的root帳號密碼。查了一下,用了以下方法成功的重置了root帳號密碼。   首先停止mysql服務:   www.2cto.com   root@webserver:/home/webmaster# service mysql stop 接著采用忽略密碼認證模式重新創建一個mysql服務:   root@webserver:/home/webmaster# mysqld --user=mysql --skip-grant-tables --skip-networking & 成功啟動後返回PID及其它啟動信息:    1 [1] 3591  2 root@webserver:/home/webmaster# 121005  2:59:27 [Note] Plugin 'FEDERATED' is disabled.  3 121005  2:59:27 InnoDB: The InnoDB memory heap is disabled  4 121005  2:59:27 InnoDB: Mutexes and rw_locks use GCC atomic builtins  5 121005  2:59:27 InnoDB: Compressed tables use zlib 1.2.3.4  6 121005  2:59:27 InnoDB: Initializing buffer pool, size = 128.0M  7 121005  2:59:27 InnoDB: Completed initialization of buffer pool  8 121005  2:59:27 InnoDB: highest supported file format is Barracuda.  9 121005  2:59:27  InnoDB: Waiting for the background threads to start 10 121005  2:59:28 InnoDB: 1.1.8 started; log sequence number 1595685 11 121005  2:59:28 [Note] mysqld: ready for connections. 12 Version: '5.5.24-0ubuntu0.12.04.1'  socket: '/var/run/mysqld/mysqld.sock'  port: 0  (Ubuntu)  www.2cto.com     連接到mysql系統庫:   root@webserver:/home/webmaster# mysql -u root mysql 連接到mysql庫後直接修改root帳號的密碼為新的密碼'mynewpasswd' :   Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.   mysql> update user set Password=PASSWORD('mynewpasswd') where user='root'; Query OK, 3 rows affected (0.00 sec) Rows matched: 3  Changed: 3  Warnings: 0   mysql> FLUSH PRIVILEGES;   mysql> quit; Bye   www.2cto.com   中止mysql服務進程(PID 3591見前面啟動服務時的屏幕信息):   root@webserver:/home/webmaster# kill 3591 正常啟動 mysql服務,並用新密碼登錄mysql服務器成功:   root@webserver:/home/webmaster#service mysql start root@webserver:/home/webmaster#mysql -u root -pmynewpasswd 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved