客先でメールサーバに関する設定調査を行う必要があるので自前の環境を構築。
久しぶりにLinuxをインストール。これまではCentOSだったけどDevelopperのサブスクリプションが使えるのでRedHatでやってみた。
前提として以下のURLにアクセスしてアカウントを作成しておく必要あり。
https://access.redhat.com/
アカウント作成後、以下のURLにアクセスしてISOイメージをダウンロードする。
https://developers.redhat.com/products/rhel/download
最新版でなけれればView Older Downlodsのボタンをポチって対象のバージョンを探す。
ダウンロード時に個人情報の登録を求められるので入力する。
開発者用のサブスクリプションはダウンロード時に自動で発行されている状態っぽい。
以下URLにアクセスすることでサブスクリプションの詳細を確認することが出来る。
https://access.redhat.com/management
アクティブなサブスクリプションというリンクをクリックするとサブスクリプションのインベントリ情報を表示可能。
VMware WorkstationでダウンロードしたISOイメージからインストールを行う。
インストール直後にyum updateを行っても以下の出力が出て失敗する。
-----------------------------------------------------
[root@localhost.local ~]# yum -y update
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-
: manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
There are no enabled repos.
Run "yum repolist all" to see the repos you have.
To enable Red Hat Subscription Management repositories:
subscription-manager repos --enable <repo>
To enable custom repositories:
yum-config-manager --enable <repo>
-----------------------------------------------------
-----------------------------------------------------
[root@localhost.local ~]# yum install epel-release
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
There are no enabled repos.
-------------------------------------------------
----
-----------------------------------------------------
-----------------------------------------------------
これでyum updateを実行できる。
-----------------------------------------------------
[root@localhost.local ~]# yum install epel-release
-----------------------------------------------------