Table of Contents
Applies to:
Goal
Solution
Home Database Mysql Tutorial How to install Oracle Database Server software silently with

How to install Oracle Database Server software silently with

Jun 07, 2016 pm 03:02 PM
database install oracle

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: "/database/response/netca.rsp"

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

Unix:

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

11gR1:

Windows : Unix:

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

 

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


10gR2:

Windows:

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


Unix:

$ cd /mount/dvd/database<br> $ ./runInstaller -silent -force -debug \<br> FROM_LOCATION="/mount/dvd/database/stage/products.xml" \<br> ORACLE_HOME="/u01/app/oracle/product/10.2.0/db_1" \<br> ORACLE_HOME_NAME="Ora10gDb1" \<br> TOPLEVEL_COMPONENT='{"oracle.server","10.2.0.1.0"}' \<br> INSTALL_TYPE="EE" n_configurationOption=3 \<br> b_launchNETCA=true \<br> 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
/database/response/netca.rsp
/database/response/netca.rsp
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Leak reveals key specs of Intel Arrow Lake-U, -H, -HX and -S Leak reveals key specs of Intel Arrow Lake-U, -H, -HX and -S Jun 15, 2024 pm 09:49 PM

IntelArrowLakeisexpectedtobebasedonthesameprocessorarchitectureasLunarLake,meaningthatIntel'sbrandnewLionCoveperformancecoreswillbecombinedwiththeeconomicalSkymontefficiencycores.WhileLunarLakeisonlyavailableasava

How long will Oracle database logs be kept? How long will Oracle database logs be kept? May 10, 2024 am 03:27 AM

The retention period of Oracle database logs depends on the log type and configuration, including: Redo logs: determined by the maximum size configured with the "LOG_ARCHIVE_DEST" parameter. Archived redo logs: Determined by the maximum size configured by the "DB_RECOVERY_FILE_DEST_SIZE" parameter. Online redo logs: not archived, lost when the database is restarted, and the retention period is consistent with the instance running time. Audit log: Configured by the "AUDIT_TRAIL" parameter, retained for 30 days by default.

Function to calculate the number of days between two dates in oracle Function to calculate the number of days between two dates in oracle May 08, 2024 pm 07:45 PM

The function in Oracle to calculate the number of days between two dates is DATEDIFF(). The specific usage is as follows: Specify the time interval unit: interval (such as day, month, year) Specify two date values: date1 and date2DATEDIFF(interval, date1, date2) Return the difference in days

The order of the oracle database startup steps is The order of the oracle database startup steps is May 10, 2024 am 01:48 AM

The Oracle database startup sequence is: 1. Check the preconditions; 2. Start the listener; 3. Start the database instance; 4. Wait for the database to open; 5. Connect to the database; 6. Verify the database status; 7. Enable the service (if necessary ); 8. Test the connection.

How much memory does oracle require? How much memory does oracle require? May 10, 2024 am 04:12 AM

The amount of memory required by Oracle depends on database size, activity level, and required performance level: for storing data buffers, index buffers, executing SQL statements, and managing the data dictionary cache. The exact amount is affected by database size, activity level, and required performance level. Best practices include setting the appropriate SGA size, sizing SGA components, using AMM, and monitoring memory usage.

How to use interval in oracle How to use interval in oracle May 08, 2024 pm 07:54 PM

The INTERVAL data type in Oracle is used to represent time intervals. The syntax is INTERVAL <precision> <unit>. You can use addition, subtraction, multiplication and division operations to operate INTERVAL, which is suitable for scenarios such as storing time data and calculating date differences.

How to see the number of occurrences of a certain character in Oracle How to see the number of occurrences of a certain character in Oracle May 09, 2024 pm 09:33 PM

To find the number of occurrences of a character in Oracle, perform the following steps: Get the total length of a string; Get the length of the substring in which a character occurs; Count the number of occurrences of a character by subtracting the substring length from the total length.

How to replace string in oracle How to replace string in oracle May 08, 2024 pm 07:24 PM

The method of replacing strings in Oracle is to use the REPLACE function. The syntax of this function is: REPLACE(string, search_string, replace_string). Usage steps: 1. Identify the substring to be replaced; 2. Determine the new string to replace the substring; 3. Use the REPLACE function to replace. Advanced usage includes: multiple replacements, case sensitivity, special character replacement, etc.

See all articles