Will remove the error with the missing mysql_old_password plugin ?

No, this is how I understand it ;

Support for pre-4.1 password hashes was removed in MySQL 5.7.5
Strawberry Perl 5.24.4.1 is compiled with mysql-5.7.16 so will not work with any user account that has a short (16 byte) password hash like your current one.
It's the version of mysql library that's important not the version of the DBD-mysql module.

These versions should work with 16-byte hash (or 41-byte hash)

Perl 5.20.3   (2016-03-08) comes with DBD-mysql 4.033 and mysql-5.1.44 so post 4.1 and pre 5.7.5
Perl 5.24.0.1 (2016-05-11) comes with DBD-mysql 4.033 and mysql-5.1.44 so post 4.1 and pre 5.7.5

This version should work only with 41-byte hash.

Perl 5.24.1.1 (2017-01-16) comes with DBD-mysql 4.041 and mysql-5.7.16 so post 5.7.5.

To use perl 5.24.1.1 either

1. For existing user (with 16-byte hash) generate a new 41-byte hash using 
     SET PASSWORD FOR 'some_user'@'some_host' = PASSWORD('password');

   If you do that any existing pre-4.1 client will not be able to use that user account.
   
   For info the first production version of mysql-4.1.7 was released
   in October 2004.
  
   note. PASSWORD_OLD('password') generates a 16-byte hash.
  
or 

2  Create a new user account (which will be by default a 41-byte hash) and use that.    
   Any pre-4.1 clients could continue to use the old account.
poj

In reply to Re^11: plugin 'mysql_old_password' cannot be loaded by poj
in thread plugin 'mysql_old_password' cannot be loaded by frazap

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.