You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting up MySQL using the mysql_service block, there is an option called initial_root_password. When setting that to some specific string, I expect to be able to use that string to log into the server later.
In reality, I cannot use the password because the authentication is handled via Socket by default, ever since MySQL 5.7 I believe.
🥞 Cookbook version
11.0.5
👩🍳 Chef-Infra Version
17.10.3
🎩 Platform details
Ubuntu 20.04 LTS
Steps To Reproduce
In a custom Chef cookbook, use this library and configure as follows:
As far as setting the default password is concerned, I think it happens here. But this invocation has no effect if auth_socket is used, and MySQL reports a warning along the lines of SET PASSWORD has no significance for user 'root'@'localhost' as authentication plugin does not support it.
To make the password access work, the plugin must be changed upon setting the password. The IDENTIFIED WITH change was once properly introduced in 9a66e57, but then got reverted immediately in fe39425 for unknown reasons.
I am aware of #539 but that issue never reached any actual conclusion. I'm curious to know why the revert that I mentioned above happened and if (and why) this is intended behaviour.
The text was updated successfully, but these errors were encountered:
Updates root then sets default for new users in case it comes up again. Wish I didn't have to though, but hey.
Only issue I had was that I had to put in a small connection retry loop after defining the service as it runs these immediately after it and the service hasn't fully came up yet.
👻 Brief Description
When setting up MySQL using the
mysql_service
block, there is an option calledinitial_root_password
. When setting that to some specific string, I expect to be able to use that string to log into the server later.In reality, I cannot use the password because the authentication is handled via Socket by default, ever since MySQL 5.7 I believe.
🥞 Cookbook version
11.0.5
👩🍳 Chef-Infra Version
17.10.3
🎩 Platform details
Ubuntu 20.04 LTS
Steps To Reproduce
In a custom Chef cookbook, use this library and configure as follows:
🚓 Expected behavior
After Chef finishes, I can log in via
mysql -u root -p
and then entering thesuper_strong_password
I defined above.In reality, MySQL just reports
Access denied for user 'root'@'localhost'
➕ Additional context
When forcing access to the console through
sudo mysql
, one can see that the server is actually configured to use theauth_socket
plugin:As far as setting the default password is concerned, I think it happens here. But this invocation has no effect if
auth_socket
is used, and MySQL reports a warning along the lines ofSET PASSWORD has no significance for user 'root'@'localhost' as authentication plugin does not support it.
To make the password access work, the plugin must be changed upon setting the password. The
IDENTIFIED WITH
change was once properly introduced in 9a66e57, but then got reverted immediately in fe39425 for unknown reasons.I am aware of #539 but that issue never reached any actual conclusion. I'm curious to know why the revert that I mentioned above happened and if (and why) this is intended behaviour.
The text was updated successfully, but these errors were encountered: