Where the open source database community meets: Use code PERCONA75 and secure your spot for Percona Live.  Register

Change user password in MySQL 5.7 with "plugin: auth_socket"

March 16, 2016
Author
Miguel Angel Nieto
Share this Post:

change user password in MySQLIn this blog, we’ll discuss how to use “plugin: auth_socket” to change user password in MySQL 5.7.

In Debian/Ubuntu it is pretty common to install MySQL/Percona Server with an empty password for the root user. After everything is configured and tested, then a password is set. This is not a good practice in production servers (or soon-to-be production servers), but you can do it for your own test servers. With regards to authentication, things have changed a bit in 5.7, and methods that worked before now need a different procedure.

Let’s say that you install 5.7 and don’t specify a password. You will see the following:

OK, the password is empty. Let’s change it:

That doesn’t work, it’s still empty:

But why? Let’s check the warnings:

The problem is in the note coded 1699. This user is using an authentication plugin that doesn’t support a password. Which one could it be?

Ok, auth_socket. If you install 5.7 and don’t provide a password to the root user, it will use the auth_socket plugin. That plugin doesn’t care and doesn’t need a password. It just checks if the user is connecting using a UNIX socket and then compares the username.

If we want to configure a password, we need to change the plugin and set the password at the same time, in the same command. First changing the plugin and then setting the password won’t work, and it will fall back to auth_socket again. So, run:

So, the correct way to do this is to run the following:

And now, it works 🙂

If your deployments use empty passwords, and you change them later on, remember to update your scripts/recipes!

0 0 votes
Article Rating
Subscribe
Notify of
guest

31 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
huck
huck
9 years ago

thanks a lot for this post. I have spent the last 24 hours recovering from failed upgrade from ubuntu 14.04 to 16.04. The upgrade of mysql failed, and left the database inaccessible. At least one of the problems turned out to be that the root password was “”. Your process above allowed me to login to the db again.

If you ever get to Portland ORE, I will buy you a beer. Cheers!

Tonya Ohrel
Tonya Ohrel
9 years ago

I could kiss you!

Mih
Mih
9 years ago

Oh thank you, it’s perfect. You deserve really a good bier. In France if you come, it will be with pleasure.

iow
iow
9 years ago

If the commande “ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘test’;” doesn’t work you can try :

UPDATE mysql.user SET authentication_string = PASSWORD(‘test’), plugin = ‘mysql_native_password’ WHERE User = ‘root’ AND Host = ‘localhost’;
FLUSH PRIVILEGES;

It worked for me.

Thanks for the hint, anyway !

boonsiri
9 years ago
Reply to  iow

thank you very much it work for me too.

TJ Khara
7 years ago
Reply to  iow

Hi,

When I tried what is suggested in this article I get the following problem:

mysql> ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘RSbj1409’;
ERROR 1396 (HY000): Operation ALTER USER failed for ‘root’@’localhost’

When I tried what you have suggested I get this:

UPDATE mysql.user SET authentication_string = PASSWORD(‘test’), plugin = ‘mysql_native_password’ WHERE User = ‘root’ AND Host = ‘localhost’;
ERROR 1054 (42S22): Unknown column ‘‘root’’ in ‘where clause’

Could you please suggest what else I could try to resolve this?

Thanks.

Hamid Abbasi
Hamid Abbasi
7 years ago
Reply to  TJ Khara

you should replace all single quotation marks with English keyboard ” ‘ ” .

khessels
9 years ago

Thanks man, Worked like a charm…

Anders
9 years ago

I had the same problem as Huck after upgrading Ubuntu to 16.04. It’s frustrating when you need access to your database but you can’t. I’m using GnuCash with a MySQL database. This post solved my problems.

Thank you, you saved me from a lot of frustration and searching for a solution.

Matthew Watkins (NCSU)

Thank you so much, you saved my laptop from being destroyed by an angry fist of death just now

Bhargava Sai Yenugula
9 years ago

thank you very much for this post 🙂

Álvaro Larumbe
9 years ago

Thanks a lot! You saved a lot of time!

blogpakhaji
9 years ago

fresh install percona in ubuntu 14.04 :
i cant get root password
and i tried to login into
mysql -u root -p
always fail
how to login to mysql root with blank password (fresh install)
i didn’t understand socket auth things
thanks

Sonu Sindhu
9 years ago

That is exactly what I was looking from an hour or so.
Thanks man!

Penca Seca
Penca Seca
9 years ago

Thanks a lot, this worked perfectly for Ubuntu 16.04.
This is actually the only thing that really works out of the box with a simple statement… there are lots of posts on Stackoverflow and other sites with complex solutions (that don’t work) and require you to start mysql in safe mode.

Jeremy Morgan
Jeremy Morgan
8 years ago

Many thanks Miguel! I was having problems accessing our Mantis Bug Tracking DB after an upgrade from Ubuntu 12.04 to 16.04. We had a blank password. None of the other methods that I found on Google worked – until I found this one.

Erik Jansen
Erik Jansen
8 years ago

Using MariaDB and i have sort of the same problem.
It seems my installation is useing the auth_socket plugin but the query’s listed did not help me change/set the password.
At the moment i don’t have root acces.

ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘test’

comes back with the error:

ALTER: command not found

and:

UPDATE mysql.user SET authentication_string = PASSWORD(‘test’), plugin = ‘mysql_native_password’ WHERE User = ‘root’ AND Host = ‘localhost’;

comes back with the following:

ERROR 1054 (42S22): Unknown column ‘‘root’’ in ‘where clause’

This is after logging in to MariaDB with sudo mysql.
Should be root acces to the database server.
Also i only get to see an -> when i execute the query:

SELECT user,host FROM mysql.user

TJ Khara
7 years ago
Reply to  Erik Jansen

Facing a very similar issue with MySQL. Did you figure out what can be done?

joe shmoe
joe shmoe
8 years ago

YOU FREAKING SAVED MY COMPUTER FROM BEING TOSSED OUT THE WINDOW!!!

Caribou
Caribou
8 years ago

I was looking for 2 hours how to set this ********* password, thank you very much !!!

Wells
8 years ago

You saved me!!!!!! Thank you xoxoxoxo

Bridge
Bridge
8 years ago

Yes, this solution works, great.

Theo
Theo
8 years ago

Thanks for your solution. I have a fresh installation with ubuntu server 18.04 and phpmyadmin had no permissions at all.

Jake
Jake
7 years ago

Thank you for this, I could see the problem but was not finding any way to change the authentication type for the root user. Your solution finally worked.

TJ Khara
7 years ago

Hi,

I think this is the closest I have reached to solving this problem, but I’m still not done.

Here is the error message I see when I do as you’ve suggested in this article:

mysql> ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘test’;
ERROR 1396 (HY000): Operation ALTER USER failed for ‘root’@’localhost’

Could you please see what else I could do to resolve this?

Thanks.

Raymond
7 years ago

Finally a solution that works! Thanks so much. In summary I had to do

sudo mysql -u root
use mysql;
ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘test’;

Tom
Tom
7 years ago

Thank you Thank you Thank you. I’ve spent hours of research over two days. This is the only thing that worked.

Fresh install of apt install mysql-server from ubuntu 18.10 repository. No root password (or any access).to mysql

My Fix:
sudo mkdir /var/run/mysqld
sudo chown mysql:mysql /var/run/mysqld
sudo service mysql stop
sudo mysqld_safe –skip-grant-tables –user=mysql &
mysql
>FLUSH PRIVILEGES;
>ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘your_new_password’;
>EXIT;

The FLUSH PRIVILEGES was a requirement. Throws skip-grant-tables error if you don’t.

b8RvYtXAH GM
b8RvYtXAH GM
7 years ago

9Kf7 GVfwe7aObPRI9Ksa8 NHr

ijf8090
6 years ago

Works for me on MySQL Server version: 5.7.28-0ubuntu0.18.04.4 (Ubuntu)

Minor typo
mysql> SELECT * from user where User=”root”G
should be
mysql> SELECT * from user where User=”root”;
This generate a lot of extra data that make the output hard to read so I did

SELECT Host,User,plugin,authentication_string from mysql.user where User=”root”;

Add me to the beer list

Best regards
Ian

Far
Enough.

Said no pioneer ever.
MySQL, PostgreSQL, InnoDB, MariaDB, MongoDB and Kubernetes are trademarks for their respective owners.
© 2026 Percona All Rights Reserved