You attempt to connect to a Mysql Server by using the mysql program. However, you receive the
following notice:
ERROR 2059 (HY000): Authentication plugin ‘mysql_clear_password’ connot be loaded: plugin
not enabled
What would you run to fix the issue?
A.
The mysql client with the – ignore-password-hashing option
B.
The mysql_secure_installation script to update server security settings
C.
The mysql client with the – enable-cleartext-plugin option
D.
The mysql_upgrade script
E.
The install plugin command for the mysql_cleartext_password plugin
Explanation:
Reference: http://planet.mysql.com/entry/?id=34077
mysql –help | grep cleartext
–enable-cleartext-plugin
Should C
C
C