Mysql [warning] 'user @ localhost' tem uma senha e um plugin de autenticação especificado

1

Estou usando o mysql-server-5.5.53 e o ubuntu-14.04.1.

Eu observei o aviso abaixo em /var/log/mysql/error.log .

Mysql [warning] : user' entry 'user@localhost' has both a password and an authentication plugin specified. The password will be ignored.

O que causa isso? Como me livrar desse aviso?

    
por Rajesh Keladimath 07.01.2017 / 08:02

1 resposta

0

Parece que esses avisos são espúrios e podem ser resultado de um bug estar presente no MySQL 5.5.x quando os plug-ins de autenticação mysql_native_password ou mysql_old_password estão especificados na tabela mysql.user .

...in MySQL 5.5, if the plugin column is set to either of those plugins and the password is specified, the server complains about it by logging warnings to the error log... Those warnings are spurious. They lead to the impression that something is wrong with the account when that is not the case.

Este é o relatório de erros:

Bug # 71465: a linha mysql.user com plug-in e senha gera um aviso falso

    
por warrenski 28.08.2018 / 12:10