Hi,
Trying to install the Percona toolkit RPM and getting dependency errors:
rpm -isv percona-toolkit-2.0.3-1.noarch.rpm
error: Failed dependencies:
perl(DBD::mysql) >= 1.0 is needed by percona-toolkit-2.0.3-1.noarch
perl(Term::ReadKey) >= 2.10 is needed by percona-toolkit-2.0.3-1.noarch
I've successfully installed (or so I think) both DBD::mysql and Term::ReadKey, for example:
running: perl -e 'use DBD::mysql; print $DBD::mysql::VERSION,"\n";'
outputs: 4.020
running: perl -e 'use Term::ReadKey; print $Term::ReadKey::VERSION,"\n";'
outputs: 2.30
So from what I can tell, in both cases, the library versions are above the required version numbers.
Is this not the correct way to use this RPM?
Thanks
Trying to install the Percona toolkit RPM and getting dependency errors:
rpm -isv percona-toolkit-2.0.3-1.noarch.rpm
error: Failed dependencies:
perl(DBD::mysql) >= 1.0 is needed by percona-toolkit-2.0.3-1.noarch
perl(Term::ReadKey) >= 2.10 is needed by percona-toolkit-2.0.3-1.noarch
I've successfully installed (or so I think) both DBD::mysql and Term::ReadKey, for example:
running: perl -e 'use DBD::mysql; print $DBD::mysql::VERSION,"\n";'
outputs: 4.020
running: perl -e 'use Term::ReadKey; print $Term::ReadKey::VERSION,"\n";'
outputs: 2.30
So from what I can tell, in both cases, the library versions are above the required version numbers.
Is this not the correct way to use this RPM?
Thanks
Comment