CentOS Icon CentOS Logo
CentOS Text
   
  
www.centos.org Forum Index
   CentOS 5 - General Support
  Yum error in update

 

 Bottom   Previous Topic   Next Topic
  •  Rate Thread
      Rate this Thread
      Excellent
      Good
      Average
      Bad
      Terrible
Poster Thread
  •  pschaff
      pschaff
Re: Yum error in update
#11
Moderator
Joined: 2006/12/13
From Tidewater, Virginia, North America
Posts: 18773
You did not define the excludes for [updates] - a significant problem.

As I said earlier, priorities may be a problem if you do want to replace core packages. For example, your current setup with [centosplus] at priority=2 effectively excludes everything in that repo as it contains only packages that update those in [base] and [updates]. Similarly nothing in Remi can replace core packages except for those explicitly excluded which may cause problems with getting required dependencies for Remi. You may need to keep adding to the excludes list to get things to work properly. Running "yum --noplugins update" after installing Remi packages may be revealing. Only say yes to that if you agree with the actions shown.
_________________
Phil

Recommended reading: FAQ & Readme first ; Search hint: google "your topic site:centos.org"; Smart Questions
Posted on: 2012/5/15 15:39
Create PDF from Post Print
Top
  •  matthes138
      matthes138
Re: Yum error in update
#10
Newbie
Joined: 2012/4/19
From
Posts: 5
Here are my repo config's can you see any issues listed below or changes you would recommend?

>>remi.repo
[remi]
name=Les RPM de remi pour Enterprise Linux $releasever - $basearch
#baseurl=http://rpms.famillecollet.com/enterprise/$releasever/remi/$basearch/
mirrorlist=http://rpms.famillecollet.com/enterprise/$releasever/remi/mirror
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi
failovermethod=priority
priority=3

[remi-test]
name=Les RPM de remi en test pour Enterprise Linux $releasever - $basearch
#baseurl=http://rpms.famillecollet.com/enterprise/$releasever/test/$basearch/
mirrorlist=http://rpms.famillecollet.com/enterprise/$releasever/test/mirror
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi

>>epel.repo
[epel]
name=Extra Packages for Enterprise Linux 5 - $basearch
#baseurl=http://download.fedoraproject.org/pub/epel/5/$basearch
mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-5&arch=$basearch
failovermethod=priority
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL
priority=3

[epel-debuginfo]
name=Extra Packages for Enterprise Linux 5 - $basearch - Debug
#baseurl=http://download.fedoraproject.org/pub/epel/5/$basearch/debug
mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-debug-5&arch=$basearch
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL
gpgcheck=1

[epel-source]
name=Extra Packages for Enterprise Linux 5 - $basearch - Source
#baseurl=http://download.fedoraproject.org/pub/epel/5/SRPMS
mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-source-5&arch=$basearch
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL
gpgcheck=1

>>CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client. You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#

[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
priority=1
exclude=*php* *mysql*

#released updates
[updates]
name=CentOS-$releasever - Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5

#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
#baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
priority=1
exclude=php* *mysql*

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
#baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
priority=2
exclude=php* *mysql*

#contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib
#baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
exclude=php* *mysql*
Posted on: 2012/5/15 15:16
Create PDF from Post Print
Top
  •  pschaff
      pschaff
Re: Yum error in update
#9
Moderator
Joined: 2006/12/13
From Tidewater, Virginia, North America
Posts: 18773
Start with "man yum.conf". Edit /etc/yum.repos.d/CentOS-Base.repo and add exclude= lines something like the following:
[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
exclude=php* mysql*
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

#released updates 
[updates]
name=CentOS-$releasever - Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
exclude=php* mysql*
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

Thanks to markkuk for the correction about EPEL. You may still want to consider use of yum-plugin-priorities with multiple 3rd party repos, but since you do want to replace core packages that may be more trouble than it is worth if only using Remi and EPEL 3rd party repos.
_________________
Phil

Recommended reading: FAQ & Readme first ; Search hint: google "your topic site:centos.org"; Smart Questions
Posted on: 2012/5/14 18:06
Create PDF from Post Print
Top
  •  matthes138
      matthes138
Re: Yum error in update
#8
Newbie
Joined: 2012/4/19
From
Posts: 5
thank you for your reply. How do i go about excluding them?
Posted on: 2012/5/14 17:29
Create PDF from Post Print
Top
  •  markkuk
      markkuk
Re: Yum error in update
#7
Professional Board Member
Joined: 2007/9/7
From Finland
Posts: 648
Quote:

pschaff wrote:
The problem is due to having two or more incompatible/conflicting 3rd party repos enabled - EPEL and Remi at least.

Remi requires EPEL, so they aren't incompatible or conflicting with each other.
The problem is that php packages from Remi conflict with php53 packages from base CentOS. If you want to use the Remi packages, you need to exclude the CentOS ones.
Posted on: 2012/5/11 22:48
Create PDF from Post Print
Top
  •  pschaff
      pschaff
Re: Yum error in update
#6
Moderator
Joined: 2006/12/13
From Tidewater, Virginia, North America
Posts: 18773
A lot more than we really wanted/needed to see. The last few lines would have been sufficient. If you must show long listings please use a pastebin site such as http://pastebin.centos.org/

The problem is due to having two or more incompatible/conflicting 3rd party repos enabled - EPEL and Remi at least.

Please read about Installing Software and Repositories, and note the warnings and advice about installing and configuring the yum priorities plugin. Non-core repos should have a higher numeric value, which is a lower priority. Lower is "better" as in golf scores.

Decide which repo you want to use for PHP packages, probably Remi, and disable the other, or set it at a lower priority, and/or exclude the packages you want to get from the other. You may also have to remove the conflicting php packages before updating php53 packages.
_________________
Phil

Recommended reading: FAQ & Readme first ; Search hint: google "your topic site:centos.org"; Smart Questions
Posted on: 2012/5/11 18:42
Create PDF from Post Print
Top
  •  matthes138
      matthes138
Re: Yum error in update
#5
Newbie
Joined: 2012/4/19
From
Posts: 5
Here is the output of the yum update, thank you for your replies

---> Package pam_pkcs11.i386 0:0.5.3-26.el5 set to be updated
---> Package pam_pkcs11.x86_64 0:0.5.3-26.el5 set to be updated
---> Package parted.i386 0:1.8.1-29.el5 set to be updated
---> Package parted.x86_64 0:1.8.1-29.el5 set to be updated
---> Package pciutils.x86_64 0:3.1.7-5.el5 set to be updated
---> Package perl-Path-Class.noarch 0:0.25-1.el5 set to be updated
---> Package php.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-PHPMailer.noarch 0:5.2.1-1.el5.remi set to be updated
---> Package php-adodb.noarch 0:5.15-1.el5.remi set to be updated
---> Package php-bartlett-PHP-CompatInfo.noarch 0:2.3.0-1.el5.remi set to be updated
---> Package php-bartlett-PHP-Reflect.noarch 0:1.3.0-1.el5.remi set to be updated
---> Package php-bcmath.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-cli.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-common.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-dba.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-deepend-Mockery.noarch 0:0.7.2-1.el5.remi set to be updated
---> Package php-devel.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-eaccelerator.x86_64 1:0.9.6.1-14.el5.remi set to be updated
---> Package php-embedded.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-enchant.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-fpm.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-gd.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-imap.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-interbase.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-intl.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-ldap.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-mbstring.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-mcrypt.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-mssql.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-mysqlnd.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-odbc.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-pdepend-PHP-Depend.noarch 0:1.0.7-1.el5.remi set to be updated
---> Package php-pdo.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-pear.noarch 1:1.9.4-7.el5.remi set to be updated
---> Package php-pear-Auth-Yubico.noarch 0:2.4-1.el5.remi set to be updated
---> Package php-pear-CAS.noarch 0:1.3.1-1.el5.remi set to be updated
---> Package php-pear-Date-Holidays.noarch 0:0.21.6-1.el5.remi set to be updated
---> Package php-pear-File.noarch 0:1.4.1-1.el5.remi set to be updated
---> Package php-pear-HTML-QuickForm-ElementGrid.noarch 0:0.1.2-1.el5.remi set to be updated
---> Package php-pear-Mail-Mime.noarch 0:1.8.3-1.el5.remi set to be updated
---> Package php-pear-Net-IPv4.noarch 0:1.3.4-1.el5.remi set to be updated
---> Package php-pear-Numbers-Words.noarch 0:0.16.4-1.el5.remi set to be updated
---> Package php-pear-PEAR-Command-Packaging.noarch 0:0.3.0-1.el5.remi set to be updated
---> Package php-pear-PHP-CodeSniffer.noarch 0:1.3.3-1.el5.remi set to be updated
---> Package php-pear-PhpDocumentor.noarch 0:1.4.4-1.el5.remi set to be updated
---> Package php-pear-phing.noarch 0:2.4.12-1.el5.remi set to be updated
---> Package php-pecl-mailparse.x86_64 0:2.1.6-1.el5.remi set to be updated
---> Package php-pecl-memcached.x86_64 0:2.0.1-1.el5.remi set to be updated
---> Package php-pecl-mongo.x86_64 0:1.2.10-1.el5.remi set to be updated
---> Package php-pecl-mysqlnd-ms.x86_64 0:1.3.2-1.el5.remi set to be updated
---> Package php-pecl-mysqlnd-qc.x86_64 0:1.1.1-1.el5.remi set to be updated
---> Package php-pecl-sphinx.x86_64 0:1.2.0-1.el5.remi set to be updated
---> Package php-pecl-xdebug.x86_64 0:2.1.4-1.el5.remi set to be updated
---> Package php-pecl-yaml.x86_64 0:1.1.0-1.el5.remi set to be updated
---> Package php-pgsql.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-phpmd-PHP-PMD.noarch 0:1.3.3-1.el5.remi set to be updated
---> Package php-phpunit-PHP-CodeCoverage.noarch 0:1.1.2-1.el5.remi set to be updated
---> Package php-phpunit-PHP-TokenStream.noarch 0:1.1.3-1.el5.remi set to be updated
---> Package php-phpunit-PHPUnit-Selenium.noarch 0:1.2.6-1.el5.remi set to be updated
---> Package php-phpunit-PHPUnit-SkeletonGenerator.noarch 0:1.1.0-1.el5.remi set to be updated
---> Package php-phpunit-phpdcd.noarch 0:0.9.3-1.el5.remi set to be updated
---> Package php-process.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-pspell.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-recode.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-snmp.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-soap.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-sqlite.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-swift-Swift.noarch 0:4.1.7-1.el5.remi set to be updated
---> Package php-tidy.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-xml.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php-xmlrpc.x86_64 0:5.3.13-1.el5.remi set to be updated
---> Package php53-mapi.x86_64 0:7.0.6-1.el5 set to be updated
---> Package phpMyAdmin.noarch 0:3.5.1-1.el5.remi set to be updated
---> Package phpPgAdmin.noarch 0:5.0.4-1.el5 set to be updated
---> Package poppler.x86_64 0:0.5.4-19.el5 set to be updated
---> Package poppler-utils.x86_64 0:0.5.4-19.el5 set to be updated
---> Package popt.i386 0:1.10.2.3-27.el5 set to be updated
---> Package popt.x86_64 0:1.10.2.3-27.el5 set to be updated
---> Package procps.x86_64 0:3.2.7-18.el5 set to be updated
---> Package python.x86_64 0:2.4.3-46.el5 set to be updated
---> Package python-libs.x86_64 0:2.4.3-46.el5 set to be updated
---> Package pyxf86config.x86_64 0:0.3.31-3.el5 set to be updated
---> Package rhpl.x86_64 0:0.194.1-2 set to be updated
---> Package rhpxl.x86_64 0:0.41.1-12.el5 set to be updated
---> Package rmt.x86_64 0:0.4b41-6.el5 set to be updated
---> Package rng-utils.x86_64 1:2.0-5.el5 set to be updated
---> Package rpm.x86_64 0:4.4.2.3-27.el5 set to be updated
---> Package rpm-libs.x86_64 0:4.4.2.3-27.el5 set to be updated
---> Package rpm-python.x86_64 0:4.4.2.3-27.el5 set to be updated
---> Package sabayon.x86_64 0:2.12.4-9.el5 set to be updated
---> Package sabayon-apply.x86_64 0:2.12.4-9.el5 set to be updated
---> Package selinux-policy.noarch 0:2.4.6-327.el5 set to be updated
---> Package selinux-policy-targeted.noarch 0:2.4.6-327.el5 set to be updated
---> Package setup.noarch 0:2.5.58-9.el5 set to be updated
---> Package shadow-utils.x86_64 2:4.0.17-20.el5 set to be updated
---> Package smartmontools.x86_64 1:5.38-3.el5 set to be updated
---> Package sos.noarch 0:1.7-9.62.el5 set to be updated
---> Package sqlite2.x86_64 0:2.8.17-7.el5 set to be updated
---> Package sudo.x86_64 0:1.7.2p1-13.el5 set to be updated
---> Package syslinux.x86_64 0:3.11-7 set to be updated
---> Package system-config-date.noarch 0:1.8.12-5.el5.centos set to be updated
---> Package system-config-display.noarch 0:1.0.48-4.el5 set to be updated
---> Package system-config-network.noarch 0:1.3.99.21-1.el5 set to be updated
---> Package system-config-network-tui.noarch 0:1.3.99.21-1.el5 set to be updated
---> Package system-config-nfs.noarch 0:1.3.23-2.el5 set to be updated
---> Package system-config-users.noarch 0:1.2.51-7.el5 set to be updated
---> Package tar.x86_64 2:1.15.1-31.el5 set to be updated
---> Package tomcat5-servlet-2.4-api.x86_64 0:5.5.23-0jpp.22.el5_7 set to be updated
--> Processing Dependency: libodbc.so.1()(64bit) for package: php-odbc
--> Processing Dependency: libodbc.so.1()(64bit) for package: unixODBC
--> Processing Dependency: libodbcinst.so.1()(64bit) for package: unixODBC
--> Processing Dependency: libodbcinst.so.1()(64bit) for package: freetds
---> Package unixODBC.x86_64 0:2.2.11-10.el5 set to be updated
---> Package util-linux.x86_64 0:2.13-0.59.el5 set to be updated
---> Package vixie-cron.x86_64 4:4.1-81.el5 set to be updated
---> Package vsftpd.x86_64 0:2.0.5-24.el5 set to be updated
---> Package xen-libs.x86_64 0:3.0.3-135.el5 set to be updated
---> Package xinetd.x86_64 2:2.3.14-16.el5 set to be updated
---> Package xkeyboard-config.noarch 0:0.8-10.el5 set to be updated
---> Package xorg-x11-drv-i810.x86_64 0:1.6.5-9.40.el5 set to be updated
---> Package xorg-x11-drv-mga.x86_64 0:1.4.13-5.el5 set to be updated
---> Package xorg-x11-server-Xnest.x86_64 0:1.1.1-48.90.el5 set to be updated
---> Package xorg-x11-server-Xorg.x86_64 0:1.1.1-48.90.el5 set to be updated
---> Package xulrunner.i386 0:1.9.2.26-1.el5_7 set to be updated
---> Package xulrunner.x86_64 0:1.9.2.26-1.el5_7 set to be updated
---> Package yp-tools.x86_64 0:2.9-2.el5 set to be updated
---> Package yum.noarch 0:3.2.22-39.el5.centos set to be updated
---> Package yum-fastestmirror.noarch 0:1.1.16-21.el5.centos set to be updated
---> Package yum-priorities.noarch 0:1.1.16-21.el5.centos set to be updated
---> Package yum-utils.noarch 0:1.1.16-21.el5.centos set to be updated
---> Package zarafa-client.x86_64 0:7.0.6-1.el5 set to be updated
---> Package zarafa-common.x86_64 0:7.0.6-1.el5 set to be updated
--> Running transaction check
---> Package unixODBC-libs.x86_64 0:2.2.11-10.el5 set to be updated
epel/filelists_db | 5.4 MB 00:02
remi/filelists_db | 528 kB 00:01
updates/filelists_db | 1.1 MB 00:01
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
Package Arch Version Repository
Size
================================================================================
Installing:
kernel x86_64 2.6.18-308.el5 base 21 M
php-pear-PhpDocumentor noarch 1.4.4-1.el5.remi remi 1.5 M
replacing phpdoc.noarch 1.4.3-1.el5.remi

Updating:
PyXML x86_64 0.8.4-6.el5 base 1.0 M
acl x86_64 2.2.39-8.el5 base 69 k
acpid x86_64 1.0.4-12.el5 base 25 k
alsa-utils x86_64 1.0.17-6.el5 base 2.3 M
aspell i386 12:0.60.3-12 base 946 k
aspell x86_64 12:0.60.3-12 base 959 k
audit x86_64 1.8-2.el5 base 372 k
audit-libs i386 1.8-2.el5 base 80 k
audit-libs x86_64 1.8-2.el5 base 80 k
audit-libs-python x86_64 1.8-2.el5 base 82 k
autofs x86_64 1:5.0.1-0.rc2.163.el5 base 939 k
bind x86_64 30:9.3.6-20.P1.el5 base 989 k
bind-chroot x86_64 30:9.3.6-20.P1.el5 base 47 k
bind-libs x86_64 30:9.3.6-20.P1.el5 base 896 k
bind-utils x86_64 30:9.3.6-20.P1.el5 base 180 k
binutils x86_64 2.17.50.0.6-20.el5 base 2.9 M
busybox x86_64 1:1.2.0-13.el5.centos base 1.2 M
cdparanoia-libs i386 alpha9.8-28 base 50 k
cdparanoia-libs x86_64 alpha9.8-28 base 52 k
centos-release x86_64 10:5-8.el5.centos base 20 k
centos-release-notes x86_64 5.8-0 base 40 k
comps-extras noarch 11.4-1.el5.centos base 48 k
cpp x86_64 4.1.2-52.el5 base 2.9 M
crash x86_64 5.1.8-1.el5.centos base 2.3 M
cups x86_64 1:1.3.7-30.el5 base 3.1 M
cups-libs i386 1:1.3.7-30.el5 base 200 k
cups-libs x86_64 1:1.3.7-30.el5 base 196 k
curl i386 7.15.5-15.el5 base 235 k
curl x86_64 7.15.5-15.el5 base 232 k
device-mapper i386 1.02.67-2.el5 base 799 k
device-mapper x86_64 1.02.67-2.el5 base 831 k
device-mapper-event x86_64 1.02.67-2.el5 base 24 k
device-mapper-multipath x86_64 0.4.7-48.el5 base 3.0 M
dhclient x86_64 12:3.0.5-31.el5 base 286 k
dump x86_64 0.4b41-6.el5 base 1.0 M
ecryptfs-utils i386 75-8.el5 base 159 k
ecryptfs-utils x86_64 75-8.el5 base 164 k
esound i386 1:0.2.36-4 base 130 k
esound x86_64 1:0.2.36-4 base 131 k
evince x86_64 0.6.0-17.el5 base 930 k
fetchmail x86_64 6.3.6-4.el5 base 536 k
file x86_64 4.17-21 base 320 k
firefox i386 3.6.26-1.el5.centos base 15 M
firefox x86_64 3.6.26-1.el5.centos base 15 M
firstboot x86_64 1.4.27.9-1.el5.centos base 377 k
firstboot-tui x86_64 1.4.27.9-1.el5.centos base 189 k
ftp x86_64 0.17-37.el5 base 57 k
gamin i386 0.1.7-10.el5 base 120 k
gamin x86_64 0.1.7-10.el5 base 129 k
gamin-python x86_64 0.1.7-10.el5 base 56 k
gawk x86_64 3.1.5-15.el5 base 1.8 M
gdm x86_64 1:2.16.0-59.el5.centos base 3.8 M
ghostscript x86_64 8.70-14.el5 base 8.9 M
glibc i686 2.5-81 base 5.3 M
glibc x86_64 2.5-81 base 4.8 M
glibc-common x86_64 2.5-81 base 16 M
glx-utils x86_64 6.5.1-7.10.el5 base 32 k
gnome-system-monitor x86_64 2.16.0-4.el5 base 1.3 M
groff x86_64 1.18.1.1-13.el5 base 1.9 M
hmaccalc x86_64 0.9.6-4.el5 base 22 k
httpd x86_64 2.2.3-63.el5.centos base 1.3 M
httpd-manual x86_64 2.2.3-63.el5.centos base 816 k
hwdata noarch 0.213.26-1.el5 base 423 k
ifd-egate x86_64 0.05-17.el5 base 23 k
initscripts x86_64 8.45.42-1.el5.centos base 1.6 M
iproute x86_64 2.6.18-13.el5 base 823 k
iptables x86_64 1.3.5-9.1.el5 base 247 k
iptables-ipv6 x86_64 1.3.5-9.1.el5 base 165 k
iscsi-initiator-utils x86_64 6.2.0.872-13.el5 base 1.0 M
kexec-tools x86_64 1.102pre-154.el5 base 584 k
kpartx x86_64 0.4.7-48.el5 base 444 k
krb5-libs i386 1.6.1-70.el5 base 669 k
krb5-libs x86_64 1.6.1-70.el5 base 681 k
krb5-workstation x86_64 1.6.1-70.el5 base 917 k
ksh x86_64 20100621-5.el5 base 1.3 M
kudzu x86_64 1.2.57.1.26-3.el5.centos base 233 k
less x86_64 436-9.el5 base 108 k
lftp x86_64 3.7.11-7.el5 base 957 k
libXcursor i386 1.1.7-1.2 base 32 k
libXcursor x86_64 1.1.7-1.2 base 32 k
libacl i386 2.2.39-8.el5 base 19 k
libacl x86_64 2.2.39-8.el5 base 20 k
libgcc i386 4.1.2-52.el5 base 97 k
libgcc x86_64 4.1.2-52.el5 base 99 k
libgcj x86_64 4.1.2-52.el5 base 18 M
libicu x86_64 3.6-5.16.1 base 5.2 M
libmapi x86_64 7.0.6-1.el5 epel 881 k
libmemcached x86_64 1.0.4-1.el5.remi remi 202 k
libstdc++ i386 4.1.2-52.el5 base 363 k
libstdc++ x86_64 4.1.2-52.el5 base 354 k
libusb i386 0.1.12-6.el5 base 26 k
libusb x86_64 0.1.12-6.el5 base 27 k
libvirt x86_64 0.8.2-25.el5 base 3.2 M
lsof x86_64 4.78-6 base 328 k
lvm2 x86_64 2.02.88-7.el5 base 3.3 M
man-pages noarch 2.39-20.el5 base 4.2 M
man-pages-overrides noarch 5.8.3-2.el5 base 80 k
mesa-libGL x86_64 6.5.1-7.10.el5 base 8.7 M
mesa-libGLU x86_64 6.5.1-7.10.el5 base 224 k
microcode_ctl x86_64 2:1.17-1.56.el5 base 548 k
mkinitrd i386 5.1.19.6-75.el5 base 480 k
mkinitrd x86_64 5.1.19.6-75.el5 base 469 k
mktemp x86_64 3:1.5-24.el5 base 14 k
mod_ssl x86_64 1:2.2.3-63.el5.centos base 95 k
mysql x86_64 5.5.24-1.el5.remi remi 7.4 M
mysql-bench x86_64 5.5.24-1.el5.remi remi 502 k
mysql-embedded x86_64 5.5.24-1.el5.remi remi 3.3 M
mysql-libs x86_64 5.5.24-1.el5.remi remi 1.1 M
mysql-server x86_64 5.5.24-1.el5.remi remi 13 M
mysql-test x86_64 5.5.24-1.el5.remi remi 9.2 M
nash x86_64 5.1.19.6-75.el5 base 1.1 M
net-snmp x86_64 1:5.3.2.2-17.el5 base 706 k
net-snmp-libs x86_64 1:5.3.2.2-17.el5 base 1.3 M
net-tools x86_64 1.60-82.el5 base 368 k
nfs-utils x86_64 1:1.0.9-60.el5 base 409 k
nfs-utils-lib x86_64 1.0.8-7.9.el5 base 67 k
nscd x86_64 2.5-81 base 171 k
nspr i386 4.8.8-2.el5 base 120 k
nspr x86_64 4.8.8-2.el5 base 119 k
nss i386 3.12.10-8.el5 base 1.1 M
nss x86_64 3.12.10-8.el5 base 1.1 M
nss-tools x86_64 3.12.10-8.el5 base 1.2 M
nss_ldap i386 253-49.el5 base 1.4 M
nss_ldap x86_64 253-49.el5 base 1.4 M
oddjob x86_64 0.27-12.el5 base 61 k
oddjob-libs x86_64 0.27-12.el5 base 45 k
openldap i386 2.3.43-25.el5 base 298 k
openldap x86_64 2.3.43-25.el5 base 306 k
openssh x86_64 4.3p2-82.el5 base 291 k
openssh-askpass x86_64 4.3p2-82.el5 base 43 k
openssh-clients x86_64 4.3p2-82.el5 base 456 k
openssh-server x86_64 4.3p2-82.el5 base 280 k
openssl i686 0.9.8e-22.el5 base 1.5 M
openssl x86_64 0.9.8e-22.el5 base 1.4 M
pam_krb5 i386 2.2.14-22.el5 base 150 k
pam_krb5 x86_64 2.2.14-22.el5 base 149 k
pam_pkcs11 i386 0.5.3-26.el5 base 280 k
pam_pkcs11 x86_64 0.5.3-26.el5 base 290 k
parted i386 1.8.1-29.el5 base 542 k
parted x86_64 1.8.1-29.el5 base 521 k
pciutils x86_64 3.1.7-5.el5 base 112 k
perl-Path-Class noarch 0.25-1.el5 epel 41 k
php x86_64 5.3.13-1.el5.remi remi 2.8 M
php-PHPMailer noarch 5.2.1-1.el5.remi remi 93 k
php-adodb noarch 5.15-1.el5.remi remi 558 k
php-bartlett-PHP-CompatInfo noarch 2.3.0-1.el5.remi remi 820 k
php-bartlett-PHP-Reflect noarch 1.3.0-1.el5.remi remi 96 k
php-bcmath x86_64 5.3.13-1.el5.remi remi 42 k
php-cli x86_64 5.3.13-1.el5.remi remi 2.6 M
php-common x86_64 5.3.13-1.el5.remi remi 1.0 M
php-dba x86_64 5.3.13-1.el5.remi remi 63 k
php-deepend-Mockery noarch 0.7.2-1.el5.remi remi 57 k
php-devel x86_64 5.3.13-1.el5.remi remi 2.6 M
php-eaccelerator x86_64 1:0.9.6.1-14.el5.remi remi 172 k
php-embedded x86_64 5.3.13-1.el5.remi remi 1.4 M
php-enchant x86_64 5.3.13-1.el5.remi remi 34 k
php-fpm x86_64 5.3.13-1.el5.remi remi 1.4 M
php-gd x86_64 5.3.13-1.el5.remi remi 210 k
php-imap x86_64 5.3.13-1.el5.remi remi 89 k
php-interbase x86_64 5.3.13-1.el5.remi remi 116 k
php-intl x86_64 5.3.13-1.el5.remi remi 139 k
php-ldap x86_64 5.3.13-1.el5.remi remi 58 k
php-mbstring x86_64 5.3.13-1.el5.remi remi 2.3 M
php-mcrypt x86_64 5.3.13-1.el5.remi remi 49 k
php-mssql x86_64 5.3.13-1.el5.remi remi 68 k
php-mysqlnd x86_64 5.3.13-1.el5.remi remi 304 k
php-odbc x86_64 5.3.13-1.el5.remi remi 89 k
php-pdepend-PHP-Depend noarch 1.0.7-1.el5.remi remi 208 k
php-pdo x86_64 5.3.13-1.el5.remi remi 121 k
php-pear noarch 1:1.9.4-7.el5.remi remi 437 k
php-pear-Auth-Yubico noarch 2.4-1.el5.remi remi 77 k
php-pear-CAS noarch 1.3.1-1.el5.remi remi 101 k
php-pear-Date-Holidays noarch 0.21.6-1.el5.remi remi 48 k
php-pear-File noarch 1.4.1-1.el5.remi remi 13 k
php-pear-HTML-QuickForm-ElementGrid noarch 0.1.2-1.el5.remi remi 8.8 k
php-pear-Mail-Mime noarch 1.8.3-1.el5.remi remi 41 k
php-pear-Net-IPv4 noarch 1.3.4-1.el5.remi remi 10 k
php-pear-Numbers-Words noarch 0.16.4-1.el5.remi remi 65 k
php-pear-PEAR-Command-Packaging noarch 0.3.0-1.el5.remi remi 66 k
php-pear-PHP-CodeSniffer noarch 1.3.3-1.el5.remi remi 412 k
php-pear-phing noarch 2.4.12-1.el5.remi remi 484 k
php-pecl-mailparse x86_64 2.1.6-1.el5.remi remi 59 k
php-pecl-memcached x86_64 2.0.1-1.el5.remi remi 78 k
php-pecl-mongo x86_64 1.2.10-1.el5.remi remi 176 k
php-pecl-mysqlnd-ms x86_64 1.3.2-1.el5.remi remi 172 k
php-pecl-mysqlnd-qc x86_64 1.1.1-1.el5.remi remi 115 k
php-pecl-sphinx x86_64 1.2.0-1.el5.remi remi 34 k
php-pecl-xdebug x86_64 2.1.4-1.el5.remi remi 179 k
php-pecl-yaml x86_64 1.1.0-1.el5.remi remi 45 k
php-pgsql x86_64 5.3.13-1.el5.remi remi 136 k
php-phpmd-PHP-PMD noarch 1.3.3-1.el5.remi remi 60 k
php-phpunit-PHP-CodeCoverage noarch 1.1.2-1.el5.remi remi 139 k
php-phpunit-PHP-TokenStream noarch 1.1.3-1.el5.remi remi 15 k
php-phpunit-PHPUnit-Selenium noarch 1.2.6-1.el5.remi remi 40 k
php-phpunit-PHPUnit-SkeletonGenerator
noarch 1.1.0-1.el5.remi remi 16 k
php-phpunit-phpdcd noarch 0.9.3-1.el5.remi remi 9.5 k
php-process x86_64 5.3.13-1.el5.remi remi 61 k
php-pspell x86_64 5.3.13-1.el5.remi remi 34 k
php-recode x86_64 5.3.13-1.el5.remi remi 27 k
php-snmp x86_64 5.3.13-1.el5.remi remi 42 k
php-soap x86_64 5.3.13-1.el5.remi remi 280 k
php-sqlite x86_64 5.3.13-1.el5.remi remi 79 k
php-swift-Swift noarch 4.1.7-1.el5.remi remi 109 k
php-tidy x86_64 5.3.13-1.el5.remi remi 55 k
php-xml x86_64 5.3.13-1.el5.remi remi 227 k
php-xmlrpc x86_64 5.3.13-1.el5.remi remi 88 k
php53-mapi x86_64 7.0.6-1.el5 epel 223 k
phpMyAdmin noarch 3.5.1-1.el5.remi remi 6.3 M
phpPgAdmin noarch 5.0.4-1.el5 epel 1.0 M
poppler x86_64 0.5.4-19.el5 base 3.0 M
poppler-utils x86_64 0.5.4-19.el5 base 75 k
popt i386 1.10.2.3-27.el5 base 75 k
popt x86_64 1.10.2.3-27.el5 base 78 k
procps x86_64 3.2.7-18.el5 base 215 k
python x86_64 2.4.3-46.el5 base 58 k
python-libs x86_64 2.4.3-46.el5 base 5.9 M
pyxf86config x86_64 0.3.31-3.el5 base 67 k
rhpl x86_64 0.194.1-2 base 240 k
rhpxl x86_64 0.41.1-12.el5 base 106 k
rmt x86_64 0.4b41-6.el5 base 255 k
rng-utils x86_64 1:2.0-5.el5 base 17 k
rpm x86_64 4.4.2.3-27.el5 base 1.2 M
rpm-libs x86_64 4.4.2.3-27.el5 base 925 k
rpm-python x86_64 4.4.2.3-27.el5 base 64 k
sabayon x86_64 2.12.4-9.el5 base 128 k
sabayon-apply x86_64 2.12.4-9.el5 base 368 k
selinux-policy noarch 2.4.6-327.el5 base 425 k
selinux-policy-targeted noarch 2.4.6-327.el5 base 1.3 M
setup noarch 2.5.58-9.el5 base 125 k
shadow-utils x86_64 2:4.0.17-20.el5 base 1.1 M
smartmontools x86_64 1:5.38-3.el5 base 342 k
sos noarch 1.7-9.62.el5 base 162 k
sqlite2 x86_64 2.8.17-7.el5 epel 165 k
sudo x86_64 1.7.2p1-13.el5 base 358 k
syslinux x86_64 3.11-7 base 474 k
system-config-date noarch 1.8.12-5.el5.centos base 1.5 M
system-config-display noarch 1.0.48-4.el5 base 265 k
system-config-network noarch 1.3.99.21-1.el5 base 425 k
system-config-network-tui noarch 1.3.99.21-1.el5 base 2.0 M
system-config-nfs noarch 1.3.23-2.el5 base 184 k
system-config-users noarch 1.2.51-7.el5 base 355 k
tar x86_64 2:1.15.1-31.el5 base 748 k
tomcat5-servlet-2.4-api x86_64 5.5.23-0jpp.22.el5_7 base 163 k
unixODBC x86_64 2.2.11-10.el5 base 291 k
util-linux x86_64 2.13-0.59.el5 base 1.9 M
vixie-cron x86_64 4:4.1-81.el5 base 83 k
vsftpd x86_64 2.0.5-24.el5 base 141 k
xen-libs x86_64 3.0.3-135.el5 base 171 k
xinetd x86_64 2:2.3.14-16.el5 base 127 k
xkeyboard-config noarch 0.8-10.el5 base 321 k
xorg-x11-drv-i810 x86_64 1.6.5-9.40.el5 base 342 k
xorg-x11-drv-mga x86_64 1.4.13-5.el5 base 87 k
xorg-x11-server-Xnest x86_64 1.1.1-48.90.el5 base 1.4 M
xorg-x11-server-Xorg x86_64 1.1.1-48.90.el5 base 3.4 M
xulrunner i386 1.9.2.26-1.el5_7 base 12 M
xulrunner x86_64 1.9.2.26-1.el5_7 base 11 M
yp-tools x86_64 2.9-2.el5 base 74 k
yum noarch 3.2.22-39.el5.centos base 1.0 M
yum-fastestmirror noarch 1.1.16-21.el5.centos base 21 k
yum-priorities noarch 1.1.16-21.el5.centos base 16 k
yum-utils noarch 1.1.16-21.el5.centos base 74 k
zarafa-client x86_64 7.0.6-1.el5 epel 1.2 M
zarafa-common x86_64 7.0.6-1.el5 epel 21 k
Installing for dependencies:
unixODBC-libs x86_64 2.2.11-10.el5 base 554 k

Transaction Summary
================================================================================
Install 3 Package(s)
Upgrade 263 Package(s)

Total size: 324 M
Total download size: 53 M
Is this ok [y/N]: y
Downloading Packages:
(1/41): zarafa-common-7.0.6-1.el5.x86_64.rpm | 21 kB 00:00
(2/41): php-recode-5.3.13-1.el5.remi.x86_64.rpm | 27 kB 00:00
(3/41): php-pspell-5.3.13-1.el5.remi.x86_64.rpm | 34 kB 00:00
(4/41): php-enchant-5.3.13-1.el5.remi.x86_64.rpm | 34 kB 00:00
(5/41): php-snmp-5.3.13-1.el5.remi.x86_64.rpm | 42 kB 00:00
(6/41): php-bcmath-5.3.13-1.el5.remi.x86_64.rpm | 42 kB 00:00
(7/41): php-mcrypt-5.3.13-1.el5.remi.x86_64.rpm | 49 kB 00:00
(8/41): php-tidy-5.3.13-1.el5.remi.x86_64.rpm | 55 kB 00:00
(9/41): php-ldap-5.3.13-1.el5.remi.x86_64.rpm | 58 kB 00:00
(10/41): php-process-5.3.13-1.el5.remi.x86_64.rpm | 61 kB 00:00
(11/41): php-dba-5.3.13-1.el5.remi.x86_64.rpm | 63 kB 00:00
(12/41): php-mssql-5.3.13-1.el5.remi.x86_64.rpm | 68 kB 00:00
(13/41): php-sqlite-5.3.13-1.el5.remi.x86_64.rpm | 79 kB 00:00
(14/41): php-xmlrpc-5.3.13-1.el5.remi.x86_64.rpm | 88 kB 00:00
(15/41): php-imap-5.3.13-1.el5.remi.x86_64.rpm | 89 kB 00:00
(16/41): php-odbc-5.3.13-1.el5.remi.x86_64.rpm | 89 kB 00:00
(17/41): php-interbase-5.3.13-1.el5.remi.x86_64.rpm | 116 kB 00:00
(18/41): php-pdo-5.3.13-1.el5.remi.x86_64.rpm | 121 kB 00:00
(19/41): php-pgsql-5.3.13-1.el5.remi.x86_64.rpm | 136 kB 00:00
(20/41): php-intl-5.3.13-1.el5.remi.x86_64.rpm | 139 kB 00:00
(21/41): php-eaccelerator-0.9.6.1-14.el5.remi.x86_64.rpm | 172 kB 00:00
(22/41): php-gd-5.3.13-1.el5.remi.x86_64.rpm | 210 kB 00:00
(23/41): php53-mapi-7.0.6-1.el5.x86_64.rpm | 223 kB 00:00
(24/41): php-xml-5.3.13-1.el5.remi.x86_64.rpm | 227 kB 00:00
(25/41): php-soap-5.3.13-1.el5.remi.x86_64.rpm | 280 kB 00:00
(26/41): php-mysqlnd-5.3.13-1.el5.remi.x86_64.rpm | 304 kB 00:01
(27/41): mysql-bench-5.5.24-1.el5.remi.x86_64.rpm | 502 kB 00:01
(28/41): libmapi-7.0.6-1.el5.x86_64.rpm | 881 kB 00:00
(29/41): php-common-5.3.13-1.el5.remi.x86_64.rpm | 1.0 MB 00:01
(30/41): mysql-libs-5.5.24-1.el5.remi.x86_64.rpm | 1.1 MB 00:01
(31/41): zarafa-client-7.0.6-1.el5.x86_64.rpm | 1.2 MB 00:02
(32/41): php-fpm-5.3.13-1.el5.remi.x86_64.rpm | 1.4 MB 00:01
(33/41): php-embedded-5.3.13-1.el5.remi.x86_64.rpm | 1.4 MB 00:01
(34/41): php-mbstring-5.3.13-1.el5.remi.x86_64.rpm | 2.3 MB 00:02
(35/41): php-devel-5.3.13-1.el5.remi.x86_64.rpm | 2.6 MB 00:02
(36/41): php-cli-5.3.13-1.el5.remi.x86_64.rpm | 2.6 MB 00:02
(37/41): php-5.3.13-1.el5.remi.x86_64.rpm | 2.8 MB 00:04
(38/41): mysql-embedded-5.5.24-1.el5.remi.x86_64.rpm | 3.3 MB 00:05
(39/41): mysql-5.5.24-1.el5.remi.x86_64.rpm | 7.4 MB 00:08
(40/41): mysql-test-5.5.24-1.el5.remi.x86_64.rpm | 9.2 MB 00:07
(41/41): mysql-server-5.5.24-1.el5.remi.x86_64.rpm | 13 MB 00:10
--------------------------------------------------------------------------------
Total 704 kB/s | 53 MB 01:17
Running rpm_check_debug
Running Transaction Test
Finished Transaction Test


Transaction Check Error:
file /usr/lib64/php/modules/mcrypt.so from install of php-mcrypt-5.3.13-1.el5.remi.x86_64 conflicts with file from package php53-mcrypt-5.3.3-1.el5.x86_64
file /usr/lib64/php/modules/tidy.so from install of php-tidy-5.3.13-1.el5.remi.x86_64 conflicts with file from package php53-tidy-5.3.3-1.el5.x86_64
file /usr/lib64/php/modules/recode.so from install of php-recode-5.3.13-1.el5.remi.x86_64 conflicts with file from package php53-recode-5.3.3-1.el5.x86_64
file /usr/lib64/php/modules/enchant.so from install of php-enchant-5.3.13-1.el5.remi.x86_64 conflicts with file from package php53-enchant-5.3.3-1.el5.x86_64

Error Summary
-------------

[root@moodle2 ~]#
Posted on: 2012/5/11 16:57
Create PDF from Post Print
Top
  •  pschaff
      pschaff
Re: Yum error in update
#4
Moderator
Joined: 2006/12/13
From Tidewater, Virginia, North America
Posts: 18773
OK - that explains the lack of detail - thanks. Running yum from the command line as root will give a lot more clues when you have problems such as this.
_________________
Phil

Recommended reading: FAQ & Readme first ; Search hint: google "your topic site:centos.org"; Smart Questions
Posted on: 2012/4/24 22:35
Create PDF from Post Print
Top
  •  matthes138
      matthes138
Re: Yum error in update
#3
Newbie
Joined: 2012/4/19
From
Posts: 5
it is the GUI yum automated updater
Posted on: 2012/4/24 20:16
Create PDF from Post Print
Top
  •  pschaff
      pschaff
Re: Yum error in update
#2
Moderator
Joined: 2006/12/13
From Tidewater, Virginia, North America
Posts: 18773
Welcome to the CentOS fora. Please see the recommended reading for new users linked in my signature.

It would help if you provided the yum command and the complete output; however, it appears that libmemcached.so.8 is provided by libmemcached-1.0.2-1.el5.remi and he has a new package libmemcached-1.0.4-1.el5.remi that provides only libmemcached.so.9. Remi needs to rebuild php-pecl-mysqlnd-qc for the the newer libmemcached.so.9. Not a CentOS issue.
_________________
Phil

Recommended reading: FAQ & Readme first ; Search hint: google "your topic site:centos.org"; Smart Questions
Posted on: 2012/4/19 20:22
Create PDF from Post Print
Top
  •  matthes138
      matthes138
Yum error in update
#1
Newbie
Joined: 2012/4/19
From
Posts: 5
After doing a yum update i'm getting this error
I have tried to uninstall and reinstall the module but cant seem
to get around this?
Missing Dependency: libmemcached.so.8()(64bit)
is needed by package
php-pecl-mysqlnd-qc-1.0.1-2.el5.remi.x86_64 (installed)

any suggestion would be a great help
Posted on: 2012/4/19 18:48
Create PDF from Post Print
Top
 Top   Previous Topic   Next Topic

 


 You cannot start a new topic.
 You can view topic.
 You cannot reply to posts.
 You cannot edit your posts.
 You cannot delete your posts.
 You cannot add new polls.
 You cannot vote in polls.
 You cannot attach files to posts.
 You cannot post without approval.




"Linux" is a registered trademark of Linus Torvalds. | All other trademarks are property of their respective owners. | All other content is Copyright @ 2004-2009 by the CentOS Project or "each individual contributor (forums, comments, etc.) unless otherwise assigned".| Theme based on a theme by 7dana.com