Oracle Database 18c : インストール2018/12/05 |
Oracle Database 18c をインストールします。
|
|
[1] | 作業はインストール前の環境設定で作成した oracle ユーザーで進めるため、oracle ユーザーでログインしておきます。 |
[2] |
Oracle Databse 18c の Linux 用インストーラーを下記サイトからダウンロードしてサーバーの作業用ディレクトリにアップロードしておきます。
⇒ http://www.oracle.com/technology/software/products/database/index.html |
[3] | ダウンロードしたファイルがある場所へ移動し、以下のようにファイルを展開してインストーラーを起動します。 |
[oracle@dlp ~]$ cd database [oracle@dlp database]$ unzip LINUX.X64_180000_db_home.zip [oracle@dlp database]$ ./runInstaller
|
[4] | インストールオプションを選択します。当例では [ソフトウェアのみインストール] するを選択して進めます。 |
[5] | インストールするデータベースのタイプを選択します。当例では [シングル インスタンス データベース] を選択して進めます。 |
[6] | インストールするエディションを選択します。 |
[7] | Oracle のベースディレクトリやアプリケーション関連ファイルの場所を指定します。当例ではデフォルトで進めます。 |
[8] | インストール用ファイルのディレクトリを指定します。当例ではデフォルトで進めます。 |
[9] | 特権グループを指定します。当例ではデフォルトで進めます。 |
[10] | システム要件のチェックになります。以下のように Oracle 推奨ではない設定値になっている場合は通知が表示されます。必要に応じて対応ください。 |
[11] | ここまでの設定の選択の一覧です。よければ [Install] をクリックしてインストールを開始します。 |
[12] | インストールが進行していきます。 |
[13] | インストール中、以下の画面が表示され rootユーザーアカウントで表示のスクリプトを実行するよう求められます。別端末を開く等して rootユーザーアカウントで表示の通り実行し、実行後は OK ボタンをクリックして画面を閉じます。 |
[root@dlp ~]# /u01/app/oraInventory/orainstRoot.sh Changing permissions of /u01/app/oraInventory. Adding read,write permissions for group. Removing read,write,execute permissions for world. Changing groupname of /u01/app/oraInventory to oinstall. The execution of the script is complete.[root@dlp ~]# /usr/oracle/database/root.sh Performing root user operation. The following environment variables are set as: ORACLE_OWNER= oracle ORACLE_HOME= /usr/oracle/database Enter the full pathname of the local bin directory: [/usr/local/bin]: # Enter Copying dbhome to /usr/local/bin ... Copying oraenv to /usr/local/bin ... Copying coraenv to /usr/local/bin ... Creating /etc/oratab file... Entries will be added to the /etc/oratab file as needed by Database Configuration Assistant when a database is created Finished running generic part of root script. Now product-specific root actions will be performed. Do you want to setup Oracle Trace File Analyzer (TFA) now ? yes|[no] : yes Installing Oracle Trace File Analyzer (TFA). Log File: /usr/oracle/database/install/root_dlp.srv.world_2018-12-05_15-32-11-001331604.log Finished installing Oracle Trace File Analyzer (TFA) |
[14] | インストール完了です。[Close] ボタンをクリックして終了します。 |
[15] | Oracle ユーザーの環境変数の設定と、インストールに使用した一時フォルダの削除をしておきます。 |
[oracle@dlp ~]$
vi ~/.bash_profile # 最終行に追記
export ORACLE_HOME=/usr/oracle/database
export PATH=$PATH:$ORACLE_HOME/bin source ~/.bash_profile |
Sponsored Link |