Thank you all for the replies.
Modified the scripts to print out the error message
"Client does not support authentication protocol requested by server; consider upgrading MySQL client ... "
Did a google on it, "MySQL 4.1 and up uses an authentication protocol based on a password hashing algorithm that is incompatible with that used by older clients"
" Reset the password to pre-4.1 style for each user that needs to use a pre-4.1 client program. This can be done using the SET PASSWORD statement and the OLD_PASSWORD() function:
mysql> SET PASSWORD FOR
-> 'some_user'@'some_host' = OLD_PASSWORD('newpwd'); "
Time for me to read more documentation on MySQL 4.1.10....
Once again, thank you for the replies.
