Hello:
Does anyone have any idea how resolve this error on my server to install postfix with mysql support? Dedicated Server with CentOS 5.7 64 Bit.
I get this dependency information when trying to use the command yum-y install postfix
Error: Missing Dependency: libmysqlclient.so.15()(64bit) is needed by package 2:postfix-2.3.3-2.3.centos.mysql_pgsql.x86_64 (centosplus) Error: Missing Dependency: libmysqlclient.so.15(libmysqlclient_15)(64bit) is needed by package 2:postfix-2.3.3-2.3.centos.mysql_pgsql.x86_64 (centosplus) You could try using --skip-broken to work around the problem You could try running: package-cleanup --problems package-cleanup --dupes rpm -Va --nofiles --nodigest At the command below: root@server [/tmp]# ldconfig -p | grep libmysqlclient.so.15 libmysqlclient.so.15 (libc6,x86-64) => /usr/lib/libmysqlclient.so.15 libmysqlclient.so.15 (libc6,x86-64) => /usr/lib64/libmysqlclient.so.15
I appreciate any information.
Thanks
Have you tried removing the currently installed libmysql and the trying to install postfix? Perhaps yum can then see the missing dependency (because you removed it) and resolve it sanely?
On 29 September 2011 23:05, Silvio Tadeu silvio.inner@hotmail.com wrote:
Hello:
Does anyone have any idea how resolve this error on my server to install postfix with mysql support? Dedicated Server with CentOS 5.7 64 Bit.
I get this dependency information when trying to use the command yum-y install postfix
Error: Missing Dependency: libmysqlclient.so.15()(64bit) is needed by package 2:postfix-2.3.3-2.3.centos.mysql_pgsql.x86_64 (centosplus) Error: Missing Dependency: libmysqlclient.so.15(libmysqlclient_15)(64bit) is needed by package 2:postfix-2.3.3-2.3.centos.mysql_pgsql.x86_64 (centosplus) You could try using --skip-broken to work around the problem You could try running: package-cleanup --problems package-cleanup --dupes rpm -Va --nofiles --nodigest At the command below: root@server [/tmp]# ldconfig -p | grep libmysqlclient.so.15 libmysqlclient.so.15 (libc6,x86-64) => /usr/lib/libmysqlclient.so.15 libmysqlclient.so.15 (libc6,x86-64) => /usr/lib64/libmysqlclient.so.15
I appreciate any information.
Thanks _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Hi Michael:
Excuse me for sure now, but you can remove the libmysql, without removing the MySQL?
Date: Thu, 29 Sep 2011 23:34:08 +0100 From: mrcrilly@gmail.com To: centos@centos.org Subject: Re: [CentOS] Error installing Postfix - Mysql Support
Have you tried removing the currently installed libmysql and the trying to install postfix? Perhaps yum can then see the missing dependency (because you removed it) and resolve it sanely?
On 29 September 2011 23:05, Silvio Tadeu silvio.inner@hotmail.com wrote:
Hello:
Does anyone have any idea how resolve this error on my server to install postfix with mysql support? Dedicated Server with CentOS 5.7 64 Bit.
I get this dependency information when trying to use the command yum-y install postfix
Error: Missing Dependency: libmysqlclient.so.15()(64bit) is needed by package 2:postfix-2.3.3-2.3.centos.mysql_pgsql.x86_64 (centosplus) Error: Missing Dependency: libmysqlclient.so.15(libmysqlclient_15)(64bit) is needed by package 2:postfix-2.3.3-2.3.centos.mysql_pgsql.x86_64 (centosplus) You could try using --skip-broken to work around the problem You could try running: package-cleanup --problems package-cleanup --dupes rpm -Va --nofiles --nodigest At the command below: root@server [/tmp]# ldconfig -p | grep libmysqlclient.so.15 libmysqlclient.so.15 (libc6,x86-64) => /usr/lib/libmysqlclient.so.15 libmysqlclient.so.15 (libc6,x86-64) => /usr/lib64/libmysqlclient.so.15
I appreciate any information.
Thanks _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
From: Silvio Tadeu silvio.inner@hotmail.com
root@server [/tmp]# ldconfig -p | grep libmysqlclient.so.15 libmysqlclient.so.15 (libc6,x86-64) => /usr/lib/libmysqlclient.so.15 libmysqlclient.so.15 (libc6,x86-64) => /usr/lib64/libmysqlclient.so.15
How come an x86_64 lib appears in your /lib/ ? $ /sbin/ldconfig -p | grep libmysqlclient.so.15 libmysqlclient.so.15 (libc6,x86-64) => /usr/lib64/mysql/libmysqlclient.so.15 libmysqlclient.so.15 (libc6) => /usr/lib/mysql/libmysqlclient.so.15 $ rpm -ql mysql.i386 | grep libmysqlclient.so.15 /usr/lib/mysql/libmysqlclient.so.15 /usr/lib/mysql/libmysqlclient.so.15.0.0 $ rpm -ql mysql.x86_64 | grep libmysqlclient.so.15 /usr/lib64/mysql/libmysqlclient.so.15 /usr/lib64/mysql/libmysqlclient.so.15.0.0
JD