CentOS Stream 8
Sponsored Link

Oracle Database 19c : インストール2021/06/01

 
Oracle Database 19c をインストールします。
[1] 事前の環境設定で作成した [oracle] ユーザーでログインして作業します。
# インストールディレクトリ作成

[oracle@dlp ~]$
mkdir database
[oracle@dlp ~]$
vi ~/.bash_profile
# 最終行に追記

# ORACLE_BASE : アプリ関連ファイルのベースディレクトリ

# ORACLE_HOME : Oracle ホーム

umask 022
export ORACLE_HOME=/usr/oracle/database
export ORACLE_BASE=/u01/app/oracle
export PATH=$PATH:$ORACLE_HOME/bin
[oracle@dlp ~]$
source ~/.bash_profile

[2] Oracle Databse 19c の Linux 用インストーラーを下記サイトからダウンロードして、[1] で作成したインストールディレクトリにアップロードしておきます。
⇒ https://www.oracle.com/database/technologies/oracle-database-software-downloads.html

[3] ダウンロードしたファイルがある場所へ移動し、ファイルを展開してインストーラーを起動します。
[Successfully Setup Software ***] と表示されればインストール完了です。
なお、デスクトップ環境インストール済みの場合、デスクトップ上のターミナルから、[./runInstaller] を引数無しで実行すると、GUI での対話インストールも可能です。
[oracle@dlp ~]$
cd database

[oracle@dlp database]$
unzip LINUX.X64_193000_db_home.zip
[oracle@dlp database]$
export CV_ASSUME_DISTID=RHEL8.0

[oracle@dlp database]$
export ORA_INVENTORY=/u01/app/oraInventory
# ソフトウェアアオンリーで Enterprise Edition インストール

[oracle@dlp database]$ ./runInstaller -ignorePrereq -waitforcompletion -silent \
oracle.install.option=INSTALL_DB_SWONLY \
ORACLE_HOME=$ORACLE_HOME \
ORACLE_BASE=$ORACLE_BASE \
UNIX_GROUP_NAME=oinstall \
INVENTORY_LOCATION=$ORA_INVENTORY \
oracle.install.db.InstallEdition=EE \
oracle.install.db.OSDBA_GROUP=dba \
oracle.install.db.OSOPER_GROUP=oper \
oracle.install.db.OSBACKUPDBA_GROUP=backupdba \
oracle.install.db.OSDGDBA_GROUP=dgdba \
oracle.install.db.OSKMDBA_GROUP=kmdba \
oracle.install.db.OSRACDBA_GROUP=racdba \
oracle.install.db.rootconfig.executeRootScript=true \
oracle.install.db.rootconfig.configMethod=ROOT \
oracle.install.db.config.starterdb.type=GENERAL_PURPOSE \
oracle.install.db.ConfigureAsContainerDB=false 

Launching Oracle Database Setup Wizard...

# root パスワード入力
 Enter password for 'root' user:
[WARNING] [INS-13014] Target environment does not meet some optional requirements.
   CAUSE: Some of the optional prerequisites are not met. See logs for details. installActions2021-06-01_00-52-24AM.log
   ACTION: Identify the list of failed prerequisite checks from the log: installActions2021-06-01_00-52-24AM.log. Then either from the log file or from installation manual find the appropriate configuration to meet the prerequisites and fix it manually.
The response file for this session can be found at:
 /usr/oracle/database/install/response/db_2021-06-01_00-52-24AM.rsp

You can find the log of this install session at:
 /tmp/InstallActions2021-06-01_00-52-24AM/installActions2021-06-01_00-52-24AM.log
Successfully Setup Software with warning(s).
Moved the install session logs to:
 /u01/app/oraInventory/logs/InstallActions2021-06-01_00-52-24AM
関連コンテンツ