web-dev-qa-db-ja.com

glibcを最新バージョンに更新できません

Katello/Satellite 6を使用して、リポジトリ/パッケージを管理し、サーバーをサブスクライブします。 Katello Web UIでは、それはglibc-2.12-1.212.el6.x86_64およびglibc-common-2.12-1.212.el6.x86_64はシステムに適用可能なアップデートです。クリックして更新すると、「成功」と表示されます。しかし、何も起こらず、Kateloは引き続きそれが適切なアップデートであることを示しています。

サーバー自体にsshしてyum install glibc-2.12-1.212.el6.x86_64パッケージが見つかりませんでした。これはCentOS 6.10ボックスにあります。

依存関係として最新のglibcに依存するnscdなどの他のパッケージもあるので、なぜこれが起こっているのか非常に興味があります。

repo id                                                  repo name                                                         status
company_repos_centos6_extras               centos6_extras                                                          43
company_repos_centos6_os                   centos6_os                                                        6,695+18
company_repos_centos6_updates              centos6_updates                                                     305+54
company_repos_epel6                        epel6                                                               12,515
company_repos_katello_centos6              katello_centos6                                                          4
base                                                     CentOS-6 - Base                                                   6,695+18
dgoodwin-subscription-manager                            Copr repo for subscription-manager owned by dgoodwin                   8+2
epel                                                     Extra Packages for Enterprise Linux 6 - x86_64                      12,517
extras                                                   CentOS-6 - Extras                                                       46
foreman-client                                           Foreman client 1.20                                                      4
group_qpid-qpid                                          Copr repo for qpid owned by @qpid                                     25+3
logstashforwarder                                        Lostash Forwarder official repo                                          1
lynis                                                    Lynis YUM repo                                                          51
company                                                  company Repository for CentOS 6 - x86_64                               636
company                                           company RPM Repository for CentOS 6 - noarch                            37
pulp                                                     Pulp Community Release                                                  21
subscription-manager                                     Subscription manager repository from Candlepin                         8+2
update                                                   CentOS-6 - Updates                                                  329+54
repolist: 39,940
Uploading Enabled Repositories Report

company_repos_centos6_osとbase reposには必ずglibc-2.12-1.212.el6.x86_64が含まれています。

コメントでリクエストされているように、私の/etc/yum.confにはexclude=glibc-* kernel-*そして実際にyum updateは機能しません。

3

あなたの最後のコメントはあなたの問題を明らかにします。

Repoファイルまたは/etc/yum.confからexclude行を削除し、yum clean allを実行して、glibcの再インストールを試みます。その行は、更新する必要のあるパッケージを除外しています。

3
Nasir Riley