GVKun编程网logo

How to install Oracle Database Server software silently with

2

在本文中,您将会了解到关于HowtoinstallOracleDatabaseServersoftwaresilentlywith的新资讯,并给出一些关于108.YouareinstallingOra

在本文中,您将会了解到关于How to install Oracle Database Server software silently with的新资讯,并给出一些关于108.You are installing Oracle Database 11g on your server. During the installation Oracle Universal、109.In a new installation of Oracle Database 11g, you perform these activities: 1: Organize software、113.You are working on a new Oracle Database 11g server, where only the software is installed and no、2018 How to register and install LAUNCH ICARSCAN software ?的实用技巧。

本文目录一览:

How to install Oracle Database Server software silently with

How to install Oracle Database Server software silently with

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

108.You are installing Oracle Database 11g on your server. During the installation Oracle Universal

108.You are installing Oracle Database 11g on your server. During the installation Oracle Universal

108.You are installing Oracle Database 11g on your server. During the installation Oracle Universal
Installer (OUI) prompts you to enter the path of the inventory directory and also prompts you to specify an
operating system group name. Which statement is true in this case?
A.The ORACLE_BASE parameter is not set.
B.The installation is being performed by the root user.
C.The operating system group that will be specified should have root user as its member.
D.The installation is being performed without the "Create Starter Database" option selected.
E.The operating system group that will be specified must have permission to write to the inventory directory.
答案:E
解析:
这里其实是在安装过程中,指定inventory目录的路径,并且指定操作系统用户组名
inventory这个目录,其实就是安装软件的时候存储一些安装的信息,它的主要作用就是安装和升级,它的路径是通过oraInst.loc文件指定的

指定的系统组对该目录必须有些的权限,因为安装的时候会往里面写,还有日志

A:ORACLE_BASE解释如下 ORACLE_BASE is the root of the Oracle Database directory tree. The Oracle Base directory is the top level directory that you can use to install the varIoUs oracle software products. You can use the same Oracle base directory for multiple installations. For example,/u01/app/oracle is an Oracle base directory created by the oracle user. B:错误,谁会在rott下安装数据库软件啊 C:错误,谁会把root放进去啊 D:错误,不知道这个说的是什么 E:正确

109.In a new installation of Oracle Database 11g, you perform these activities: 1: Organize software

109.In a new installation of Oracle Database 11g, you perform these activities: 1: Organize software

109.In a new installation of Oracle Database 11g,you perform these activities: 1: Organize software and data on different subdirectories to avoid poor performance. 2: Use consistent naming conventions for database files. 3: Separate administrative information pertaining to the database in different directories. Which option corresponds to the type of activities you performed? A.Oracle Managed Files B.Oracle Grid Architecture C.Optimal Flexible Architecture D.Oracle database architecture E.Automatic Storage Management 答案:C 解析: A:OMF(Oracle Managed Files) A service that automates naming,location,creation,and deletion of database files such as control files,redo log files,data files and others,based on a few initialization parameters. You can use Oracle managed files on top of a Traditional file system supported by the host operating system,for example,VxFS or ODM. It can simplify many aspects of the database administration by eliminating the need to devise your own policies for such details. a.db_create_file_dest:指定数据文件位置 b.db_create_online_log_dest_n:控制文件和联机重做日志文件,最多5个 B:http://docs.oracle.com/cd/E11882_01/server.112/e40540/dist_pro.htm#CNCPT1274 C:OFA(optimal flexible architecture) 优化而弹性的体系结构,oracle推荐的 a.建立任何数据文件可以存储在任何磁盘上的目录结构 b.将不同用途的对象分别存放在不同的表空间中 c.通过将不同的数据库组件放到不同的磁盘上来最大限度地提高数据库的可靠性和改进数据库的效率 D:http://docs.oracle.com/cd/E11882_01/server.112/e40540/intro.htm#CNCPT914 E:ASM(Automatic Storage Managemen) 自动存储管理,它是一个多路复用的方案,通过将数据文件、控制文件重做日志文件分布在多个可用的磁盘上来自动布置这些文件

113.You are working on a new Oracle Database 11g server, where only the software is installed and no

113.You are working on a new Oracle Database 11g server, where only the software is installed and no

113.You are working on a new Oracle Database 11g server,where only the software is installed and no
database is created. You plan to create a database on this server using the Database Configuration
Assistant (DBCA).
Some of the requirements set for your database creation task are:
1: Configure the database to operate in shared server mode.
2: disable automatic maintenance tasks such as optimizer statistics collection.
3: Configure a naming method to help the remote user connect to the database instance.
4: Use Automatic Storage Management (ASM) for storing the database files.
5: Configure daily database backup to flash recovery area.
6: Configure Enterprise Manager Database Control to manage the database.
Which of these requirements can be met while creating the database?
A.4 and 6
B.2,3,4,and 6
C.1,2,5,and 6
D.1,and 6
答案:C

第1步--这个是10g的,我在11g上没有找到


第2部--这个也是10g的,11g上没找到


第3步是tnsname的事

第4步


第5步


第6步

2018 How to register and install LAUNCH ICARSCAN software ?

2018 How to register and install LAUNCH ICARSCAN software ?

2018 New Version ICARSCAN is available now! Here’s the instruction on how to install ICARSCAN software.

Step 1 : Scan the QR code behind the ICARSCAN package and download the “EZDIAG” APP

Step 2: Go to the “EZ diag” APP , check ” Mine” to register your ICARSCAN account

1) Enter your email address

2) Choose your region

3) Set password

Step 3: Activate the EZdiag device. Enter the serial number and Verification Code. Check ” Activate Box”.


Step 4: Software Selection. You can choice any 10 diagnostic software or special functions. Please pay attention that you have to select 10 software in 1 time.

Here is the LAUNCH ICARSCAN support vehicle list and Special function List:

1. Car Software Brand List:
America car List:
USAFORD, Chrysler, GM.

European Car List:
ABARTH, BENTLEY, BENZ, BMW, BUGATTI, CITROEN, FERRARI, FIAT, JAGUAR, LANCIA, LANDROVER, MASERATI, MAYBACH, MINI, OPEL, PEUGEOT, PORSCHE, RENAULT, ROLLSROYC, ROMEO, ROVER, SAAB, SEAT, SKODA, SMART, SPRINTER, VOLVO, VW, AUDI

Asia Car List:
ACURA, DAEWOO, DAIHATSU, HOLDEN, HONDA, HYUNDAI, INFINITI, JPISUZU, KIA, LEXU, LUXGEN, MAZDA, MITSUBISHI, NISSAN, PROTON, SSANGYONG, SUBARU, SUZUKI, TOYOTA

China Car List:
QIRUI_TY, FLYER, HAOQING, CHANGCHENG, TRUMPCHI

2.Special function Software Brand List:
RESET SAS, RESET BMS, RESET BLEED, RESET BRAKE, RESET DPF, RESET ETS, RESET GEAR, RESET IMMO, RESET INJEC, RESET OIL, RESET TPMS

Step 5 : Select and Download the software directly.

Step 6: You had been successful to register and download the software for your LAUNCH ICARSCAN . Now you can test your car directly!

If you have problem to register or login in your account, please contact our sales via email < sales@obd2tool.com >

关于How to install Oracle Database Server software silently with的介绍已经告一段落,感谢您的耐心阅读,如果想了解更多关于108.You are installing Oracle Database 11g on your server. During the installation Oracle Universal、109.In a new installation of Oracle Database 11g, you perform these activities: 1: Organize software、113.You are working on a new Oracle Database 11g server, where only the software is installed and no、2018 How to register and install LAUNCH ICARSCAN software ?的相关信息,请在本站寻找。

本文标签: