最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

HowtoinstallOracleDatabaseServersoftwaresilentlywith

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-09 08:29:32
文檔

HowtoinstallOracleDatabaseServersoftwaresilentlywith

HowtoinstallOracleDatabaseServersoftwaresilentlywith:Applies to: Oracle Universal Installer - Version: 10.2.0.1 and later[Release: 10.2 and later ] Oracle Server - Enterprise Edition - Version: 10.2.0.1andlater [Release: 10.2andlater] Oracle Server - Standard Edition - Version: 10.2.0.1andla
推薦度:
導(dǎo)讀HowtoinstallOracleDatabaseServersoftwaresilentlywith:Applies to: Oracle Universal Installer - Version: 10.2.0.1 and later[Release: 10.2 and later ] Oracle Server - Enterprise Edition - Version: 10.2.0.1andlater [Release: 10.2andlater] Oracle Server - Standard Edition - Version: 10.2.0.1andla

Applies to: Oracle Universal Installer - Version: 10.2.0.1 and later[Release: 10.2 and later ] Oracle Server - Enterprise Edition - Version: 10.2.0.1andlater [Release: 10.2andlater] Oracle Server - Standard Edition - Version: 10.2.0.1andla

Applies to:

Oracle Universal Installer - Version: 10.2.0.1 and later [Release: 10.2 and later ]
Oracle Server - Enterprise Edition - Version: 10.2.0.1 and later [Release: 10.2 and later]
Oracle Server - Standard Edition - Version: 10.2.0.1 and later [Release: 10.2 and later]
Information in this document applies to any platform.

Goal

How to install Oracle Database Server software in non-interactive or silent mode from command line along with customized listener service creation.

Solution

Generally silent installation can be done with the help of a "Response File". "A Response File" contains all the inputs that are required for doing the silent installation.

The following article helps to install Database Server Software in silent mode:

Note 782918.1 : How to install/deinstall Oracle Database Server software silently from command line without response file

It is possible to launch NETCA during Database Server software installation using the following OUI variable:

b_launchNETCA=true

This variable instructs the OUI to launch NETCA and creates the LISTENER with default port number i.e 1521.

If you want to launch NETCA in silent mode with non-default values then the following two variables must be added to the OUI (runInstaller or setup.exe):

b_launchNETCA=true
s_responseFileName="/my_netca.rsp"

These variables instruct the OUI to launch NETCA and use values from "/my_netca.rsp".

As NETCA is different (from OUI) configuration tool, it is not possible to supply all required NETCA variables through command line to the OUI (i.e runInstaller or setup.exe). The only available option is supplying the NETCA Response File to the OUI.

The NETCA response file can be created using the template supplied with the installation kit.

Ex: "<10g Disk>/database/response/netca.rsp"

Copy "<10g Disk>/database/response/netca.rsp" to "/my_netca.rsp"
Edit "/my_netca.rsp"

and modify the values (Example, Listener Name, Port Number, etc) that suits your environment.

Once the NETCA Response File is created, invoke the following command to install Database Server software in silent mode along with creation of customized listener service.

Note: The examples below are using continuation characters for easier readability, Windows uses "^" and UNIX/LINUX uses "\":

11gR2:

Windows:

> cd Z:\database
> setup.exe -silent -force -debug ^
FROM_LOCATION="Z:\database\stage\products.xml" ^
ORACLE_HOME="D:\app\oracle\product\11.2.0\Db_1" ^
ORACLE_HOME_NAME="Ora11gDb1" ^
TOPLEVEL_COMPONENT={"oracle.server","11.2.0.1.0"} ^
INSTALL_TYPE="EE" ^
n_configurationOption=3 ^
b_launchNETCA=true ^
s_responseFileName="D:\my_netca.rsp"

Unix:

$ cd /mount/dvd/database
$ ./runInstaller -silent -force -debug \
FROM_LOCATION="/mount/dvd/database/stage/products.xml" \
ORACLE_HOME="/u01/app/oracle/product/11.2.0/db_1" \
ORACLE_HOME_NAME="Ora11gDb1" \
TOPLEVEL_COMPONENT='{"oracle.server","11.2.0.1.0"}' \
INSTALL_TYPE="EE" n_configurationOption=3 \
b_launchNETCA=true \
s_responseFileName="/tmp/my_netca.rsp"

11gR1:

Windows : Unix:

> cd Z:\database
> setup.exe -silent -force -debug ^
FROM_LOCATION="Z:\database\stage\products.xml" ^
ORACLE_HOME="D:\app\oracle\product\11.1.0\Db_1" ^
ORACLE_HOME_NAME="Ora11gDb1" ^
ORACLE_BASE="D:\app\oracle" ^
TOPLEVEL_COMPONENT={"oracle.server","11.1.0.6.0"} ^
INSTALL_TYPE="EE" ^
n_configurationOption=3 ^
b_launchNETCA=true ^
s_responseFileName="D:\my_netca.rsp"

$ cd /mount/dvd/database
$ ./runInstaller -silent -force -debug \
FROM_LOCATION="/mount/dvd/database/stage/products.xml" \
ORACLE_HOME="/u01/app/oracle/product/11.1.0/db_1" \
ORACLE_HOME_NAME="Ora11gDb1" ORACLE_BASE="/u01/app/oracle" \
TOPLEVEL_COMPONENT='{"oracle.server","11.1.0.6.0"}' \
INSTALL_TYPE="EE" n_configurationOption=3 \
b_launchNETCA=true \
s_responseFileName="/tmp/my_netca.rsp"


10gR2:

Windows:

> cd Z:\database
> setup.exe -silent -force -debug ^
FROM_LOCATION="Z:\database\stage\products.xml" ^
ORACLE_HOME="D:\app\oracle\product\10.2.0\Db_1" ^
ORACLE_HOME_NAME="Ora10gDb1" ^
TOPLEVEL_COMPONENT={"oracle.server","10.2.0.1.0"} ^
INSTALL_TYPE="EE" ^
n_configurationOption=3 ^
b_launchNETCA=true ^
s_responseFileName="D:\my_netca.rsp"


Unix:

$ cd /mount/dvd/database
$ ./runInstaller -silent -force -debug \
FROM_LOCATION="/mount/dvd/database/stage/products.xml" \
ORACLE_HOME="/u01/app/oracle/product/10.2.0/db_1" \
ORACLE_HOME_NAME="Ora10gDb1" \
TOPLEVEL_COMPONENT='{"oracle.server","10.2.0.1.0"}' \
INSTALL_TYPE="EE" n_configurationOption=3 \
b_launchNETCA=true \
s_responseFileName="/tmp/my_netca.rsp"

Note:

1. On windows, ensure that the command is framed in single line and space is used between each option and variable.
Ex: setup.exe -option1 -option2 variable1=value variable2=value ....
2. Variable "n_configurationOption=3" tells that install "Software Only" option
3. The following options are not mandatory but can be used when required
-force : Allows silent mode installation into a non-empty ORACLE_HOME directory.
-debug : Displays debug information from OUI. This information will be usefull if OUI is not starting.


Example of my_netca.rsp (for 10gR2)

[GENERAL]
RESPONSEFILE_VERSION="10.0"
CREATE_TYPE= "TYPICAL"
LOG_FILE=""/u01/app/oracle/product/10.2.0/db_1/network/tools/log/netca.log""
[oracle.net.ca]
INSTALLED_COMPONENTS={"server","net8","javavm"}
INSTALL_TYPE=""typical""
LISTENER_NUMBER=1
LISTENER_NAMES={"LISTENER"}
LISTENER_PROTOCOLS={"TCP;1522"}
LISTENER_START=""LISTENER""
NAMING_METHODS={"TNSNAMES","ONAMES","HOSTNAME"}
NSN_NUMBER=1
NSN_NAMES={"EXTPROC_CONNECTION_DATA"}
NSN_SERVICE = {"PLSExtProc"}
NSN_PROTOCOLS={"TCP;HOSTNAME;1522"}


For more details about NETCA variables, please reference "netca.rsp" response file template shipped in the respective installation kit: Example
<10gR2 Disk>/database/response/netca.rsp
<11gR1 Disk>/database/response/netca.rsp

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

HowtoinstallOracleDatabaseServersoftwaresilentlywith

HowtoinstallOracleDatabaseServersoftwaresilentlywith:Applies to: Oracle Universal Installer - Version: 10.2.0.1 and later[Release: 10.2 and later ] Oracle Server - Enterprise Edition - Version: 10.2.0.1andlater [Release: 10.2andlater] Oracle Server - Standard Edition - Version: 10.2.0.1andla
推薦度:
標(biāo)簽: se to oracle
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top