Created
May 11, 2018 22:09
-
-
Save ergin/b4d5a614e205a85c977acd853f7f2221 to your computer and use it in GitHub Desktop.
Creates a docker MySQL8 (version 8.0.11) container with native mysql password Authentication mechanism.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker run --name mysql8 -e MYSQL_ROOT_PASSWORD=123456 -p 3306:3306 -d mysql:8.0.11 --default-authentication-plugin=mysql_native_password |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
An easy way to skip "Authentication plugin 'caching_sha2_password' cannot be loaded: The specified module could not be found." error.