なんとな~くしあわせ?の日記

「そしてそれゆえ、知識そのものが力である」 (Nam et ipsa scientia potestas est.) 〜 フランシス・ベーコン

Centos 7.8でyum updateしたらentitlement serverが無いとか言われた

借りてるVPSCentos 7.8なのだが、今日確認したらyumが動かなくなった。

# yum update
読み込んだプラグイン:fastestmirror, product-id, search-disabled-repos, subscription-manager

This system is not registered with an entitlement server. You can use subscription-manager to register.

Loading mirror speeds from cached hostfile
 * base: mirror.facebook.net
 * elrepo: reflector.westga.edu
 * epel: d2lzkl7pfhq30w.cloudfront.net
 * extras: www.gtlib.gatech.edu
 * remi-safe: mirror.team-cymru.com
 * updates: mirror.facebook.net
No packages marked for update

このフォーラムによれば、RedHat側の機能が取り込まれてしまったようだ。subscription-managerを無効化する。
forums.centos.org

// 書き換え
# vim /etc/yum/pluginconf.d/subscription-manager.conf
- enabled=1 
+ enabled=0 

// 更新
# yum clean all
# yum update

動くようになった。