Centos7下执行yum命令报错

Centos7下执行yum命令报错

故障1:

$ yum clean all    
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:

   No module named yum

Please install a package which provides this module, or
verify that the module is installed correctly.

It's possible that the above module doesn't match the
current version of Python, which is:
2.7.11 (default, Sep 19 2016, 11:19:49) 
[GCC 4.8.3 20140911 (Red Hat 4.8.3-9)]

If you cannot solve this problem yourself, please go to 
the yum faq at:
  http://yum.baseurl.org/wiki/Faq

解决方法:这个是因为没有yum的环境变量,将yum命令加入环境变量即可,

export LD_LIBRARY_PATH=/usr/lib64:$LD_LIBRARY_PATH

故障2

failure: repodata/repomd.xml from base: [Errno 256] No more mirrors to try.
http://mirrors.sohu.com/centos/7/os/x86_64/repodata/repomd.xml: [Errno 14] curl#6 - "Could not resolve host: 	mirrors.sohu.com; Unknown error"

解决方法:在 /etc/yum.repo.d/目录下面存在太多.repo文件,在下面创建个目录,将.repo文件移到目录里面即可

你可能感兴趣的:(linux运维,yum,centos,运维)