79139962

Date: 2024-10-30 07:07:45
Score: 0.5
Natty:
Report link

I don't have enough reputation to add a comment, but just an extra note (add on to the amazing answer by emkey08), if the zip archive you download is 8.4 or later, the 'mysql_native_password' plugin is deprecated, and for version 9.0.0 onwards it is removed, so you can use 'caching_sha2_password' plugin instead.

ALTER USER root@localhost IDENTIFIED WITH caching_sha2_password BY '';
ALTER USER pma@localhost IDENTIFIED WITH caching_sha2_password BY '';

more info on the Caching SHA-2 plugin

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (1.5): I don't have enough reputation
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jesher