| Tutorial details | |
|---|---|
| Difficulty | Easy (rss) |
| Root privileges | Yes (mysql admin user) |
| Requirements | mysql |
| Estimated completion time | N/A |
You need to use mysql (or mysql.exe on MS-Windows based system) under Linux or Unix like operating system. Open a terminal / ssh session. Type the following command at the shell prompt to login as a root user. The syntax is as follows for Unix like operating system:
$mysql -u root -h localhost -p
OR use mysql.exe under MS-Windows host as follows (first change directory where mysql.exe is located [example: "C:\Program Files\mysql\mysql-5.0.77-win32\bin"] ):
mysql.exe -h localhost --user=root -p
You will see mysq> prompt as follows:
mysq>
Syntax: Sql command to change a user password
Switch to mysql database (type command at mysql> prompt, do not include string "mysql>"):
mysql> use mysql;
The syntax is:
SET PASSWORD FOR 'user-name-here'@'hostname-name-here' = PASSWORD('new-password-here');
You can also use the following sql syntax:
UPDATE mysql.user SET Password=PASSWORD('new-password-here') WHERE User='user-name-here' AND Host='host-name-here';
In this example, change a password for a user called tom:
SET PASSWORD FOR 'tom'@'localhost' = PASSWORD('foobar');
OR
UPDATE mysql.user SET Password=PASSWORD('foobar') WHERE User='tom' AND Host='localhost';
Sample outputs:
Query OK, 1 row affected (0.00 sec) Rows matched: 1 Changed: 1 Warnings: 0
Feel free to replace the values for "tom" (user), "localhost" (hostname), and "foobar" (password) as per your requirements. Finally, type the following command to reload privileges:
FLUSH PRIVILEGES;Sample outputs:
Query OK, 0 rows affected (0.00 sec)
To exit from mysql> prompt, enter:
quit;
Sample session
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 9 comments… read them below or add one }
then…
mysql> flush privileges;
Or just use the SET PASSWORD command:
http://dev.mysql.com/doc/refman/5.0/en/set-password.html
This is good
Very helpful information.
You forgot – FLUSH PRIVILEGES; after update tables
You legend. Thank you :)
Small modification in 3rd step… according to the mysql documentation, the password should be typed within single quotes instead of double quotes. But double quotes works. Refer the example below…
mysql> UPDATE user SET Password=PASSWORD(‘NEW-PASSWORD-HERE’) WHERE User=’tom’;
Another thing to mention, make sure you change the password for both the local and remote users because if a remote application server (ex-jboss) or in php connecting to mysql server it will still be needed the old password since it is remaining unchanged.
So according to this scenario the proper commands should be…
mysql> UPDATE user SET Password=PASSWORD(‘NEW-PASSWORD-HERE’) WHERE User=’tom’ AND Host=’local’;
mysql> UPDATE user SET Password=PASSWORD(‘NEW-PASSWORD-HERE’) WHERE User=’tom’ AND Host=’%';
Forgot to mentioned….
the first single command will do the password change for local and remote which is..
mysql> UPDATE user SET Password=PASSWORD(‘NEW-PASSWORD-HERE’) WHERE User=’tom’;
I did installed a xampp and mysql don’t change the root password in this time.
SET PASSWORD FOR ‘root’@'localhost’ = PASSWORD(‘<the_my_password'); gives Query OK, 0 rows affected.