MySQL Forums
Forum List  »  Security

Re: mysql_secure_installation Does Not Work, and Fails Silently
Posted by: Lars Tangvald
Date: September 10, 2020 03:18AM

Hi,

This is a known issue with some of our utilities; When used to set the password they don't change the authentication _method_.
Ubuntu packages by default don't use password authentication, but unix socket authentication (so you need to be system root to log in as mysql root).

Note that in general, mysql_secure_installation is no longer needed. MySQL 5.7 and 8.0 are meant to be secure by default (no testing database or anonymous users, no non-localhost root user, etc).

As a workaround if you want password auth, you can log in as root and run:
alter user 'root'@'localhost 'identified with 'caching_sha2_password' by 'mypassword';

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: mysql_secure_installation Does Not Work, and Fails Silently
480
September 10, 2020 03:18AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.