umRepo Error: All mirror URLs are not using ftp, http[s] or file

sreeninair

Well-Known Member
Dec 23, 2013
100
0
16
cPanel Access Level
Root Administrator
Hello,

I am getting the following error while updating or listing yum. Please let me know how to fix this.

================

[email protected] [/etc/yum.repos.d]# yum list all
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
YumRepo Error: All mirror URLs are not using ftp, http or file.
Eg. $releasever is not a valid release or hasnt been released yet/
YumRepo Error: All mirror URLs are not using ftp, http or file.
Eg. $releasever is not a valid release or hasnt been released yet/
removing mirrorlist with no valid mirrors: /var/cache/yum/extras/mirrorlist.txt
Error: Cannot find a valid baseurl for repo: extras
===============

network seems fine, the server is using centos 5.10 32 bit os. I have copied yum.conf, yum.repos.d from another working server. Still getting same error.

Thanks
Sreeni
 

sreeninair

Well-Known Member
Dec 23, 2013
100
0
16
cPanel Access Level
Root Administrator
[email protected] [/etc/yum.repos.d]# cat /etc/yum.repos.d/CentOS-Base.repo
Code:
# 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/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5

#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

#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

#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

[COLOR="silver"][SIZE=1]- - - Updated - - -[/SIZE][/COLOR]

Here is the yum.conf

[email protected] [/etc/yum.repos.d]# cat /etc/yum.conf
[main]
exclude=bind-chroot courier* dovecot* exim* filesystem httpd* mod_ssl* mydns* mysql* nsd* perl* php* proftpd* pure-ftpd* ruby* spamassassin* squirrelmail*
tolerant=1
errorlevel=1
cachedir=/var/cache/yum
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
distroverpkg=redhat-release
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1

# Note: yum-RHN-plugin doesn't honor this.
metadata_expire=1h

installonly_limit = 5

# PUT YOUR REPOS HERE OR IN separate files named file.repo
# in /etc/yum.repos.d
 

es2alna

Well-Known Member
Mar 30, 2014
67
0
6
Egypt
cPanel Access Level
Root Administrator
Hi,

This is a simple workaround, Edit "CentOS-Base.repo" file and replace this:
Code:
$releasever
with this:
Code:
$releasever.10
Save the file and then:
Code:
yum update
Try this and let me know the result, if this didn't solve it, please post the output of those commands:
Code:
uname -a
cat /etc/redhat-release
-----------

Update: Check if your are able to ping external IP
 
Last edited:

sreeninair

Well-Known Member
Dec 23, 2013
100
0
16
cPanel Access Level
Root Administrator
Hello,

Still getting the same error.

Code:
================
[email protected] [/etc/yum.repos.d]# cp -p -r CentOS-Base.repo CentOS-Base.repo_bkp
[email protected] [/etc/yum.repos.d]# replace '$releasever' '$releasever.10' -- CentOS-Base.repo
CentOS-Base.repo converted
[email protected] [/etc/yum.repos.d]# yum update
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
YumRepo Error: All mirror URLs are not using ftp, http[s] or file.
 Eg. $releasever.10 is not a valid release or hasnt been released yet/
YumRepo Error: All mirror URLs are not using ftp, http[s] or file.
 Eg. $releasever.10 is not a valid release or hasnt been released yet/
removing mirrorlist with no valid mirrors: /var/cache/yum/extras/mirrorlist.txt
Error: Cannot find a valid baseurl for repo: extras
[email protected] [/etc/yum.repos.d]# grep releasever CentOS-Base.repo
name=CentOS-$releasever.10 - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever.10&arch=$basearch&repo=os
baseurl=http://mirror.centos.org/centos/$releasever.10/os/$basearch/
name=CentOS-$releasever.10 - Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever.10&arch=$basearch&repo=updates
#baseurl=http://mirror.centos.org/centos/$releasever.10/updates/$basearch/
name=CentOS-$releasever.10 - Extras
mirrorlist=http://mirrorlist.centos.org/?release=$releasever.10&arch=$basearch&repo=extras
#baseurl=http://mirror.centos.org/centos/$releasever.10/extras/$basearch/
name=CentOS-$releasever.10 - Plus
mirrorlist=http://mirrorlist.centos.org/?release=$releasever.10&arch=$basearch&repo=centosplus
#baseurl=http://mirror.centos.org/centos/$releasever.10/centosplus/$basearch/
name=CentOS-$releasever.10 - Contrib
mirrorlist=http://mirrorlist.centos.org/?release=$releasever.10&arch=$basearch&repo=contrib
#baseurl=http://mirror.centos.org/centos/$releasever.10/contrib/$basearch/
[email protected] [/etc/yum.repos.d]# 

===============
[email protected] [/etc/yum.repos.d]# uname -a
Linux server.server.com 2.6.32-042stab076.8 #1 SMP Tue May 14 20:38:14 MSK 2013 i686 i686 i386 GNU/Linux
[email protected] [/etc/yum.repos.d]#
===============
[email protected] [/etc/yum.repos.d]# cat /etc/redhat-release
CentOS release 5.10 (Final)
[email protected] [/etc/yum.repos.d]# 
===============
[/etc/yum.repos.d]# ping google.com
PING google.com (74.125.21.100) 56(84) bytes of data.
64 bytes from yv-in-f100.1e100.net (74.125.21.100): icmp_seq=1 ttl=46 time=16.9 ms
64 bytes from yv-in-f100.1e100.net (74.125.21.100): icmp_seq=2 ttl=46 time=26.3 ms
^C
--- google.com ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1001ms
rtt min/avg/max/mdev = 16.924/21.642/26.361/4.720 ms
==================
Please note that this is a openvz vps

Thanks
Sreeni
 
Last edited:

es2alna

Well-Known Member
Mar 30, 2014
67
0
6
Egypt
cPanel Access Level
Root Administrator
Sorry for all these tries, as you know when you aren't inside you just throw commands and hope you find the issue in one of them.

Let's continue, what's the output of this command?
Code:
rpm -q yum python centos-release
 

sreeninair

Well-Known Member
Dec 23, 2013
100
0
16
cPanel Access Level
Root Administrator
Hello,

Its ok. You are very helpful.

================

[/tmp.8932]# rpm -q yum python centos-release
package yum is not installed
package python is not installed
package centos-release is not installed
=================

Seems strange!

Thanks
Sreeni
 

es2alna

Well-Known Member
Mar 30, 2014
67
0
6
Egypt
cPanel Access Level
Root Administrator
Yes, too strange.

First of all, try to install yum using below commands (copy and paste):
Code:
mkdir tmp.$$
cd tmp.$$

rpm -Uvh http://mirror.centos.org/centos/5.10/os/i386/CentOS/gmp-4.1.4-10.el5.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/readline-5.1-3.el5.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/expat-1.95.8-11.el5_8.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/m2crypto-0.16-9.el5.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/libxml2-2.6.26-2.1.21.el5_9.3.i386.rpm

rpm -Uvh http://mirror.centos.org/centos/5.10/os/i386/CentOS/nss-3.14.3-18.el5.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/nspr-4.9.5-2.el5.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/popt-1.10.2.3-34.el5.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/logrotate-3.7.4-14.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/rpm-4.4.2.3-34.el5.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/rpm-libs-4.4.2.3-34.el5.i386.rpm

rpm -Uvh http://mirror.centos.org/centos/5.10/os/i386/CentOS/elfutils-0.137-3.el5.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/elfutils-libelf-0.137-3.el5.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/elfutils-libs-0.137-3.el5.i386.rpm

rpm -Uvh http://mirror.centos.org/centos/5.10/os/i386/CentOS/python-2.4.3-56.el5.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/python-elementtree-1.2.6-5.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/python-iniparse-0.2.3-6.el5.noarch.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/python-libs-2.4.3-56.el5.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/python-urlgrabber-3.1.0-6.el5.noarch.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/python-sqlite-1.1.7-1.2.1.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/libxml2-python-2.6.26-2.1.21.el5_9.3.i386.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/rpm-python-4.4.2.3-34.el5.i386.rpm

rpm -Uvh http://mirror.centos.org/centos/5.10/os/i386/CentOS/yum-3.2.22-40.el5.centos.noarch.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/yum-fastestmirror-1.1.16-21.el5.centos.noarch.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/yum-metadata-parser-1.1.2-4.el5.i386.rpm

rpm -Uhv *.rpm
yum -y update
Source: http://openvz.org/Install_yum

Then, try yum update again.
 

sreeninair

Well-Known Member
Dec 23, 2013
100
0
16
cPanel Access Level
Root Administrator
Hello,

Getting this error while installing it.

====================

[/tmp.8932/tmp.8932]# rpm -Uvh http://mirror.centos.org/centos/5.10/os/i386/CentOS/gmp-4.1.4-10.el5.i386.rpm \
> http://mirror.centos.org/centos/5.10/os/i386/CentOS/readline-5.1-3.el5.i386.rpm \
> http://mirror.centos.org/centos/5.10/os/i386/CentOS/expat-1.95.8-11.el5_8.i386.rpm \
> http://mirror.centos.org/centos/5.10/os/i386/CentOS/m2crypto-0.16-9.el5.i386.rpm \
> http://mirror.centos.org/centos/5.10/os/i386/CentOS/libxml2-2.6.26-2.1.21.el5_9.3.i386.rpm
Retrieving http://mirror.centos.org/centos/5.10/os/i386/CentOS/gmp-4.1.4-10.el5.i386.rpm
Retrieving http://mirror.centos.org/centos/5.10/os/i386/CentOS/readline-5.1-3.el5.i386.rpm
Retrieving http://mirror.centos.org/centos/5.10/os/i386/CentOS/expat-1.95.8-11.el5_8.i386.rpm
Retrieving http://mirror.centos.org/centos/5.10/os/i386/CentOS/m2crypto-0.16-9.el5.i386.rpm
Retrieving http://mirror.centos.org/centos/5.10/os/i386/CentOS/libxml2-2.6.26-2.1.21.el5_9.3.i386.rpm
warning: /var/tmp/rpm-xfer.Z44xls: Header V3 DSA signature: NOKEY, key ID e8562897
error: Failed dependencies:
/sbin/ldconfig is needed by gmp-4.1.4-10.el5.i386
libc.so.6 is needed by gmp-4.1.4-10.el5.i386
libc.so.6(GLIBC_2.0) is needed by gmp-4.1.4-10.el5.i386
libc.so.6(GLIBC_2.1.3) is needed by gmp-4.1.4-10.el5.i386
libc.so.6(GLIBC_2.2) is needed by gmp-4.1.4-10.el5.i386
libc.so.6(GLIBC_2.3) is needed by gmp-4.1.4-10.el5.i386
libc.so.6(GLIBC_2.3.4) is needed by gmp-4.1.4-10.el5.i386
libc.so.6(GLIBC_2.4) is needed by gmp-4.1.4-10.el5.i386
libgcc_s.so.1 is needed by gmp-4.1.4-10.el5.i386
libgcc_s.so.1(GCC_3.0) is needed by gmp-4.1.4-10.el5.i386
libm.so.6 is needed by gmp-4.1.4-10.el5.i386
libstdc++.so.6 is needed by gmp-4.1.4-10.el5.i386
libstdc++.so.6(CXXABI_1.3) is needed by gmp-4.1.4-10.el5.i386
libstdc++.so.6(GLIBCXX_3.4) is needed by gmp-4.1.4-10.el5.i386
rtld(GNU_HASH) is needed by gmp-4.1.4-10.el5.i386
/bin/sh is needed by readline-5.1-3.el5.i386
/sbin/install-info is needed by readline-5.1-3.el5.i386
/sbin/ldconfig is needed by readline-5.1-3.el5.i386
libc.so.6 is needed by readline-5.1-3.el5.i386
libc.so.6(GLIBC_2.0) is needed by readline-5.1-3.el5.i386
libc.so.6(GLIBC_2.1.3) is needed by readline-5.1-3.el5.i386
libc.so.6(GLIBC_2.3) is needed by readline-5.1-3.el5.i386
libc.so.6(GLIBC_2.3.4) is needed by readline-5.1-3.el5.i386
libc.so.6(GLIBC_2.4) is needed by readline-5.1-3.el5.i386
rtld(GNU_HASH) is needed by readline-5.1-3.el5.i386
/sbin/ldconfig is needed by expat-1.95.8-11.el5_8.i386
libc.so.6 is needed by expat-1.95.8-11.el5_8.i386
libc.so.6(GLIBC_2.0) is needed by expat-1.95.8-11.el5_8.i386
libc.so.6(GLIBC_2.1) is needed by expat-1.95.8-11.el5_8.i386
libc.so.6(GLIBC_2.1.3) is needed by expat-1.95.8-11.el5_8.i386
libc.so.6(GLIBC_2.3.4) is needed by expat-1.95.8-11.el5_8.i386
libc.so.6(GLIBC_2.4) is needed by expat-1.95.8-11.el5_8.i386
rtld(GNU_HASH) is needed by expat-1.95.8-11.el5_8.i386
/usr/bin/python is needed by m2crypto-0.16-9.el5.i386
libc.so.6 is needed by m2crypto-0.16-9.el5.i386
libc.so.6(GLIBC_2.0) is needed by m2crypto-0.16-9.el5.i386
libc.so.6(GLIBC_2.1.3) is needed by m2crypto-0.16-9.el5.i386
libc.so.6(GLIBC_2.3.4) is needed by m2crypto-0.16-9.el5.i386
libc.so.6(GLIBC_2.4) is needed by m2crypto-0.16-9.el5.i386
libcrypto.so.6 is needed by m2crypto-0.16-9.el5.i386
libpthread.so.0 is needed by m2crypto-0.16-9.el5.i386
libpthread.so.0(GLIBC_2.0) is needed by m2crypto-0.16-9.el5.i386
libssl.so.6 is needed by m2crypto-0.16-9.el5.i386
python is needed by m2crypto-0.16-9.el5.i386
python(abi) = 2.4 is needed by m2crypto-0.16-9.el5.i386
rtld(GNU_HASH) is needed by m2crypto-0.16-9.el5.i386
/bin/sh is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libc.so.6 is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libc.so.6(GLIBC_2.0) is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libc.so.6(GLIBC_2.1) is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libc.so.6(GLIBC_2.1.3) is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libc.so.6(GLIBC_2.2) is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libc.so.6(GLIBC_2.3) is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libc.so.6(GLIBC_2.3.2) is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libc.so.6(GLIBC_2.3.4) is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libc.so.6(GLIBC_2.4) is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libdl.so.2 is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libdl.so.2(GLIBC_2.0) is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libdl.so.2(GLIBC_2.1) is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libm.so.6 is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libm.so.6(GLIBC_2.0) is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
libz.so.1 is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386
rtld(GNU_HASH) is needed by libxml2-2.6.26-2.1.21.el5_9.3.i386

================================
 

es2alna

Well-Known Member
Mar 30, 2014
67
0
6
Egypt
cPanel Access Level
Root Administrator
Try only those commands:
Code:
rpm -Uvh http://mirror.centos.org/centos/5.10/os/i386/CentOS/yum-3.2.22-40.el5.centos.noarch.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/yum-fastestmirror-1.1.16-21.el5.centos.noarch.rpm \
         http://mirror.centos.org/centos/5.10/os/i386/CentOS/yum-metadata-parser-1.1.2-4.el5
and let me know the result, hope this will fix it.
 

es2alna

Well-Known Member
Mar 30, 2014
67
0
6
Egypt
cPanel Access Level
Root Administrator
Are you sure you have wget?

Code:
rpm -qa | grep wget
------------------

Update: I reviewed the last post and found out that the last URL isn't working.

So, we will go ahead and execute those:
Code:
rpm -Uvh http://mirror.centos.org/centos/5.10/os/i386/CentOS/yum-3.2.22-40.el5.centos.noarch.rpm
rpm -Uvh http://mirror.centos.org/centos/5.10/os/i386/CentOS/yum-fastestmirror-1.1.16-21.el5.centos.noarch.rpm
Then we will try yum update again.
 
Last edited:

sreeninair

Well-Known Member
Dec 23, 2013
100
0
16
cPanel Access Level
Root Administrator
Hello,

Wget is not showing in rpm, but it is installed and working fine.


/tmp.8932/tmp.8932]# rpm -Uvh http://mirror.centos.org/centos/5.10/os/i386/CentOS/yum-3.2.22-40.el5.centos.noarch.rpm
Retrieving http://mirror.centos.org/centos/5.10/os/i386/CentOS/yum-3.2.22-40.el5.centos.noarch.rpm
warning: /var/tmp/rpm-xfer.X8gBB2: Header V3 DSA signature: NOKEY, key ID e8562897
error: Failed dependencies:
/usr/bin/python is needed by yum-3.2.22-40.el5.centos.noarch
python >= 2.4 is needed by yum-3.2.22-40.el5.centos.noarch
python(abi) = 2.4 is needed by yum-3.2.22-40.el5.centos.noarch
python-elementtree is needed by yum-3.2.22-40.el5.centos.noarch
python-iniparse is needed by yum-3.2.22-40.el5.centos.noarch
python-sqlite is needed by yum-3.2.22-40.el5.centos.noarch
rpm >= 0:4.4.2 is needed by yum-3.2.22-40.el5.centos.noarch
rpm-python is needed by yum-3.2.22-40.el5.centos.noarch
urlgrabber >= 3.1.0 is needed by yum-3.2.22-40.el5.centos.noarch
yum-fastestmirror is needed by yum-3.2.22-40.el5.centos.noarch
yum-metadata-parser >= 1.1.0 is needed by yum-3.2.22-40.el5.centos.noarch
[email protected] [/tmp.8932/tmp.8932]# rpm -Uvh http://mirror.centos.org/centos/5.1...fastestmirror-1.1.16-21.el5.centos.noarch.rpm
Retrieving http://mirror.centos.org/centos/5.1...fastestmirror-1.1.16-21.el5.centos.noarch.rpm
warning: /var/tmp/rpm-xfer.zAp9YQ: Header V3 DSA signature: NOKEY, key ID e8562897
error: Failed dependencies:
yum >= 3.0 is needed by yum-fastestmirror-1.1.16-21.el5.centos.noarch
[email protected] [/tmp.8932/tmp.8932]#


tmp.8932]# wget IBM developerWorks : Site maintenance
--2014-04-05 19:08:06-- IBM developerWorks : Site maintenance
Resolving IBM - United States... 23.67.113.242
Connecting to www.ibm.com|23.67.113.242|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: `index.html'

[ <=> ] 63,534 --.-K/s in 0.005s

2014-04-05 19:08:06 (12.5 MB/s) - `index.html' saved [63534]

Thanks
Sreeni

- - - Updated - - -

Hello,

/usr/bin/ is present and all files are their.

8932]# ls /usr/bin/
./ dprofpp* [email protected] mysql_client_test* python* tbl*
../ [email protected] head* mysql_client_test_embedded* [email protected] [email protected]
[* du* hexdump* mysql_config* python2.4* [email protected]
a2p* dumphint* hltest* mysql_config_editor* quota* tclsh8.4.nothreads*
ab* dvipdf* host* mysql_convert_table_format* rackup* tclsh8.4.threads*
aclocal* easy_install* hostid* mysqld_multi* rails* tee*
aclocal-1.9* easy_install-2.4* hpftodit* mysqld_safe* rake* telnet*
addftinfo* enc2xs* htdbm* mysqldump* ralsh* test*
addr2line* encode_keychange* htdigest* mysqldumpslow* ranlib* testrb*
annotate* [email protected] htop* mysql_find_rows* ras2tiff* tfmtodit*
apr-1-config* envsubst* htpasswd* mysql_fix_extensions* raw2tiff* thumbnail*
apropos* eps2eps* i386-redhat-linux-c++* mysqlhotcopy* rcs* tic*
apu-1-config* eqn* i386-redhat-linux-g++* mysqlhotcopy.orig* [email protected] tiff2bw*
[email protected] eqn2graph* i386-redhat-linux-gcc* mysqlimport* rcsclean* tiff2pdf*
ar* erb* icc2ps* mysql_install_db* rcsdiff* tiff2ps*
ar86* eu-addr2line* icclink* mysql_plugin* rcsmerge* tiff2rgba*
as* eu-ar* icctrans* mysql_secure_installation* rdate* tiffcmp*
as86* eu-elfcmp* iconv* mysql_setpermission* rdjpgcom* tiffcp*
aserver* eu-elflint* id* mysqlshow* rdoc* tiffdiff*
aspell* eu-findtextrel* ident* mysqlslap* re2c* tiffdither*
aspell-import* eu-make-debug-archive* idle* mysqltest* readelf* tiffdump*
at* eu-nm* idn* mysqltest_embedded* readlink* tifficc*
[email protected] eu-objdump* ifnames* mysql_tzinfo_to_sql* [email protected] tiffinfo*
[email protected] eu-ranlib* imake* mysql_upgrade* recode-sr-latin* tiffmedian*
audit2allow* eu-readelf* indxbib* mysql_waitpid* refer* tiffset*
[email protected] eu-size* info* mysql_zap* remsync* tiffsplit*
[email protected] eu-strings* infocmp* mytop* rename* time*
autoconf* eu-strip* infokey* namei* renice* timed-read*
autoexpect* eu-unstrip* [email protected] nano* replace* timed-run*
autoheader* [email protected] innochecksum* neqn* [email protected] tload*
autom4te* expand* install* newgrp* resetall* toe*
automake* expect* instmodsh* ngettext* resolveip* top*
automake-1.9* expr* ionice* nl* resolve_stack_dump* tput*
autopoint* facter* iostat* nm* rev* tr*
autoreconf* factor* ipcrm* [email protected] revpath* traptoemail*
autoscan* faillog* ipcs* nohup* rftp* troff*
autoupdate* fastjar* ipf-mod.pl* nroff* rgb2ycbcr* tset*
[email protected] fax2ps* irb* nslookup* ri* tsort*
base64* fax2tiff* isc-config.sh* nsupdate* rlog* ttmkfdir*
bashbug-32* fc-cache* isosize* ntpstat* rlogin-cwd* tty*
batch* fc-cat* ispell* objcopy* [email protected] tzselect*
bc* fc-list* join* objdump* rpcgen* ucd5820stat*
bcc* fc-match* jpegicc* objdump86* rpm2cpio* ucs2any*
bdftogd* fdformat* jpegtran* od* [email protected] udevinfo*
bdftopcf* fetchmail* jv-convert* openssl* [email protected] udevtest*
bdftops* file* jwhois* pal2rgb* [email protected] ul*
bdftruncate* filebucket* kibitz* pango-querymodules-32* [email protected] unbuffer*
berkeley_db41_svc* find* [email protected] passmass* [email protected] [email protected]
berkeley_db42_svc* find2perl* killall* passwd* rsync* unexpand*
bison* finger* last* paste* ruby* uniq*
bmp2tiff* fipscheck* [email protected] patch* runcon* unix-lpr.sh*
[email protected] .fipscheck.hmac lastlog* pathchk* run-parts* unprotoize*
[email protected] fipshmac* lchfn* pcre-config* run-with-aspell* unrar*
[email protected] fixmswrd.pl* lchsh* pcregrep* [email protected] unshar*
bzdiff* fixproc* ld* pcretest* s2p* [email protected]
bzgrep* flex* ld86* pdf2dsc* sadf* unzip*
bzip2* [email protected] ldd* pdf2ps* [email protected] unzipsfx*
bzip2recover* flock* lddlibc4* pdfopt* sar* updatedb*
[email protected] floppy* less* pear* sasl2-sample-client* update-gdk-pixbuf-loaders*
bzmore* fmt* lessecho* peardev* sasl2-sample-server* update-gtk-immodules*
c++* fold* lesskey* pecl* scp* update_rubygems*
c2ph* font2c* lesspipe.sh* [email protected] screen* uptime*
c89* fonttosfnt* [email protected] perl.1282272511* script* urlgrabber*
c99* formail* libnetcfg* perl5.8.8* sdiff* users*
cal* free* libpng12-config* perlbug* secon* utmpdump*
[email protected] freetype-config* [email protected] perlcc* semodule_deps* uudecode*
catchsegv* ftp* libtool* perldoc* semodule_expand* uuencode*
[email protected] ftp-rfc* libtoolize* perlivp* semodule_link* uuidgen*
ccmakedep* funzip* libwmf-fontmap* perlml* semodule_package* vdir*
c++filt* g++* lkbib* perror* sensors* vim*
chage* [email protected] lndir* pf2afm* seq* [email protected]
chattr* gcc* locale* pfbtopfa* setsid* vimtutor*
chcat* gccmakedep* localedef* pfbtops* setterm* vmstat*
chcon* gcj-dbtool* locate* [email protected] [email protected] w*
chfn* gcov* lockfile* pgrep* sftp* wall*
chrt* gd2copypal* [email protected] [email protected] [email protected] watch*
chsh* gd2togif* logname* phar.phar* sha1hmac* wc*
ci* gd2topng* logresolve* php* sha1sum* weather*
cifsiostat* gdcmpgif* look* [email protected] sha224sum* webpng*
cjpeg* gdk-pixbuf-query-loaders-32* lookbib* [email protected] sha256hmac* wftopfa*
cksum* gdlib-config* lprsetup.sh* [email protected] sha256sum* wget*
cleanlinks* gdparttopng* lpunlock* [email protected] sha384hmac* whatis*
clear* gdtopng* lsattr* [email protected] sha384sum* whereis*
cmp* gem* lspgpot* php-config* sha512hmac* which*
co* gencat* lynx* phpize* sha512sum* whiptail*
col* gendiff* m4* pi* shar* who*
colcrt* [email protected] [email protected] pic* shred* whoami*
colrm* getconf* mail-files* pic2graph* size* [email protected]
column* getent* mailshar* [email protected] [email protected] [email protected]
comm* getopt* mailstat* piconv* skill* wish8.4*
compile_et* [email protected] make* pinky* slabtop* wmf2eps*
compress* gettextize* makedepend* pkg-config* [email protected] wmf2fig*
compress-dummy* gettext.sh* makeg* pkill* smtpd.py* wmf2gd*
consolehelper* [email protected] man* pl2pm* smtpd.pyc wmf2svg*
cpan* gif2tiff* man2html* pmap* smtpd.pyo wmf2x*
cpp* giftogd2* [email protected] pngtogd* snice* word-list-compress*
crontab* gij* mcookie* pngtogd2* snmpbulkget* write*
csplit* [email protected] md5sum* pod2html* snmpbulkwalk* wrjpgcom*
curl* gjarsigner* merge* pod2latex* snmpconf* wtpt*
curl-config* gkeytool* mergelib* pod2man* snmpdelta* [email protected]
[email protected] [email protected] mesg* pod2text* snmpdf* xargs*
cvs* [email protected] mev* pod2usage* snmpget* xfs*
cvsbug* [email protected] mib2c-update* podchecker* snmpgetnext* xgettext*
cxpm* [email protected] mk_cmds* podselect* [email protected] xkibitz*
cytune* gpasswd* mkdirhier* post-grohtml* snmpnetstat* xmkmf*
DB/ gpg* mkfifo* [email protected] snmpset* xml2-config*
db41_archive* gpgen* mkfontdir* ppm2tiff* snmpstatus* xmlcatalog*
db41_checkpoint* gpg-error* mkfontscale* pr* snmptable* xmllint*
db41_deadlock* gpgsplit* mkhtmlindex* precat* snmptest* xmlwf*
db41_dump* gpgv* mkpasswd* pre-grohtml* snmptranslate* xorg-x11-filesystem-upgrade*
db41_load* gpg-zip* modulator* preunzip* snmptrap* xsubpp*
db41_printlog* [email protected] mongrel_rails* prezip* snmpusm* xxd*
db41_recover* gpm-root* mouse-test* prezip-bin* snmpvacm* xz*
db41_stat* gprof* mpstat* printafm* snmpwalk* [email protected]
db41_upgrade* [email protected] msgattrib* printenv* soelim* [email protected]
db41_verify* grepjar* msgcat* printf* [email protected] xzdec*
db42_archive* grmic* msgcmp* procmail* [email protected] xzdiff*
db42_checkpoint* grmiregistry* msgcomm* protoize* [email protected] [email protected]
db42_deadlock* grn* msgconv* prove* spell* [email protected]
db42_dump* grodvi* msgen* ps2ascii* splain* xzgrep*
db42_load* groff* msgexec* ps2epsi* split* xzless*
db42_printlog* groffer* msgfilter* ps2pdf* sprof* xzmore*
db42_recover* grolbp* msgfmt* ps2pdf12* sqlite3* yes*
db42_stat* grolj4* msgfmt.py* ps2pdf13* ssh* yum*
db42_upgrade* grops* msgfmt.pyc ps2pdf14* ssh-add* zcmp*
db42_verify* grotty* msgfmt.pyo ps2pdfwr* ssh-agent* zdiff*
dbiprof* groups* msggrep* ps2ps* ssh-copy-id* zegrep*
dbiproxy* gs* msghack* ps2ps2* .ssh.hmac zfgrep*
dc* gsbj* msginit* psed* ssh-keygen* zforce*
ddate* gsdj* msgmerge* pstree* ssh-keyscan* zgrep*
ddcmon* gsdj500* msgunfmt* [email protected] stat* zip*
decode-dimms.pl* gslj* msguniq* pstruct* strace* zipcloak*
decode-edid.pl* gslp* msql2mysql* ptx* strings* zipgrep*
decode-vaio.pl* gsnd* myisamchk* puppet* strip* zipinfo*
decode-xeon.pl* [email protected] myisam_ftdump* puppetdoc* stunnel-4.15local* zipnote*
diff* [email protected] myisamlog* pure-pw* sudo* zipsplit*
diff3* gtk-demo* myisampack* pure-pwconvert* sudoedit* zless*
dig* gtk-query-immodules-2.0-32* my_print_defaults* pure-statsdecode* sum* zmore*
dir* gtk-update-icon-cache* mysql* pv.sh* sxpm* znew*
dircolors* [email protected] mysqlaccess* pwdx* t2xmlchk.php* [email protected]
dirname* [email protected] mysqlaccess.conf pydoc* tac*
dislocate* gzexe* mysqladmin* pygettext.py* tack*
djpeg* [email protected] mysqlbinlog* pygettext.pyc tail*
doveadm* h2ph* mysqlbug* pygettext.pyo tailf*
doveconf* h2xs*

Thanks
Sreeni
 

es2alna

Well-Known Member
Mar 30, 2014
67
0
6
Egypt
cPanel Access Level
Root Administrator
Hi,

I'm sorry but I guess that your issue here reached a level that is out of my hands.

This is the perfect time to open a Support Ticket to cPanel but I guess the right solution for this issue is an OS Reload.

Sorry I couldn't help more but I can't find any more ideas to make.

Thanks,
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,260
463
Hello :)

This is an issue with your system package manager, as opposed to an issue with cPanel. This falls outside the range of support we can offer through a ticket. Are you able to undo any of the changes advised to you initially in this thread? If so, please do that, so we can address the issue from the beginning. Also, could you let us know if any events took place before you noticed this problem? Were any system files removed, or were any OS updates attempted (e.g. upgrade to CentOS 6)?

Thank you.