RHEL8でyumなどを利用するためにRHN(Red Hat Network)の
サブスクリプション登録が必要になるため手順を記載する。
サマリ
下記のコマンドでシステム登録を実施する。
# subscription-manager register --username='user_name' --password='password'
# subscription-manager attach
事前作業
・サブスクリプション登録する前にRHELのユーザ登録を実施する。
※開発アカウントを利用することで無償で16台まで利用可能
Red Hat ホームページ
https://www.redhat.com/ja
・RHELをダウンロードしてインストールを実施する。
・ネットワークを設定しインターネット接続可能な状態にする。
参考:RHEL8でIPv4の固定IPアドレス設定する
システム登録
・設定前の状態を確認する。
# ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=59 time=8.80 ms
^C
--- 8.8.8.8 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 8.803/8.803/8.803/0.000 ms
# yum repolist
サブスクリプション管理リポジトリーを更新しています。
コンシューマー識別子を読み込めません
このシステムは、エンタイトルメントサーバーに登録されていません。subscription-manager で登録できます。
利用できるリポジトリーがありません
# subscription-manager list
+-------------------------------------------+
インストール済み製品のステータス
+-------------------------------------------+
製品名: Red Hat Enterprise Linux for x86_64
製品 ID: 479
バージョン: 8.6
アーキテクチャー: x86_64
状態: 不明
状態の詳細:
開始:
終了:
・システム登録、サブスクリプション登録をする。
# subscription-manager register --username='user_name' --password='password'
登録中: subscription.rhsm.redhat.com:443/subscription
このシステムは、次の ID で登録されました: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
登録したシステム名: ServerName
# subscription-manager attach
インストール済み製品の現在の状態:
製品名: Red Hat Enterprise Linux for x86_64
状態: サブスクライブ済み
・設定後の状態を確認する。
# subscription-manager list
+-------------------------------------------+
インストール済み製品のステータス
+-------------------------------------------+
製品名: Red Hat Enterprise Linux for x86_64
製品 ID: 479
バージョン: 8.6
アーキテクチャー: x86_64
状態: サブスクライブ済み
状態の詳細:
開始: 2022年XX月XX日
終了: 2023年XX月XX日
動作確認
・yumコマンドが利用できることを確認する。
# yum repolist
サブスクリプション管理リポジトリーを更新しています。
repo id repo の名前
rhel-8-for-x86_64-appstream-rpms Red Hat Enterprise Linux 8 for x86_64 - AppStream (RPMs)
rhel-8-for-x86_64-baseos-rpms Red Hat Enterprise Linux 8 for x86_64 - BaseOS (RPMs)
コメント