I'm trying install the MySQL Client libraries for the Perl Mod of the same name but when I run
sudo rpm --install -v --allfiles MySQL-client-5.5.16-1.linux2.6.i386.rpm
and querying the rpm database shows the package installed, but the lib files aren't there.
rpm -qa | grep -i mysql
MySQL-client-5.5.16-1.linux2.6
ll /usr/lib/mysql
total 4.0K
4.0K drwxr-xr-x 3 root root 4.0K Oct 11 09:49 plugin/
I'm not finding the files in /usr/lib
ls -ld /usr/lib/*mysql*
drwxr-xr-x 3 root root 4.0K Oct 11 09:49 /usr/lib/mysql
perlstation:~\ ->
Here's the results of rpm -qil MySQL-client
rpm -qil MySQL-client
Name : MySQL-client Relocations: (not relocatable)
Version : 5.5.16 Vendor: Oracle and/or its affiliates
Release : 1.linux2.6 Build Date: Fri 09 Sep 2011 11:27:55 AM CDT
Install Date: Tue 11 Oct 2011 02:38:14 PM CDT Build Host: loki32
Group : Applications/Databases Source RPM: MySQL-5.5.16-1.linux2.6.src.rpm
Size : 53026574 License: Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. Under GPL license as shown in the Description field.
Signature : DSA/SHA1, Wed 14 Sep 2011 03:13:49 AM CDT, Key ID 8c718d3b5072e1f5
Packager : MySQL Build Team <build@mysql.com>
URL : http://www.mysql.com/
Summary : MySQL - Client
Description :
This package contains the standard MySQL clients and administration tools.
For a description of MySQL see the base MySQL RPM or http://www.mysql.com/
/usr/bin/msql2mysql
/usr/bin/mysql
/usr/bin/mysql_find_rows
/usr/bin/mysql_waitpid
/usr/bin/mysqlaccess
/usr/bin/mysqlaccess.conf
/usr/bin/mysqladmin
/usr/bin/mysqlbinlog
/usr/bin/mysqlcheck
/usr/bin/mysqldump
/usr/bin/mysqlimport
/usr/bin/mysqlshow
/usr/bin/mysqlslap
/usr/share/man/man1/msql2mysql.1.gz
/usr/share/man/man1/mysql.1.gz
/usr/share/man/man1/mysql_find_rows.1.gz
/usr/share/man/man1/mysql_waitpid.1.gz
/usr/share/man/man1/mysqlaccess.1.gz
/usr/share/man/man1/mysqladmin.1.gz
/usr/share/man/man1/mysqlbinlog.1.gz
/usr/share/man/man1/mysqlcheck.1.gz
/usr/share/man/man1/mysqldump.1.gz
/usr/share/man/man1/mysqlimport.1.gz
/usr/share/man/man1/mysqlshow.1.gz
/usr/share/man/man1/mysqlslap.1.gz
perlstation:~\ ->
I'm at a loss here.
rpm -qil MySQL-clientshow? – Gilles Oct 12 '11 at 21:31-ipart? Specifically, check what packagesMySQL-clientdepends on. There's probably a package likelibmysqlclient14that contains the library you want. And please post the output ofls -ld /usr/lib/*mysql*(this exact command, please, not another one that doesn't work). – Gilles Oct 12 '11 at 22:31