3
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RHELでyumを使用とすると「invalid user credentials」と出てしまう場合の対処方法

Posted at

#概要
RHELをインストールしてすぐにyumコマンドを使用しようとしても下記のエラーが出て
yumコマンドが使用できないときの対処方法

this system is not registered with an entitlement server

#原因
RHELではyumの初期設定が行われていない
そのため、RHELのsubscription登録、及びrepolistの更新を実施する必要がある

[root@localhost ~]# yum repolist
読み込んだプラグイン:langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
repolist: 0 
# ↑初期設定されているレrepolistが0        

#対処方法
以下の手順を実行

①サブスクリプション登録
[root@localhost ~]# subscription-manager register --auto-attach
登録中: subscription.rhn.redhat.com:443/subscription
ユーザー名:        ### RHEL OSをダウンロードする際に登録したユーザ名
パスワード:        ### 上記パスワード
このシステムは次の ID で登録されました: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXX 

インストール済み製品の現在の状態:
製品名: Red Hat Enterprise Linux Server
状態:   サブスクライブ済み


②レポジトリ登録
[root@localhost ~]# subscription-manager repos --list
[root@localhost ~]# subscription-manager repos --enable rhel-server-rhscl-7-rpms
リポジトリー 'rhel-server-rhscl-7-rpms' はこのシステムに対して有効になっています。
[root@localhost ~]# subscription-manager repos --enable rhel-7-server-optional-rpms
リポジトリー 'rhel-7-server-optional-rpms' はこのシステムに対して有効になっています。


③yumアップデート
[root@localhost ~]# yum -y update

#参考にしたサイト:
https://access.redhat.com/ja/solutions/3218261

3
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?