ideyforhere
  • Sign Up
  • About Us
  • Contact Us
  • Client Login
  • Home
  • Announcements
  • Knowledgebase
  • Network Status
  • Affiliates
  • Contact Us
  • Account
    • Login
    • Register
    • Forgot Password?

Portal Home > Knowledgebase > General Support > MySQL > How to reset a mySQL password?

Add to Favourites Add to Favourites    Print this Article Print this Article

Knowledgebase

How to reset a mySQL password?

If you have lost your root user password for MySQL, you can reset it with the following procedure:

  1. Take down the mysqld server by sending a kill (not kill -9) to the mysqld server. The pid is stored in a .pid file, which is normally in the MySQL database directory:
    Example: shell> kill `cat /your-mysql-data-directory/hostname.pid`
    In Red Hat you can also stop the databse with:
    Example: shell> service mysqld stop
    You must be either the Unix root user or the same user the server runs as to do this.
  2. Restart mysqld with the --skip-grant-tables option.
  3. Connect to the mysqld server with
    Option 1:mysql -h hostname mysql and change the password with a GRANT command.
    See MySQL website: MySQL: 7.35 GRANT and REVOKE Syntax
    Option 2: shell> mysqladmin -h hostname -u user password 'new password'
  4. Load the privilege tables with: "shell> mysqladmin -h hostname flush-privileges” or with the SQL command "mysql> FLUSH PRIVILEGES;".


Note: Note that after you started mysqld with --skip-grant-tables, any usage of GRANT commands will give you an Unknown command error until you have executed FLUSH PRIVILEGES.

Was this answer helpful?

Also Read

  • Article Icon What is my root password for MySQL? (Views: 1647)

  • Article Icon MySQL Optimization / Repair Information (Views: 1682)

  • Article Icon Mysql Basic Commands (Views: 1716)

  • Article Icon What is the best online resource for information about MySQL? (Views: 1812)

  • Article Icon How do I backup MySQL in Linux? (Views: 1667)

Powered by WHMCompleteSolution


Copyright © 2013 darock Projects All Rights Reserved.