2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

05. IBM Cloud: VMware as a Service(VMWaaS) - RHELをプロビジョニングして疎通確認を行う

Last updated at Posted at 2024-03-04

1. はじめに

前稿にてVMWaaS上にVDCのネットワークを構成したので、そこに実際にサーバーをプロビジョニングして疎通確認をしたいと思います。また、OS上の設定を確認したいと思います。

2. サーバーテンプレートの確認

OSを1から導入したり持ち込むのは面倒なので、今回はIBM Cloudが事前に用意しているサーバーテンプレートを利用します。まずは、このテンプレートの内容を確認します。

  • テンプレートは Libraries -> vApp Templates から確認可能。image.png
  • 例えばRHEL9のテンプレートのストレージサイズは32GBであることがわかる。image.png

3. サーバーのプロビジョニング

以下では、前項で確認したRHEL9のテンプレートを利用してサーバーをプロビジョニングします。

  1. Applications -> Virtual Machinesから、NEW VMを押下。image.png

  2. VDCを選択 image.png
    一から作ることもできる。

  3. IBM Cloudですでに用意されているテンプレートを利用する。なお、このサーバーはjumpサーバーとしてインターネットからアクセスする予定のサーバーであり、VM初期起動時にSSH鍵を設定するように構成したいため、ここではPower onのチェックボックスを外しておく(Power off状態じゃないと設定ができないため、Power onしていても結局Power offすることになるので。)。
    image.png

  4. ストレージ構成。以下のような豊富な構成から選択可能。image.png 今回は、デフォルトのVSAN(VDC Default)を選択した。なお、コストを抑えるために0.25 IOPS/GBを選択すると、このテンプレートにおける32GBのストレージでは、32 GB x 0.25 IOPS/GB = 8 IOPS の速度になってしまい激遅になってしまうので注意)。選択可能なストレージ一覧は以下の通りです。image.png

    従来から存在するCustomer-ManagedのVMware環境であれば、0.25 IOPS/GB x 10TB = 2500 IOPS のストレージを購入し、このストレージを複数台のVMで共有するということができていました。VM数がたくさんあって、性能要件も明確でないのであれば、このように安価なストレージを大容量で確保して共有して利用するという方法もあったでしょう。
    しかし、VMware as a Service(VMWaaS)はVM毎にストレージを購入する必要があります。「このVMは100GBぐらいしか使っていないから」といって、0.25 IOPS/GB のストレージをを割り当てると、25 IOPSしか性能が出ないストレージを利用することになってしまいます。他のIOPS性能が余っているVMのストレージと性能を共有することができないので注意が必要です。
    :

  5. Network TypeはVMXNET3を、IP Modeは(今回はIPアドレスを前記事のDNAT ruleで指定した192.168.100.2にしたいので)STATIC - MANUALを選択し、IPアドレスを明示的に入力する。OKを押下してプロビジョニングを実施。
    image.png

  6. プロビジョニングが完了。Power off状態になっている。DETAILSを選択。image.png

  7. NICを確認。192.168.100.2が割り当てられている。image.png

  8. Guest OS Customizationに移動し、EDITを押下。image.png

  9. スクリプト欄に以下のように設定してSAVE。image.png

    Script file
    #!/bin/bash
    echo SSH公開鍵 >> /root/.ssh/authorized_keys
    chmod 600 /root/.ssh/authorized_keys
    
  10. Power OnではなくPower On, Force Recustomizationを選択してVMを起動する。これによって、上記で設定したScript fileが起動時に実行される。
    image.png

4. サーバーにSSHアクセスしてみる

前記事のDNAT ruleで指定したPublic IPにSSHでアクセスする。

リンク先がVMWaaSになっていない、タイポが含まれる等、色々ツッコミどころも多いメッセージが表示される。
syasuda@MacBook ~ % ssh root@150.xxx.xx.xx
The authenticity of host '150.xxx.xx.xx (150.xxx.xx.xx)' can't be established.
ED25519 key fingerprint is SHA256:MHhmNeGaHzgI/Kl7DKJK2HlLiwcGauX1R3S012z+ZGE.
This key is not known by any other names.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '150.xxx.xx.xx' (ED25519) to the list of known hosts.
To register the Red Hat VM with your RHEL activation key in IBM RHEL Capsule Server, you must enable VM access to connect to the IBM service network.  For more information, see Enabling VM access to IBM Cloud Services by using the private network (https://cloud.ibm.com/docs/services/vmwaresolutions?topic=vmware-solutions-shared_vcd-ops-guide#shared_vcd-ops-guide-enable-access).

Complete the following steps to register the Red Hat VM with your RHEL activation key.  For more information aboud acessing instance details, see Viewing Virtual Data Center instances (https://cloud.ibm.com/docs/services/vmwaresolutions?topic=vmware-solutions-shared_managing#shared_managing-viewing).

1) From the IBM Cloud for VMware Solutions console, click the instance name in the VMware Solutions Shared instance table.

2) On the instance details page, locate and make note of the Red Hat activation key.

3) Run the following commands from the Red Hat VM:

uuid='uuidgen'

echo {"dmi.system.uuid": "$uuid"} > /etc/rhsm/facts/uuid_override.facts

subscription-manager register --org="customer" --activationkey="${activation_key}" --force
Where:
${activation_key} is the Red Hat activation key that is located on the instance details page.

Activate the web console with: systemctl enable --now cockpit.socket

Register this system with Red Hat Insights: insights-client --register
Create an account or view all your systems at https://red.ht/insights-dashboard
Last login: Mon Jan 29 23:43:00 2024
[root@jumpserver ~]#
バージョン、カーネル情報
[root@jumpserver ~]# cat /etc/redhat-release
Red Hat Enterprise Linux release 9.3 (Plow)

[root@jumpserver ~]# uname -a
Linux jumpserver 5.14.0-362.18.1.el9_3.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 3 15:54:45 EST 2024 x86_64 x86_64 x86_64 GNU/Linux

5. IBM Cloud Private Networkへの接続確認

DNS構成
[root@jumpserver ~]# cat /etc/resolv.conf
# Generated by NetworkManager
nameserver 161.26.0.10
nameserver 161.26.0.11

[root@jumpserver ~]# ping 161.26.0.10
PING 161.26.0.10 (161.26.0.10) 56(84) bytes of data.
64 bytes from 161.26.0.10: icmp_seq=1 ttl=249 time=0.848 ms
64 bytes from 161.26.0.10: icmp_seq=2 ttl=249 time=0.778 ms
64 bytes from 161.26.0.10: icmp_seq=3 ttl=249 time=0.716 ms
64 bytes from 161.26.0.10: icmp_seq=4 ttl=249 time=0.712 ms
^C
--- 161.26.0.10 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3070ms
rtt min/avg/max/mdev = 0.712/0.763/0.848/0.055 ms
IaaS Endpointへの疎通確認。東京リージョンに存在するICOS(IBM Cloud Object Storage)にアクセスしてみる。
[root@jumpserver ~]# ping s3.direct.jp-tok.cloud-object-storage.appdomain.cloud
PING s3.direct.jp-tok.cloud-object-storage.appdomain.cloud (161.26.0.22) 56(84) bytes of data.
64 bytes from 16.00.1aa1.ip4.static.sl-reverse.com (161.26.0.22): icmp_seq=1 ttl=241 time=137 ms
64 bytes from 16.00.1aa1.ip4.static.sl-reverse.com (161.26.0.22): icmp_seq=2 ttl=241 time=137 ms
64 bytes from 16.00.1aa1.ip4.static.sl-reverse.com (161.26.0.22): icmp_seq=3 ttl=241 time=137 ms
64 bytes from 16.00.1aa1.ip4.static.sl-reverse.com (161.26.0.22): icmp_seq=4 ttl=241 time=137 ms
^C
--- s3.direct.jp-tok.cloud-object-storage.appdomain.cloud ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3001ms
rtt min/avg/max/mdev = 136.718/136.761/136.789/0.027 ms
Service Endpointへの疎通確認。IAMのprivate endpointにアクセスしてみる。
[root@jumpserver ~]# ping private.iam.cloud.ibm.com
PING private.iam.cloud.ibm.com (166.9.250.226) 56(84) bytes of data.
64 bytes from e2.fa.09a6.ip4.static.sl-reverse.com (166.9.250.226): icmp_seq=1 ttl=54 time=2.36 ms
64 bytes from e2.fa.09a6.ip4.static.sl-reverse.com (166.9.250.226): icmp_seq=2 ttl=54 time=2.46 ms
64 bytes from e2.fa.09a6.ip4.static.sl-reverse.com (166.9.250.226): icmp_seq=3 ttl=54 time=2.51 ms
64 bytes from e2.fa.09a6.ip4.static.sl-reverse.com (166.9.250.226): icmp_seq=4 ttl=54 time=2.43 ms
^C
--- private.iam.cloud.ibm.com ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3003ms
rtt min/avg/max/mdev = 2.360/2.438/2.506/0.053 ms

6. RHEL activation/サブスクリプション登録の実行

初期状態では、サブスクリプション登録されていないため、パッケージの導入などを実施することはできません。

[root@jumpserver ~]# dnf update
Updating Subscription Management repositories.
Unable to read consumer identity

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

Error: There are no enabled repositories in "/etc/yum.repos.d", "/etc/yum/repos.d", "/etc/distro.repos.d".
/etc/yum.repos.d/redhat.repo
[root@jumpserver ~]# cat /etc/yum.repos.d/redhat.repo
#
# Certificate-Based Repositories
# Managed by (rhsm) subscription-manager
#
# *** This file is auto-generated.  Changes made here will be over-written. ***
# *** Use "subscription-manager repo-override --help" if you wish to make changes. ***
#
# If this file is empty and this system is subscribed consider
# a "yum repolist" to refresh available repos
#
[root@jumpserver ~]# dnf repolist
Updating Subscription Management repositories.
Unable to read consumer identity

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

No repositories available
[root@jumpserver ~]# dnf repoinfo
Updating Subscription Management repositories.
Unable to read consumer identity

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

No repositories available

よって、以下の手順に従ってサブスクリプションの登録作業を実施します。

  1. VMWaaS提供のテンプレートでは、https://rhncapdal1001.adn.networklayer.comをライセンス登録のために利用している。疎通確認できることを念の為確認しておく。

    [root@jumpserver ~]# cat /etc/rhsm/rhsm.conf | grep baseurl
    baseurl = https://rhncapdal1001.adn.networklayer.com/pulp/content/
    
    [root@jumpserver ~]# ping rhncapdal1001.adn.networklayer.com
    PING rhncapdal1001.adn.networklayer.com (161.26.96.25) 56(84) bytes of data.
    64 bytes from 19.60.1aa1.ip4.static.sl-reverse.com (161.26.96.25): icmp_seq=1 ttl=58 time=0.728 ms
    64 bytes from 19.60.1aa1.ip4.static.sl-reverse.com (161.26.96.25): icmp_seq=2 ttl=58 time=0.869 ms
    64 bytes from 19.60.1aa1.ip4.static.sl-reverse.com (161.26.96.25): icmp_seq=3 ttl=58 time=0.809 ms
    64 bytes from 19.60.1aa1.ip4.static.sl-reverse.com (161.26.96.25): icmp_seq=4 ttl=58 time=0.728 ms
    ^C
    --- rhncapdal1001.adn.networklayer.com ping statistics ---
    4 packets transmitted, 4 received, 0% packet loss, time 3003ms
    rtt min/avg/max/mdev = 0.728/0.783/0.869/0.059 ms
    
  2. IBM Cloudポータルにて、VMWare Cloud Directorの詳細画面からRHELのActivation Keyを入手する。 image.png

  3. (VMWaaSのdocsではないが、VMware Solutions Sharedのdocsの記述を参考にして)、登録を実施する。

    [root@jumpserver ~]# uuid=`uuidgen`
    [root@jumpserver ~]# echo '{"dmi.system.uuid": "'$uuid'"}' > /etc/rhsm/facts/uuid_override.facts
    [root@jumpserver ~]# cat /etc/rhsm/facts/uuid_override.facts
    {"dmi.system.uuid": "b3c0917a-1402-41bd-835a-2df60a3d9173"}
    [root@jumpserver ~]# ACTIVATION_KEY=ic4v_vmwaas_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
    [root@jumpserver ~]# subscription-manager register --org="customer" --activationkey=$ACTIVATION_KEY --force
    The system has been registered with ID: f8ec2a28-567a-4dfa-8a50-e8b4de851db8
    The registered system name is: jumpserver
    Installed Product Current Status:
    Product Name: Red Hat Enterprise Linux for x86_64
    Status:       Subscribed
    

以下、登録状況を確認してみます。

[root@jumpserver ~]# subscription-manager list
+-------------------------------------------+
    Installed Product Status
+-------------------------------------------+
Product Name:   Red Hat Enterprise Linux for x86_64
Product ID:     479
Version:        9.3
Arch:           x86_64
Status:         Subscribed
Status Details:
Starts:         12/31/2023
Ends:           01/17/2025
[root@jumpserver ~]# dnf repolist
Updating Subscription Management repositories.
repo id                                                                          repo name
rhel-9-for-x86_64-appstream-rpms                                                 Red Hat Enterprise Linux 9 for x86_64 - AppStream (RPMs)
rhel-9-for-x86_64-baseos-rpms                                                    Red Hat Enterprise Linux 9 for x86_64 - BaseOS (RPMs)
[root@jumpserver ~]# dnf repoinfo
Updating Subscription Management repositories.
Red Hat Enterprise Linux 9 for x86_64 - BaseOS (RPMs)                                                                                                     43 MB/s |  17 MB     00:00
Red Hat Enterprise Linux 9 for x86_64 - AppStream (RPMs)                                                                                                  51 MB/s |  29 MB     00:00
Repo-id            : rhel-9-for-x86_64-appstream-rpms
Repo-name          : Red Hat Enterprise Linux 9 for x86_64 - AppStream (RPMs)
Repo-revision      : 1709273758
Repo-updated       : Fri 01 Mar 2024 06:15:58 AM UTC
Repo-pkgs          : 14,986
Repo-available-pkgs: 14,633
Repo-size          : 50 G
Repo-baseurl       : https://rhncapdal1001.adn.networklayer.com/pulp/content/customer/Library/content/dist/rhel9/9/x86_64/appstream/os
Repo-expire        : 1 second(s) (last: Mon 04 Mar 2024 01:09:54 PM UTC)
Repo-filename      : /etc/yum.repos.d/redhat.repo

Repo-id            : rhel-9-for-x86_64-baseos-rpms
Repo-name          : Red Hat Enterprise Linux 9 for x86_64 - BaseOS (RPMs)
Repo-revision      : 1708911990
Repo-updated       : Mon 26 Feb 2024 01:46:30 AM UTC
Repo-pkgs          : 5,140
Repo-available-pkgs: 5,140
Repo-size          : 9.0 G
Repo-baseurl       : https://rhncapdal1001.adn.networklayer.com/pulp/content/customer/Library/content/dist/rhel9/9/x86_64/baseos/os
Repo-expire        : 1 second(s) (last: Mon 04 Mar 2024 01:09:54 PM UTC)
Repo-filename      : /etc/yum.repos.d/redhat.repo
Total packages: 20,126
[root@jumpserver ~]# cat /etc/yum.repos.d/redhat.repo | grep baseurl
baseurl = https://rhncapdal1001.adn.networklayer.com/pulp/content/customer/Library/content/eus/rhel9/$releasever/x86_64/supplementary/os
baseurl = https://rhncapdal1001.adn.networklayer.com/pulp/content/customer/Library/content/dist/rhel9/$releasever/x86_64/codeready-builder/os
baseurl = https://rhncapdal1001.adn.networklayer.com/pulp/content/customer/Library/content/eus/rhel9/$releasever/x86_64/appstream/os
baseurl = https://rhncapdal1001.adn.networklayer.com/pulp/content/customer/Library/content/dist/rhel9/$releasever/x86_64/supplementary/os
baseurl = https://rhncapdal1001.adn.networklayer.com/pulp/content/customer/Library/content/eus/rhel9/$releasever/x86_64/baseos/os
baseurl = https://rhncapdal1001.adn.networklayer.com/pulp/content/customer/Library/content/dist/rhel9/$releasever/x86_64/baseos/os
baseurl = https://rhncapdal1001.adn.networklayer.com/pulp/content/customer/Library/content/dist/rhel9/$releasever/x86_64/appstream/os
[root@jumpserver ~]# subscription-manager list --available --all
+-------------------------------------------+
    Available Subscriptions
+-------------------------------------------+
Subscription Name:   Red Hat Satellite - Add-Ons for Providers
Provides:            Red Hat Enterprise Linux for Power, big endian - Extended Update Support
                     Red Hat Enterprise Linux Fast Datapath
                     Red Hat Enterprise Linux for SAP Applications for x86_64 High Touch Beta
                     Red Hat Enterprise Linux for SAP Applications for System Z
                     Red Hat Enterprise Linux for SAP Applications for Power, little endian High Touch Beta
                     Red Hat Ansible Automation Platform
                     Red Hat Enterprise Linux for SAP Applications for IBM z Systems High Touch Beta
                     Red Hat OpenStack Director Deployment Tools Beta for IBM Power LE
                     Red Hat Virtualization for IBM Power LE
                     Red Hat Enterprise Linux for SAP Applications for x86_64 Beta
                     Red Hat Enterprise Linux for SAP Applications for Power BE - Extended Update Support
                     Red Hat Enterprise Linux Server
                     dotNET on RHEL (for RHEL Server)
                     Red Hat 3scale API Management Platform
                     OpenShift Developer Tools and Services
                     Red Hat CodeReady Linux Builder for ARM 64
                     Red Hat Enterprise Linux Atomic Host Beta
                     Red Hat Enterprise Linux for ARM 64 Beta
                     Red Hat OpenStack Director Deployment Tools for IBM Power LE
                     Red Hat Container Images
                     Red Hat OpenShift Container Platform
                     Red Hat Virtualization Host
                     Red Hat Enterprise Linux Resilient Storage for IBM z Systems - Extended Update Support
                     Red Hat Virtualization - Extended Update Support
                     Red Hat OpenStack
                     Red Hat Enterprise Linux Advanced Virtualization (for RHEL Server for IBM System Z) EUS
                     OpenJDK Java (for Middleware)
                     Red Hat Enterprise Linux for SAP Solutions for x86_64 - Extended Update Support
                     Red Hat Enterprise Linux for SAP Applications for x86_64 - Update Services for SAP Solutions
                     Red Hat Enterprise Virtualization for Power, little endian
                     Red Hat CloudForms Beta
                     Red Hat Enterprise Linux for SAP Solutions for Power LE - Update Services for SAP Solutions
                     Red Hat Enterprise Linux Atomic Host
                     Red Hat Enterprise Linux Advanced Virtualization (for RHEL Server for IBM System Z)
                     Red Hat Enterprise Linux High Availability (for IBM z Systems) - Extended Update Support
                     Red Hat Enterprise Linux High Availability for x86_64 - Extended Update Support
                     Red Hat Developer Toolset (for RHEL Server)
                     Red Hat Enterprise Linux Server - Extended Life Cycle Support
                     Red Hat Enterprise Linux for SAP Solutions for x86_64
                     Red Hat OpenStack - Extended Life Cycle Support
                     Red Hat Enterprise MRG Messaging
                     Red Hat Ceph Storage OSD
                     Red Hat Ceph Storage MON - Extended Life Cycle Support
                     Red Hat Enterprise Linux for SAP Applications for Power LE - Update Services for SAP Solutions
                     Red Hat Ceph Storage Calamari
                     Red Hat Software Collections (for RHEL Server)
                     Red Hat CloudForms
                     Red Hat OpenShift distributed tracing
                     Red Hat Certification (for RHEL Server)
                     Red Hat Enterprise Linux Advanced Virtualization
                     Red Hat Ansible Engine
                     Red Hat Enterprise Linux for x86_64 - Update Services for SAP Solutions
                     Red Hat CodeReady Linux Builder for Power, little endian - Extended Update Support
                     Red Hat Enterprise Linux for SAP Applications for Power BE
                     Red Hat Developer Tools Beta (for RHEL Server)
                     Red Hat Software Collections (for RHEL Server for ARM 64)
                     Red Hat Software Collections Beta (for RHEL Server)
                     Red Hat Developer Tools (for RHEL Workstation)
                     Red Hat Enterprise Linux for IBM z Systems - Extended Update Support
                     Red Hat Enterprise Linux for ARM 64
                     Cinderlib
                     Red Hat Ceph Storage OSD - Extended Life Cycle Support
                     Red Hat Developer Tools (for RHEL Server for IBM Power LE)
                     Red Hat Directory Server
                     Red Hat EUCJP Support (for RHEL Server) - Extended Update Support
                     Red Hat Developer Tools Beta (for RHEL Server for ARM 64)
                     Red Hat Enterprise Linux for SAP Applications for x86_64 - Extended Update Support
                     Red Hat Enterprise Linux Server for ARM Beta
                     Red Hat Enterprise Linux Fast Datapath (for RHEL Server for IBM Power LE)
                     Red Hat Developer Tools (for RHEL Server for ARM 64)
                     Red Hat Enterprise Linux for IBM z Systems
                     Red Hat Enterprise Linux Scalable File System (for RHEL Server)
                     Red Hat Enterprise Linux Fast Datapath Beta for Power, little endian
                     Red Hat Developer Tools (for RHEL Server for IBM Power)
                     Oracle Java (for RHEL Compute Node)
                     Red Hat Enterprise Linux for Power, little endian Beta
                     Red Hat Developer Tools Beta (for RHEL Server for IBM Power)
                     Red Hat Virtualization
                     Red Hat Enterprise Linux for x86_64 - Extended Update Support
                     Red Hat Virtualization for IBM Power LE - Extended Update Support
                     dotNET on RHEL (for RHEL Compute Node)
                     Red Hat OpenStack Director Deployment Tools
                     Red Hat Enterprise Linux High Availability for Power LE - Update Services for SAP Solutions
                     Red Hat Storage Console
                     Red Hat Gluster Storage Server for On-premise
                     Red Hat Beta
                     Red Hat Openshift Serverless
                     Red Hat Enterprise Linux for x86_64
                     Red Hat Software Collections Beta (for RHEL Server for IBM Power LE)
                     Red Hat Gluster Storage Nagios Server
                     Red Hat Developer Tools (for RHEL Server for ARM)
                     Red Hat CodeReady Linux Builder for x86_64
                     Red Hat Developer Tools (for RHEL Server for System Z)
                     Oracle Java (for RHEL Server)
                     Red Hat Enterprise Linux High Performance Networking (for RHEL Server) - Extended Update Support
                     Red Hat CodeReady Linux Builder for x86_64 - Extended Update Support
                     Red Hat Software Test Suite 5 (for RHEL Server)
                     Red Hat Storage Console Node
                     Red Hat Enterprise Linux Advanced Virtualization Beta
                     Red Hat Virtualization Host - Extended Update Support
                     Red Hat Developer Tools Beta (for RHEL Workstation)
                     Red Hat Enterprise Linux for Scientific Computing
                     dotNET on RHEL Beta (for RHEL Compute Node)
                     Red Hat Software Collections Beta (for RHEL Server for ARM 64)
                     Red Hat Software Collections (for RHEL Server for ARM)
                     Red Hat Gluster Storage Web Administration (for RHEL Server)
                     Red Hat Enterprise Linux High Availability for x86_64
                     Red Hat Single Sign-On
                     Red Hat Enterprise Linux for ARM 64 High Touch Beta
                     Red Hat Developer Tools Beta (for RHEL Server for ARM)
                     Red Hat Enterprise Linux High Availability (for IBM Power LE) - Extended Update Support
                     Red Hat Enterprise Linux Load Balancer (for RHEL Server)
                     Red Hat OpenShift Data Foundation
                     Red Hat Enterprise Linux Server - Extended Life Cycle Support (for IBM z Systems)
                     Red Hat OpenStack Beta
                     Red Hat Virtualization - ELS
                     Red Hat CodeReady Workspaces for OpenShift
                     dotNET on RHEL Beta (for RHEL Server)
                     Red Hat CodeReady Linux Builder for Power, little endian
                     Red Hat Enterprise Linux Server for Power LE - Update Services for SAP Solutions
                     Red Hat Enterprise Linux for SAP Applications for Power LE - Extended Update Support
                     Red Hat Enterprise Linux for Power, little endian - Extended Update Support
                     Red Hat Software Collections (for RHEL Server for IBM Power LE)
                     Red Hat CodeReady Linux Builder for IBM z Systems
                     Red Hat Storage for Public Cloud (via RHUI)
                     Red Hat Openshift Application Runtimes for IBM Power LE
                     Red Hat Enterprise Linux for SAP Applications for System Z - Extended Update Support
                     Red Hat Software Collections Beta (for RHEL Client)
                     Red Hat Enterprise Linux for ARM 64 - Extended Update Support
                     Red Hat Ceph Storage MON
                     Red Hat Container Images Beta
                     Red Hat Developer Tools (for RHEL Server)
                     Red Hat Developer Toolset (for RHEL Workstation)
                     Red Hat Ceph Storage - Extended Life Cycle Support
                     Red Hat Enterprise Linux for SAP Applications for System Z - Extended Life Cycle Support
                     Red Hat OpenShift Service Mesh
                     Red Hat OpenStack Director Deployment Tools Beta
                     Red Hat Software Collections Beta (for RHEL Server for ARM)
                     Oracle Java (for RHEL Server) - Extended Update Support
                     Red Hat Enterprise Linux for SAP Solutions for x86_64 - Update Services for SAP Solutions
                     Red Hat Enterprise Linux for Power, big endian
                     Red Hat S-JIS Support (for RHEL Server) - Extended Update Support
                     Red Hat CodeReady Linux Builder for IBM z Systems - Extended Update Support
                     Red Hat Enterprise Linux for SAP Applications for Power LE
                     Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support
                     Red Hat Virtualization Manager
                     Red Hat Satellite Proxy
                     Red Hat OpenShift Pipelines
                     Red Hat Software Collections Beta (for RHEL Workstation)
                     Red Hat CodeReady Linux Builder for ARM 64 Beta
                     Red Hat Enterprise Linux High Availability for Power, little endian
                     Red Hat Software Collections (for RHEL Client)
                     Red Hat OpenShift GitOps
                     Red Hat Ceph Storage
                     Red Hat Gluster Storage Management Console (for RHEL Server)
                     Red Hat Enterprise Linux for Power 9
                     Red Hat Enterprise Linux for SAP Applications for IBM z Systems Beta
                     Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support
                     Red Hat Developer Tools Beta (for RHEL Server for System Z)
                     Red Hat Enterprise Linux for Real Time
                     Red Hat Enterprise Linux Server for ARM
                     Red Hat Enterprise Linux High Availability for x86_64 - Update Services for SAP Solutions
                     Red Hat Enterprise Linux for SAP Solutions for Power LE - Extended Update Support
                     Red Hat Enterprise Linux for SAP Solutions for Power LE
                     JBoss Enterprise Application Platform
                     Red Hat Software Collections (for RHEL Workstation)
                     Red Hat Enterprise Linux for SAP Applications for x86_64
                     Red Hat Developer Tools Beta (for RHEL Server for IBM Power LE)
                     Red Hat JBoss Core Services
                     Red Hat Enterprise Linux Resilient Storage for x86_64 - Extended Update Support
                     Red Hat Enterprise Linux for Power, little endian
                     Red Hat Quay Enterprise
                     Red Hat Enterprise Linux Resilient Storage for x86_64
                     Red Hat CodeReady Linux Builder for ARM 64 High Touch Beta
SKU:                 RC1257407
Contract:            11703931
Pool ID:             2c9301528a4967db018cf004811e48c4
Provides Management: Yes
Available:           147503
Suggested:           0
Service Type:        L1-L3
Roles:
Service Level:       Premium
Usage:
Add-ons:
Subscription Type:   Stackable
Starts:              12/31/2023
Ends:                01/17/2025
Entitlement Type:    Physical

Subscription Name:   Red Hat Satellite - Add-Ons for Providers
Provides:            Red Hat Enterprise Linux for Power, big endian - Extended Update Support
                     Red Hat Enterprise Linux Fast Datapath
                     Red Hat Enterprise Linux for SAP Applications for x86_64 High Touch Beta
                     Red Hat Enterprise Linux for SAP Applications for System Z
                     Red Hat Enterprise Linux for SAP Applications for Power, little endian High Touch Beta
                     Red Hat Ansible Automation Platform
                     Red Hat Enterprise Linux for SAP Applications for IBM z Systems High Touch Beta
                     Red Hat OpenStack Director Deployment Tools Beta for IBM Power LE
                     Red Hat Virtualization for IBM Power LE
                     Red Hat Enterprise Linux for SAP Applications for x86_64 Beta
                     Red Hat Enterprise Linux for SAP Applications for Power BE - Extended Update Support
                     Red Hat Enterprise Linux Server
                     dotNET on RHEL (for RHEL Server)
                     Red Hat 3scale API Management Platform
                     OpenShift Developer Tools and Services
                     Red Hat CodeReady Linux Builder for ARM 64
                     Red Hat Enterprise Linux Atomic Host Beta
                     Red Hat Enterprise Linux for ARM 64 Beta
                     Red Hat OpenStack Director Deployment Tools for IBM Power LE
                     Red Hat Container Images
                     Red Hat OpenShift Container Platform
                     Red Hat Virtualization Host
                     Red Hat Enterprise Linux Resilient Storage for IBM z Systems - Extended Update Support
                     Red Hat Virtualization - Extended Update Support
                     Red Hat OpenStack
                     Red Hat Enterprise Linux Advanced Virtualization (for RHEL Server for IBM System Z) EUS
                     OpenJDK Java (for Middleware)
                     Red Hat Enterprise Linux for SAP Solutions for x86_64 - Extended Update Support
                     Red Hat Enterprise Linux for SAP Applications for x86_64 - Update Services for SAP Solutions
                     Red Hat Enterprise Virtualization for Power, little endian
                     Red Hat CloudForms Beta
                     Red Hat Enterprise Linux for SAP Solutions for Power LE - Update Services for SAP Solutions
                     Red Hat Enterprise Linux Atomic Host
                     Red Hat Enterprise Linux Advanced Virtualization (for RHEL Server for IBM System Z)
                     Red Hat Enterprise Linux High Availability (for IBM z Systems) - Extended Update Support
                     Red Hat Enterprise Linux High Availability for x86_64 - Extended Update Support
                     Red Hat Developer Toolset (for RHEL Server)
                     Red Hat Enterprise Linux Server - Extended Life Cycle Support
                     Red Hat Enterprise Linux for SAP Solutions for x86_64
                     Red Hat OpenStack - Extended Life Cycle Support
                     Red Hat Enterprise MRG Messaging
                     Red Hat Ceph Storage OSD
                     Red Hat Ceph Storage MON - Extended Life Cycle Support
                     Red Hat Enterprise Linux for SAP Applications for Power LE - Update Services for SAP Solutions
                     Red Hat Ceph Storage Calamari
                     Red Hat Software Collections (for RHEL Server)
                     Red Hat CloudForms
                     Red Hat OpenShift distributed tracing
                     Red Hat Certification (for RHEL Server)
                     Red Hat Enterprise Linux Advanced Virtualization
                     Red Hat Ansible Engine
                     Red Hat Enterprise Linux for x86_64 - Update Services for SAP Solutions
                     Red Hat CodeReady Linux Builder for Power, little endian - Extended Update Support
                     Red Hat Enterprise Linux for SAP Applications for Power BE
                     Red Hat Developer Tools Beta (for RHEL Server)
                     Red Hat Software Collections (for RHEL Server for ARM 64)
                     Red Hat Software Collections Beta (for RHEL Server)
                     Red Hat Developer Tools (for RHEL Workstation)
                     Red Hat Enterprise Linux for IBM z Systems - Extended Update Support
                     Red Hat Enterprise Linux for ARM 64
                     Cinderlib
                     Red Hat Ceph Storage OSD - Extended Life Cycle Support
                     Red Hat Developer Tools (for RHEL Server for IBM Power LE)
                     Red Hat Directory Server
                     Red Hat EUCJP Support (for RHEL Server) - Extended Update Support
                     Red Hat Developer Tools Beta (for RHEL Server for ARM 64)
                     Red Hat Enterprise Linux for SAP Applications for x86_64 - Extended Update Support
                     Red Hat Enterprise Linux Server for ARM Beta
                     Red Hat Enterprise Linux Fast Datapath (for RHEL Server for IBM Power LE)
                     Red Hat Developer Tools (for RHEL Server for ARM 64)
                     Red Hat Enterprise Linux for IBM z Systems
                     Red Hat Enterprise Linux Scalable File System (for RHEL Server)
                     Red Hat Enterprise Linux Fast Datapath Beta for Power, little endian
                     Red Hat Developer Tools (for RHEL Server for IBM Power)
                     Oracle Java (for RHEL Compute Node)
                     Red Hat Enterprise Linux for Power, little endian Beta
                     Red Hat Developer Tools Beta (for RHEL Server for IBM Power)
                     Red Hat Virtualization
                     Red Hat Enterprise Linux for x86_64 - Extended Update Support
                     Red Hat Virtualization for IBM Power LE - Extended Update Support
                     dotNET on RHEL (for RHEL Compute Node)
                     Red Hat OpenStack Director Deployment Tools
                     Red Hat Enterprise Linux High Availability for Power LE - Update Services for SAP Solutions
                     Red Hat Storage Console
                     Red Hat Gluster Storage Server for On-premise
                     Red Hat Beta
                     Red Hat Openshift Serverless
                     Red Hat Enterprise Linux for x86_64
                     Red Hat Software Collections Beta (for RHEL Server for IBM Power LE)
                     Red Hat Gluster Storage Nagios Server
                     Red Hat Developer Tools (for RHEL Server for ARM)
                     Red Hat CodeReady Linux Builder for x86_64
                     Red Hat Developer Tools (for RHEL Server for System Z)
                     Oracle Java (for RHEL Server)
                     Red Hat Enterprise Linux High Performance Networking (for RHEL Server) - Extended Update Support
                     Red Hat CodeReady Linux Builder for x86_64 - Extended Update Support
                     Red Hat Software Test Suite 5 (for RHEL Server)
                     Red Hat Storage Console Node
                     Red Hat Enterprise Linux Advanced Virtualization Beta
                     Red Hat Virtualization Host - Extended Update Support
                     Red Hat Developer Tools Beta (for RHEL Workstation)
                     Red Hat Enterprise Linux for Scientific Computing
                     dotNET on RHEL Beta (for RHEL Compute Node)
                     Red Hat Software Collections Beta (for RHEL Server for ARM 64)
                     Red Hat Software Collections (for RHEL Server for ARM)
                     Red Hat Gluster Storage Web Administration (for RHEL Server)
                     Red Hat Enterprise Linux High Availability for x86_64
                     Red Hat Single Sign-On
                     Red Hat Enterprise Linux for ARM 64 High Touch Beta
                     Red Hat Developer Tools Beta (for RHEL Server for ARM)
                     Red Hat Enterprise Linux High Availability (for IBM Power LE) - Extended Update Support
                     Red Hat Enterprise Linux Load Balancer (for RHEL Server)
                     Red Hat OpenShift Data Foundation
                     Red Hat Enterprise Linux Server - Extended Life Cycle Support (for IBM z Systems)
                     Red Hat OpenStack Beta
                     Red Hat Virtualization - ELS
                     Red Hat CodeReady Workspaces for OpenShift
                     dotNET on RHEL Beta (for RHEL Server)
                     Red Hat CodeReady Linux Builder for Power, little endian
                     Red Hat Enterprise Linux Server for Power LE - Update Services for SAP Solutions
                     Red Hat Enterprise Linux for SAP Applications for Power LE - Extended Update Support
                     Red Hat Enterprise Linux for Power, little endian - Extended Update Support
                     Red Hat Software Collections (for RHEL Server for IBM Power LE)
                     Red Hat CodeReady Linux Builder for IBM z Systems
                     Red Hat Storage for Public Cloud (via RHUI)
                     Red Hat Openshift Application Runtimes for IBM Power LE
                     Red Hat Enterprise Linux for SAP Applications for System Z - Extended Update Support
                     Red Hat Software Collections Beta (for RHEL Client)
                     Red Hat Enterprise Linux for ARM 64 - Extended Update Support
                     Red Hat Ceph Storage MON
                     Red Hat Container Images Beta
                     Red Hat Developer Tools (for RHEL Server)
                     Red Hat Developer Toolset (for RHEL Workstation)
                     Red Hat Ceph Storage - Extended Life Cycle Support
                     Red Hat Enterprise Linux for SAP Applications for System Z - Extended Life Cycle Support
                     Red Hat OpenShift Service Mesh
                     Red Hat OpenStack Director Deployment Tools Beta
                     Red Hat Software Collections Beta (for RHEL Server for ARM)
                     Oracle Java (for RHEL Server) - Extended Update Support
                     Red Hat Enterprise Linux for SAP Solutions for x86_64 - Update Services for SAP Solutions
                     Red Hat Enterprise Linux for Power, big endian
                     Red Hat S-JIS Support (for RHEL Server) - Extended Update Support
                     Red Hat CodeReady Linux Builder for IBM z Systems - Extended Update Support
                     Red Hat Enterprise Linux for SAP Applications for Power LE
                     Red Hat Enterprise Linux Load Balancer (for RHEL Server) - Extended Update Support
                     Red Hat Virtualization Manager
                     Red Hat Satellite Proxy
                     Red Hat OpenShift Pipelines
                     Red Hat Software Collections Beta (for RHEL Workstation)
                     Red Hat CodeReady Linux Builder for ARM 64 Beta
                     Red Hat Enterprise Linux High Availability for Power, little endian
                     Red Hat Software Collections (for RHEL Client)
                     Red Hat OpenShift GitOps
                     Red Hat Ceph Storage
                     Red Hat Gluster Storage Management Console (for RHEL Server)
                     Red Hat Enterprise Linux for Power 9
                     Red Hat Enterprise Linux for SAP Applications for IBM z Systems Beta
                     Red Hat Enterprise Linux Scalable File System (for RHEL Server) - Extended Update Support
                     Red Hat Developer Tools Beta (for RHEL Server for System Z)
                     Red Hat Enterprise Linux for Real Time
                     Red Hat Enterprise Linux Server for ARM
                     Red Hat Enterprise Linux High Availability for x86_64 - Update Services for SAP Solutions
                     Red Hat Enterprise Linux for SAP Solutions for Power LE - Extended Update Support
                     Red Hat Enterprise Linux for SAP Solutions for Power LE
                     JBoss Enterprise Application Platform
                     Red Hat Software Collections (for RHEL Workstation)
                     Red Hat Enterprise Linux for SAP Applications for x86_64
                     Red Hat Developer Tools Beta (for RHEL Server for IBM Power LE)
                     Red Hat JBoss Core Services
                     Red Hat Enterprise Linux Resilient Storage for x86_64 - Extended Update Support
                     Red Hat Enterprise Linux for Power, little endian
                     Red Hat Quay Enterprise
                     Red Hat Enterprise Linux Resilient Storage for x86_64
                     Red Hat CodeReady Linux Builder for ARM 64 High Touch Beta
SKU:                 RC1257407
Contract:            11703931
Pool ID:             2c9301528a4967db018cf004811f48c7
Provides Management: Yes
Available:           1500000000
Suggested:           0
Service Type:        L1-L3
Roles:
Service Level:       Premium
Usage:
Add-ons:
Subscription Type:   Stackable (Temporary)
Starts:              12/31/2023
Ends:                01/17/2025
Entitlement Type:    Virtual
2
1
4

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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?