程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> skip-grant-tables:非常有用的mysql啟動參數

skip-grant-tables:非常有用的mysql啟動參數

編輯:MySQL綜合教程

skip-grant-tables:非常有用的mysql啟動參數   介紹一個非常有用的mysql啟動參數—— --skip-grant-tables。顧名思義,就是在啟動
mysql時不啟動grant-tables,授權表。有什麼用呢?當然是忘記管理員密碼後有用。    www.2cto.com   操作方法: 1、殺掉原來進行著的mysql: rcmysqld stop 或者: service mysqld stop 或者: kill -TERM mysqld   2、以命令行參數啟動mysql: /usr/bin/mysqld_safe --skip-grant-tables &         3、修改管理員密碼:  www.2cto.com   use mysql; update user set password=password('yournewpasswordhere') where user='root'; flush privileges; exit;         4、殺死mysql,重啟mysql.
 

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