在Linux平台上,从Oracle 11gR2开始,不管是单实例的库,仍是RAC库,若是须要用到ASM时,一般都须要单独安装Grid Infrastructure软件。而在Linux平台上以图形界面【OUI Oracle Universal Installer】安装Oracle 11gR2 Grid软件过程当中,会提示以root用户执行orainstRoot.sh和root.sh脚本【以下图一:单实例安装,图二:RAC安装】。 linux
那么这两个脚本分别作了什么,有什么做用呢?本文简单记录: ide
Oracle Central Inventory 目录默认状况下,位于$ORACLE_BASE的上一级目录下,以下图三: spa
1
2
3
4
5
6
7
8
9
10
|
11gOCM->pwd
/u01/app
11gOCM>ls
total 20
drwxrwxr-x. 3 grid oinstall 4096 Oct 28 10:38 11.2.0
drwxr-xr-x 2 grid oinstall 4096 Oct 30 10:20 acfs
drwxrwxr-x. 8 grid oinstall 4096 Oct 28 10:38 grid
drwxrwxr-x. 8 oracle oinstall 4096 Nov 5 10:57 oracle
drwxrwx---. 6 grid oinstall 4096 Oct 10 11:09 oraInventory
11gOCM->
|
1
2
3
4
5
|
11gOCM->
cat/etc/oraInst.loc
inventory_loc=/u01/app/oraInventory
inst_group=oinstall
11gOCM->
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
11gOCM->pwd
/u01/app/11.2.0/grid/bin
11gOCM-> ll oraenv dbhome coraenv
-rwxr-xr-x. 1 grid oinstall 5778 Jan 1 2000 coraenv
-rwxr-xr-x. 1 grid oinstall 2415 Jan 1 2000 dbhome
-rwxr-xr-x. 1 grid oinstall 6183 Jan 1 2000 oraenv
11gOCM-> ll/usr/local/bin/
total 232
-rwxr-xr-x. 1 grid root 5778 Oct 10 10:54 coraenv
-rwxr-xr-x. 1 grid root 2415 Oct 10 10:54 dbhome
-rwxr-xr-x. 1 grid root 6183 Oct 10 10:54 oraenv
-rwxr-xr-x 1 root root 214001 Oct 10 16:39 rlwrap
11gOCM->
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
11gOCM->cat/etc/oratab
#Backup file is /u01/app/11.2.0/grid/srvm/admin/oratab.bak.11gocm line added by Agent
#
# This file is used by ORACLE utilities. It is created by root.sh
# and updated by either Database Configuration Assistant while creating
# a database or ASM Configuration Assistant while creating ASM instance.
# A colon, ':', is used as the field terminator. A new line terminates
# the entry. Lines beginning with a pound sign, '#', are comments.
#
# Entries are of the form:
# $ORACLE_SID:$ORACLE_HOME:<N|Y>:
#
# The first and second fields are the system identifier and home
# directory of the database respectively. The third filed indicates
# to the dbstart utility that the database should , "Y", or should not,
# "N", be brought up at system boot time.
#
# Multiple entries with the same $ORACLE_SID are not allowed.
#
#
+ASM:/u01/app/11.2.0/grid:N
orcl:/u01/app/oracle/product/11.2.0/db_1:N # line added by Agent
11gOCM->
|
1
2
3
4
5
6
7
8
9
|
11gOCM->cat/etc/init/oracle-ohasd.conf
# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
#
# Oracle OHASD startup
start on runlevel [35]
stop on runlevel [!35]
respawn
exec/etc/init.d/init.ohasd run >/dev/null2>&1
|
这是Oracle Enterprise Linux 6及以上版本的操做系统上的变化,在之前版本的操做系统下,由/etc/inittab文件来控制的条目均转移到/etc/init下单个文件来控制。 orm