admin Site Admin
Joined: 23 Jan 2003 Posts: 256 Location: India
|
Posted: Sun Aug 28, 2005 3:47 am Post subject: How to Reset a mySQL Password in 5 Easy Steps |
|
|
1. Stop the mysqld daemon process.
2. Start the mysqld daemon process with the --skip-grant-tables option.
3. Start the mysql client with the -u root option.
4. Execute the UPDATE mysql.user SET Password=PASSWORD('password') WHERE User='root';
5. Execute the FLUSH PRIVILEGES; command.
These steps reset the password for the "root" account to "password". To change the password for a different account, or to set a different password, just edit the variables in single-quotes in step 4.
If you know your existing mySQL root password, steps 1-3 are not necessary. _________________ HostOnNet.com - Reseller Hosting
Free Ads Forum, Promote your site
NetFreeHost.com - Free Web Hosting, phpBB Hosting |
|