6.5 KiB
page-title, url, date
| page-title | url | date |
|---|---|---|
| MySQL Change a User Password Command Tutorial - nixCraft | https://www.cyberciti.biz/faq/mysql-change-user-password/ | 2024-11-01 14:51:07 |
ALTER USER 'user'@'hostname' IDENTIFIED BY 'newPass';
I would like to change a password for a user called tom using UNIX / Linux command line option. How do I change a user password on MySQL server?
You need to use mysql (or mysql.exe on MS-Windows based system) command on a Linux or Unix like operating system. Open a terminal app or 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.
| Tutorial details |
|---|
| Difficulty level |
| Root privileges |
| Requirements |
| Category |
| OS compatibility |
| Est. reading time |
How to change user password on mysql
Mysql change user password using the following method:
- Open the bash shell and connect to the server as root user:
mysql -u root -h localhost -p - Run ALTER mysql command:
ALTER USER 'userName'@'localhost' IDENTIFIED BY 'New-Password-Here'; - Finally type SQL command to reload the grant tables in the mysql database:
FLUSH PRIVILEGES;
Please note that use mysql.exe on MS-Windows host as follows (first change directory where mysql.exe is located [example: “C:\Program Files\mysql\mysql-5.0.77-win32\bin“]. Let us see examples and syntax in details.
mysql command to change a user password
Login as root from the shell:
$ mysql -u root -p
Or admin user that can do DBA duties. For example:
$ mysql -u admin -h 10.83.200.253 -p
Where,
- -u root OR -u admin : MySQL server admin user name (root is default on most systems).
- -h 10.83.200.253 : MySQL server IP address or hostname such as server1.cyberciti.biz.
- -p : Prompt for the password.
Switch to mysql database (type command at mysql> prompt, do not include string “mysql>”):
mysql> **use mysql;**
The syntax is as follows for mysql database server version 5.7.5 or older:
SET PASSWORD FOR 'user-name-here'@'hostname' = PASSWORD('new-password');
For mysql database server version 5.7.6 or newer use the following syntax:
ALTER USER 'user'@'hostname' IDENTIFIED BY 'newPass';
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:
Sample outputs:
Query OK, 0 rows affected (0.00 sec)
To exit from mysql> prompt, enter:
Changing the MySQL root or user password using the mysqladmin command
We can also use the mysqladmin CLI to alter the MySQL password. The syntax for the mysqladmin command is as follows:
$ mysqladmin --user={USER_NAME} password "{NEW_PASSWORD_HERE}" $ mysqladmin --user=root password "5b350f65542fdb74e74ef7b815f86ad5" $ mysqladmin --user=root --host=192.168.2.200 --password password "5b350f65542fdb74e74ef7b815f86ad5"
Where,
- --user=root : User for login if not current user.
- --password : Prompt for password to use when connecting to server.
- --host=192.168.2.200 : Connect to MySQL server host by given IP address or hostname.
- password "5b350f65542fdb74e74ef7b815f86ad5" : Change old password to “5b350f65542fdb74e74ef7b815f86ad5” in current format.
Verify the new password settings
User or you can test new password using the following shell syntax:
$ mysql -u tom -p
When promoted enter new password you set earlier for tom user.
Sample session
Fig.01: Mysql Updating / Changing password (click to enlarge)
Summing up
You learned how to change MySQL or MariaDB user password using the mysql command line on Linux, Unix, macOS, *BSD and Windows operating systems. For more info please read the mysql manual page by typing the man command or passing the --help option under Unix-like systems. For instance:
$ man mysql $ mysql --help
🥺 Was this helpful? Please add a comment to show your appreciation or feedback.
Hi! 🤠
I'm Vivek Gite, and I write about Linux, macOS, Unix, IT, programming, infosec, and open source. Subscribe to my RSS feed or email newsletter for updates.


