-
-
Notifications
You must be signed in to change notification settings - Fork 229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating new mysql user errored with message: ER_NOT_VALID_PASSWORD: Your password does not satisfy the current policy requirements #511
Comments
I also encountered this issue, with the MySQL Password Validation Plugin (which MySQL now prompts for when running the included hardening routine Most likely RC is password shorter than 8 chars or not meeting complexity requirements (mixed case, 1+ numerals, 1+ special char). Failing password config on MySQL:
|
@imzhengfei this should I think be a fairly small/easy fix - so if you want to create a PR for it feel free :) Otherwise I'll get to this when I have some time. |
@acburdine I know little about node, I will try. Hope I can do it. :) |
a good effort in my opinion(for what its worth) but according to this: |
@gompa thx for your advice, I'll try to find another way. |
@gompa Thx for your reminding me of that problem, I've rewrite the RAMDOM method with Linear Congruential Generator in stead of Math.random(). |
refs TryGhost#511 - always run create user with hashed password to fix requirements with secure installations
closes TryGhost#511 - improve password compatibility with mysql password requirements
closes TryGhost#511 - improve password compatibility with mysql password requirements
refs TryGhost#511 - always run create user with hashed password to fix requirements with secure installations
closes TryGhost#511 - improve password compatibility with mysql password requirements
closes TryGhost#511 - improve password compatibility with mysql password requirements
refs #511 - always run create user with hashed password to fix requirements with secure installations
closes #511 - improve password compatibility with mysql password requirements
Welcome to Ghost-CLI's GitHub repo! 👋🎉
Do you need help or have a question? Please come chat in Slack: https://slack.ghost.org/ 👫.
This issue is a
Summary
It seems the random password for MySQL user is too simple.
The text was updated successfully, but these errors were encountered: