4
4

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 1 year has passed since last update.

Red Hat Enterprise Linux 8 に Oracle Database 19c をインストール

Last updated at Posted at 2022-04-06

Oracle Database 19c for Linux は Red Hat Enterprise 7/8、Oracle Linux 7/8 で動作保証されています。Oracle Database 19cインストレーション・ガイド には OS の要件が記載されています。
しかし当初 Red Hat Enterprise Linux 8 はサポート対象外だった関係で、単純にインストールしようとすると警告メッセージが出力される、動作保証されない等の問題が発生します。本記事では Red Hat Enterprise Linux 8 に Oracle Grid Infrastructure 19cとOracle Database 19c をインストールする際の注意点を書いています。

Grid Infrastructure のインストール

インストレーション・ガイドに記載された条件を満たした状態で gridSetup.sh を実行すると以下の画面が表示されます。

gridSetup.sh Error

Red Hat Enterprise Linux 8 で Grid Infrastructure を利用するためには少なくとも 19.7(または19.6 + パッチ)の適用が必要です。
このため Grid Infrastructureの「インストール前に」パッチを適用する必要があります。まず Grid Infrastructure のメディアを展開した後に$ORACLE_HOME/OPatchディレクトリを最新の OPatch に入れ替えます。この作業を忘れるとRU 適用エラーが発生してインストール前に処理が停止します。

OPatch の最新化
$ cd $ORACLE_HOME
$ mv OPatch OPatch.org
$ unzip ~/p6880880_122010_Linux-x86-64.zip
Archive:  p6880880_122010_Linux-x86-64.zip
   creating: OPatch/
  inflating: OPatch/README.txt
  inflating: OPatch/datapatch
   ...

次に RU のメディアを用意し、gridSetup.sh に -applyRU オプションとパッチが格納されたディレクトリを指定して実行します。

$ ./gridSetup.sh -applyRU ~/grid_patch/33509923/
Preparing the home to patch...
Applying the patch /home/grid/grid_patch/33509923/...
Successfully applied the patch.
The log can be found at: /tmp/GridSetupActions2022-04-06_09-42-20AM/installerPatchActions_2022-04-06_09-42-20AM.log
Launching Oracle Grid Infrastructure Setup Wizard...

RU の適用が行われた後、Grid Infrastructure のインストーラが起動します。

Grid Infrastructure Installer

インストーラ起動後の作業は同じです。

Oracle Database のインストール

Oracle Database 19c のインストールでも同じ問題が発生します。

Oracle Database 19c Installer

インストーラー起動前に環境変数 CV_ASSUME_DISTID の設定を行い、runInstaller.sh コマンドの指定に -applyRU オプションに Oracle Database 用 RU のディレクトリを指定してパッチを適用してからインストールを行います。マニュアル には-applyOneOffsオプションの指定も記載されていますが、不具合が確認されているため一緒にインストールしないことをお勧めします。

$ export CV_ASSUME_DISTID=OL7
$ cd $ORACLE_HOME
$ ./runInstaller -applyRU ~/dbpatch/33515361/
Preparing the home to patch...
Applying the patch /home/oracle/dbpatch/33515361/...
Successfully applied the patch.
The log can be found at: /opt/oraInventory/logs/InstallActions2022-04-06_10-45-33PM/installerPatchActions_2022-04-06_10-45-33PM.log
Launching Oracle Database Setup Wizard...

インストーラー起動後のオペレーションは変わりません。

Oracle Database Installer

参考資料

  • 19c gridSetup.sh failed on RHEL 8 (Doc ID 2752065.1)
  • Requirements for Installing Oracle Database/Client 19c on OL8 or RHEL8 64-bit (x86-64) (Doc ID 2668780.1)
  • How to Apply a Grid Infrastructure Patch Before Grid Infrastructure Configuration (before root.sh or rootupgrade.sh or gridsetup.bat) is Executed (Doc ID 1410202.1)
4
4
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
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?