When I'm working locally, I don't really need to enter my password to access my database. I changed my root password when I first installed MySQL, but I don't know how to change my password back. What should I do?
7 Answers
To change the root password to newpassword
:
mysqladmin -u root -p'oldpassword' password 'newpassword'
To change it so root doesn't require a password:
mysqladmin -u root -p'oldpassword' password ''
Note: I think it matters that there isn't a space between the -p
and 'oldpassword'
but I may be wrong about that
- 3,293
- 8
- 32
- 35
-
3i keep getting error: access denied for 'root'@localhost . how can i fix this please? – t q Apr 04 '12 at 20:15
-
works for me: mysqladmin -u root -p'oldpassword' password '' @t q: you must type extactly oldpassword – Bảo Nam Jan 07 '16 at 07:02
Rather than removing the password (which may have unpleasant consequences in the future if you happen to expose that server to the wilds), put the current password (and your username) into ~/.my.cnf
(or presumably some equivalent location in Windows) that looks like this:
[client]
user = root
password = s3kr1t
This gives MySQL the awesome ability to autologin using the credentials provided, without leaving you wide open for unpleasantness in the future.
- 95,029
- 29
- 173
- 228
- Stop mysqld and restart it with the --skip-grant-tables option.
- Connect to it using just mysql.
- Change the root password:
UPDATE mysql.user SET Password=PASSWORD('MyNewPass') WHERE User='root';
FLUSH PRIVILEGES;
For reference: the official mysql docs.
- 103
- 4
-
1This works but is a brute force way of doing it. This is more for when you don't know the password. – David Jan 16 '10 at 21:38
-
Note, as of MySQL Server 5.7 and up, the column **Password** is now called **authentication_string**. https://stackoverflow.com/a/31122246/1016891 – tom_mai78101 Dec 11 '21 at 02:30
Note that starting with MySQL 5.7, the validate_password plugin is active by default, and prevents you from using an empty password.
You need to disable this plugin to allow for an empty password:
UNINSTALL PLUGIN validate_password;
SET PASSWORD FOR root@localhost = PASSWORD('');
Be careful that unless you don't care about security, you should follow @womble's advice and use a password, along with a .my.cnf
file for convenience.
Check my article Removing the MySQL root password on this topic!
- 4,215
- 10
- 53
- 81
-
For versions > 5.6 this is the only way that works. I suspect that it should work on previous versions too. – Diego Aug 10 '18 at 22:02
-
1`UNINSTALL PLUGIN validate_password;` leads to: `ERROR 1305 (42000): PLUGIN validate_password does not exist`, and the version is: `mysql Ver 8.0.27-0ubuntu0.20.04.1 for Linux on x86_64 ((Ubuntu))` – Palo Nov 13 '21 at 13:44
In newer versions
UPDATE mysql.user SET authentication_string=PASSWORD('MyNewPass') WHERE User='root'
and this will remove password
UPDATE mysql.user SET authentication_string=PASSWORD('') WHERE User='root'
- 156
- 3
-
1ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '('') WHERE User='root'' at line 1 – Palo Nov 13 '21 at 13:46
I also created a root password at installation and wanted to change back to using unix authentication once I understood that if I run commands or launch apps as root they can connect to the database without any password which is much simpler than having another password.
I connected as root using the password then ran:
ALTER USER 'root'@'localhost' IDENTIFIED BY '';
To test open a new Terminal and do sudo su
then mysql
and check if it connects with no password (this didn't work when a password was set).
I also created a MySQL account with the same username as my unix account, again with no password, and using the root account I granted it access to the tables I needed, then I could also connect from apps from my user account without changing to root.
This is beyond the scope of the question but next I would be looking into hooking the unix user creation process to automatically creating a matching MySQL user account.
More info and other ways to do it in MySQL Docs How to Reset the Root Password
- 111
- 4