2つのスクリプトがあります。一方を別のラッパーと呼ぶことをお勧めします。
ラッパーは次のとおりです。
#!/usr/bin/expect
set timeout 20
spawn "./installOracleDatabase.sh"
expect "replace Disk1/upgrade/gen_inst.sql?" { send "N\r" }
expect "Specify the HTTP port that will be used for Oracle Application Express" { send "\r" }
expect "Specify a port that will be used for the database listener" { send "\r" }
expect "initial configuration:" { send "root\r" }
expect "Confirm the password:" { send "root\r" }
expect "Do you want Oracle Database 11g Express Edition to be started on boot" { send "y\r" }
主なスクリプトは次のとおりです。
#!/bin/bash
#install required libraries and programs
sudo yum -y install libaio bc flex unzip
#unzipping the Oracle package
unzip -q oracle-xe-11.2.0-1.0.x86_64.rpm.zip
cd Disk1
sudo rpm -ivh oracle-xe-11.2.0-1.0.x86_64.rpm
sudo /etc/init.d/oracle-xe configure
cat " . /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh" >> $HOME/.bashrc
2番目のスクリプトの問題は、最後のステップ以降にsudo /etc/init.d/oracle-xe configure
構成スクリプトが「起動時にOracle(...)を起動しますか?」と尋ねられた場合、そのステップの直後に通常のインストール中にOracleが他の作業を実行していることです。いくつかのステップ:
Do you want Oracle Database 11g Express Edition to be started on boot (y/n) [y]:y
Starting Oracle Net Listener...Done
Configuring database...Done
Starting Oracle Database 11g Express Edition instance...Done
Installation completed successfully.
このステップには時間がかかります。しかし、私のスクリプトはy
最後の質問に答えた直後に終了します。
完全な設定が完了するまでスクリプトを待つようにするにはどうすればよいですか?
答え1
最後のOracleステップまでスクリプトを待つには、スクリプトのexpect
最後に次の行を追加します。expect
expect "Starting Oracle Net Listener...Done" { send "\r" }
expect "Configuring database...Done" { send "\r" }
expect "Starting Oracle Database 11g Express Edition instance...Done" { send "\r" }
expect "Installation completed successfully." { send "\r" }
expect eof