Symptoms
When attempting to create a new MySQL database user in cPanel, the interface can show:
CONFIG_TEXT: The request failed. (Error ID: f7kx27) Ask your hosting provider to research this error in cPanel & WHM’s main error log.
You may also experience a similar error when accessing phpMyAdmin.
When checking the cPanel error_log, a message similar to the following is found:
CONFIG_TEXT: info [cpwrapd] ERROR in MySQL query :(XID vwqrz2) The system received an error from the “MySQL” database “mysql”: 1819 (Your password does not satisfy the current policy requirements)
Cause
This issue can be caused by having the "validate_password" MySQL plugin enabled.
Resolution
To remove the "validate_password" plugin:
- Log in to the server via SSH or WHM's Terminal as the
rootuser Verify if the plugin is enabled by running the following command:
# mysql -sse "SELECT * FROM mysql.component"
2 1 file://component_validate_passwordIf the plugin is enabled, you can remove it by running the following command:
# mysql -sse "UNINSTALL COMPONENT 'file://component_validate_password';"
- Log in to the server via SSH or WHM's Terminal as the
rootuser Verify if the plugin is enabled by running the following command:
# mysql -sse "SELECT name FROM mysql.plugin"
validate_passwordIf the plugin is enabled, you can remove it by running the following command:
# mysql -e "uninstall plugin validate_password;"
Comments
0 comments
Article is closed for comments.