| Page 1 Page 2 Page 3
Build Your Own
Oracle RAC Cluster on Oracle Enterprise Linux and
iSCSI (Continued)
For
development and testing only; production deployments will not be
supported!
20.
Install Oracle 10g Clusterware Software
Perform the following installation procedures from only one of the Oracle RAC nodes in the cluster (linux1)!
The Oracle Clusterware software will be installed to both of Oracle RAC nodes in the
cluster by the Oracle Universal Installer.
You are now ready to install the "cluster" part of the
environment - the Oracle Clusterware. In a previous section, you
downloaded and extracted the install files for Oracle Clusterware to linux1
in the directory ~oracle/orainstall/clusterware.
This is the only node from which you need to perform the install.
During the installation of Oracle Clusterware, you will
be asked for the nodes involved and to configure in the RAC cluster.
Once the actual installation starts, it will copy the required software
to all nodes using the remote access we configured in the section Section
14 ("Configure RAC Nodes for Remote Access").
So, what exactly is the Oracle Clusterware responsible
for? It contains all of the cluster and database configuration metadata
along with several system management features for RAC. It allows the
DBA to register and invite an Oracle instance (or instances) to the
cluster. During normal operation, Oracle Clusterware will send messages
(via a special ping operation) to all nodes configured in the cluster,
often called the "heartbeat." If the heartbeat fails for any of the
nodes, it checks with the Oracle Clusterware configuration files (on
the shared disk) to distinguish between a real node failure and a
network failure.
After installing Oracle Clusterware, the Oracle
Universal Installer (OUI) used to install the Oracle 10g
database software (next section) will automatically recognize these
nodes. Like the Oracle Clusterware install you will be performing in
this section, the Oracle Database 10g software only
needs to be run from one node. The OUI will copy the software packages
to all nodes configured in the RAC cluster.
Oracle Clusterware Shared Files
The two shared files (actually file groups) used by
Oracle Clusterware will be stored on the Oracle Cluster File System,
Release 2 (OFCS2) we created earlier. The two shared Oracle Clusterware
file groups are:
- Oracle Cluster Registry (OCR)
- File 1 : /u02/oradata/orcl/OCRFile
- File 2 : /u02/oradata/orcl/OCRFile_mirror
- Size : (2 * 100MB) = 200M
- CRS Voting Disk
- File 1 : /u02/oradata/orcl/CSSFile
- File 2 : /u02/oradata/orcl/CSSFile_mirror1
- File 3 : /u02/oradata/orcl/CSSFile_mirror2
- Size : (3 * 20MB) = 60MB
Note: It is not possible
to use Automatic Storage Management (ASM) for the two shared Oracle
Clusterware files: Oracle Cluster Registry (OCR) or
the CRS Voting Disk files. The problem is that
these files need to be in place and accessible BEFORE any Oracle
instances can be started. For ASM to be available, the ASM instance
would need to be run first.
Also note that the two shared files could be stored on
the OCFS2, shared RAW devices, or another vendor's clustered file
system.
Verifying Terminal Shell Environment
Before starting the Oracle Universal Installer, you should first verify
you are logged onto the server you will be running the installer from
(i.e. linux1) then run the xhost
command as root from the console to allow X
Server connections. Next, login as the oracle
user account. If you are using a remote client to connect to the node
performing the installation (SSH / Telnet to linux1
from a workstation configured with an X Server), you will need to set
the DISPLAY variable to point to your local
workstation. Finally, verify remote access / user equivalence to all
nodes in the cluster:
Verify Server and Enable X Server Access
# hostname linux1 # xhost + access control disabled, clients can connect from any host
Login as the oracle
User Account and Set DISPLAY (if necessary)
# su - oracle $ # IF YOU ARE USING A REMOTE CLIENT TO CONNECT TO THE $ # NODE PERFORMING THE INSTALL $ DISPLAY=<your local workstation>:0.0 $ export DISPLAY
Verify Remote Access / User Equivalence
Verify you are able to run the Secure
Shell commands (ssh or scp)
or the Remote
Shell commands (rsh and rcp)
on the Linux server you will be running the Oracle Universal Installer
from against all other Linux servers in the cluster without being
prompted for a password.
When using the secure
shell method, user equivalence will need to be enabled on any
new terminal shell session before attempting to run the OUI. To enable
user equivalence for the current terminal shell session, perform the
following steps remembering to enter the pass phrase for each key that
you generated when prompted:
$ exec /usr/bin/ssh-agent $SHELL
$ /usr/bin/ssh-add
Enter passphrase for /home/oracle/.ssh/id_rsa: xxxxx
Identity added: /home/oracle/.ssh/id_rsa (/home/oracle/.ssh/id_rsa)
Identity added: /home/oracle/.ssh/id_dsa (/home/oracle/.ssh/id_dsa)
$ ssh linux1 "date;hostname"
Thu Jun 28 03:06:34 EDT 2007
linux1
$ ssh linux2 "date;hostname"
Thu Jun 28 03:07:08 EDT 2007
linux2
When using the remote
shell method, user equivalence is generally defined in the /etc/hosts.equiv
file for the oracle user account and is enabled
on all new terminal shell sessions:
$ rsh linux1 "date;hostname"
Thu Jun 28 03:04:25 EDT 2007
linux1
$ rsh linux2 "date;hostname"
Thu Jun 28 03:04:59 EDT 2007
linux2
Installing Cluster Ready Services
Perform the following tasks to install the Oracle Clusterware:
$ cd ~oracle $ ~oracle/orainstall/clusterware/runInstaller -ignoreSysPrereqs
| Screen Name |
Response |
| Welcome Screen |
Click Next |
| Specify Inventory directory and credentials |
Accept the default values:
Inventory directory:
/u01/app/oracle/oraInventory
Operating System group name:
oinstall |
| Specify Home Details |
Set the Name and Path
for the ORACLE_HOME (actually the $ORA_CRS_HOME that I will be using in
this article) as follows:
Name: OraCrs10g_home
Path: /u01/app/crs |
| Product-Specific Prerequisite Checks |
The installer will run through a series of
checks to determine if the node meets the minimum requirements for
installing and configuring the Oracle Clusterware software. If any of
the checks fail, you will need to manually verify the check that failed
by clicking on the checkbox. For my installation, all checks passed
with no problems.
Click Next to continue. |
| Specify Cluster Configuration |
Cluster Name:
crs
| Public Node Name |
Private Node Name |
Virtual Node Name |
| linux1 |
linux1-priv |
linux1-vip |
| linux2 |
linux2-priv |
linux2-vip |
|
| Specify Network Interface Usage |
| Interface Name |
Subnet |
Interface Type |
| eth0 |
192.168.1.0 |
Public |
| eth1 |
192.168.2.0 |
Private |
|
| Specify OCR Location |
Starting with Oracle Database 10g
Release 2 (10.2) with RAC, Oracle Clusterware provides for the creation
of a mirrored OCR file, enhancing cluster reliability. For the purpose
of this example, I did choose to mirror the OCR file by keeping the
default option of "Normal Redundancy":
Specify OCR Location: /u02/oradata/orcl/OCRFile
Specify OCR Mirror Location: /u02/oradata/orcl/OCRFile_mirror |
| Specify Voting Disk Location |
Starting with Oracle Database 10g
Release 2 (10.2) with RAC, CSS has been modified to allow you to
configure CSS with multiple voting disks. In Release 1 (10.1), you
could configure only one voting disk. By enabling multiple voting disk
configuration, the redundant voting disks allow you to configure a RAC
database with multiple voting disks on independent shared physical
disks. This option facilitates the use of the iSCSI network protocol,
and other Network Attached Storage (NAS) storage solutions. Note that
to take advantage of the benefits of multiple voting disks, you must
configure at least three voting disks. For the purpose of this example,
I did choose to mirror the voting disk by keeping the default option of
"Normal Redundancy":
Voting Disk Location: /u02/oradata/orcl/CSSFile
Additional Voting Disk 1 Location: /u02/oradata/orcl/CSSFile_mirror1
Additional Voting Disk 2 Location: /u02/oradata/orcl/CSSFile_mirror2 |
| Summary |
Click Install to start the installation! |
| Execute Configuration Scripts |
After the installation has completed, you will be prompted to run the orainstRoot.sh
and root.sh script. Open a new console window on
both Oracle RAC nodes in the cluster, (starting with the node you are
performing the install from), as the "root" user account.
Navigate to the /u01/app/oracle/oraInventory
directory and run orainstRoot.sh ON ALL
NODES in the RAC cluster.
Note: After executing the orainstRoot.sh on
both nodes, verify the permissions of the file /etc/oraInst.loc are
644 (-rw-r--r--)
and owned by root. Problems can occur during the installation
of Oracle if the oracle user account does not have read permissions to this file -
(the location of the oraInventory directory cannot be determined). For example, during the
Oracle Clusterware post-installation process (while running the Oracle Clusterware
Verification Utility), the following error will occur:
"CRS is not installed on any of the nodes."
If the permissions to
/etc/oraInst.loc are not set correctly, it is possible you didn't run orainstRoot.sh
on both nodes before running root.sh. Also, the umask setting may be off - it should be
0022.
Run the following on both nodes in the RAC cluster to correct this problem:
# chmod 644 /etc/oraInst.loc
# ls -l /etc/oraInst.loc
-rw-r--r-- 1 root root 63 Sep 3 11:06 /etc/oraInst.loc
Within the same new console window on both Oracle RAC nodes
in the cluster, (starting with the node you are performing the
install from), stay logged in as the "root" user account.
Navigate to the /u01/app/crs
directory and locate the root.sh file for each
node in the cluster - (starting with the node you are performing the
install from). Run the root.sh file ON
ALL NODES in the RAC cluster ONE AT A TIME.
If the Oracle Clusterware home directory is a subdirectory of the ORACLE_BASE directory (which should never be!),
you will receive several warnings regarding permission while running the root.sh script
on both nodes. These warnings can be safely ignored.
The root.sh may take awhile
to run. When running the root.sh on the last node, you will receive a
critical error and the output should look like:
...
Expecting the CRS daemons to be up within 600 seconds.
CSS is active on these nodes.
linux1
linux2
CSS is active on all nodes.
Waiting for the Oracle CRSD and EVMD to start
Oracle CRS stack installed and running under init(1M)
Running vipca(silent) for configuring nodeapps
The given
interface(s), "eth0" is not public. Public interfaces should be used to
configure virtual IPs.
This issue is specific to Oracle 10.2.0.1 (noted in Metalink article
338924.1)
and needs to be resolved before continuing. The easiest workaround is
to re-run vipca (GUI) manually as root from the last node in which the
error occurred. Please keep in mind that vipca is a GUI and will need
to set your DISPLAY variable accordingly to your X server:
# $ORA_CRS_HOME/bin/vipca
When the "VIP Configuration Assistant" appears,
this is how I answered the screen prompts:
Welcome:
Click Next
Network interfaces: Select only the public interface - eth0
Virtual IPs for cluster nodes:
Node
Name: linux1
IP
Alias Name: linux1-vip
IP
Address: 192.168.1.200
Subnet
Mask: 255.255.255.0
Node
Name: linux2
IP
Alias Name: linux2-vip
IP
Address: 192.168.1.201
Subnet
Mask: 255.255.255.0
Summary:
Click Finish
Configuration Assistant Progress Dialog:
Click OK after configuration is complete.
Configuration Results: Click
Exit
Go back to the OUI and acknowledge the "Execute
Configuration scripts" dialog window. |
| End of installation |
At the end of the installation, exit from the OUI. |
Verify Oracle Clusterware Installation
After the installation of Oracle Clusterware, we can run through several tests to
verify the install was successful. Run the following commands
on both nodes in the RAC cluster.
Check cluster nodes
$ /u01/app/crs/bin/olsnodes -n linux1 1 linux2 2
Check Oracle Clusterware Auto-Start Scripts
$ ls -l /etc/init.d/init.*
-r-xr-xr-x 1 root root 1951 Jun 28 08:57 /etc/init.d/init.crs
-r-xr-xr-x 1 root root 4714 Jun 28 08:57 /etc/init.d/init.crsd
-r-xr-xr-x 1 root root 35394 Jun 28 08:57 /etc/init.d/init.cssd
-r-xr-xr-x 1 root root 3190 Jun 28 08:57 /etc/init.d/init.evmd
21.
Install Oracle Database 10g Software
Perform the following installation procedures from only one of the Oracle RAC nodes in the cluster (linux1)!
The Oracle Database software will be installed to both of Oracle RAC nodes in the
cluster by the Oracle Universal Installer.
After successfully installing the Oracle Clusterware
software, the next step is to install the Oracle Database 10g
Release 2 (10.2.0.1.0) with RAC.
For the purpose of this example, you will forgo the
"Create Database" option when installing the software. You will,
instead, create the database using the Database Configuration Assistant
(DBCA) after the install.
Like the Oracle Clusterware install (previous section),
the Oracle 10g database software only needs to be run
from one node. The OUI will copy the software packages to all nodes
configured in the RAC cluster.
Verifying Terminal Shell Environment
As discussed in the previous section, (Install Oracle 10g
Clusterware Software), the terminal shell environment needs
to be configured for remote access and user equivalence to all nodes in
the cluster before running the Oracle Universal Installer. Note that
you can utilize the same terminal shell session used in the previous
section which in this case, you do not have to take any of the actions
described below with regards to setting up remote access and the DISPLAY
variable:
Login as the oracle
User Account and Set DISPLAY (if necessary)
# su - oracle $ # IF YOU ARE USING A REMOTE CLIENT TO CONNECT TO THE $ # NODE PERFORMING THE INSTALL $ DISPLAY=<your local workstation>:0.0 $ export DISPLAY
Verify Remote Access / User Equivalence
Verify you are able to run the Secure
Shell commands (ssh or scp)
or the Remote
Shell commands (rsh and rcp)
on the Linux server you will be running the Oracle Universal Installer
from against all other Linux servers in the cluster without being
prompted for a password.
When using the secure
shell method, user equivalence will need to be enabled on any
new terminal shell session before attempting to run the OUI. To enable
user equivalence for the current terminal shell session, perform the
following steps remembering to enter the pass phrase for each key that
you generated when prompted:
$ exec /usr/bin/ssh-agent $SHELL
$ /usr/bin/ssh-add
Enter passphrase for /home/oracle/.ssh/id_rsa: xxxxx
Identity added: /home/oracle/.ssh/id_rsa (/home/oracle/.ssh/id_rsa)
Identity added: /home/oracle/.ssh/id_dsa (/home/oracle/.ssh/id_dsa)
$ ssh linux1 "date;hostname"
Thu Jun 28 03:06:34 EDT 2007
linux1
$ ssh linux2 "date;hostname"
Thu Jun 28 03:07:08 EDT 2007
linux2
When using the remote
shell method, user equivalence is generally defined in the /etc/hosts.equiv
file for the oracle user account and is enabled
on all new terminal shell sessions:
$ rsh linux1 "date;hostname"
Thu Jun 28 03:04:25 EDT 2007
linux1
$ rsh linux2 "date;hostname"
Thu Jun 28 03:04:59 EDT 2007
linux2
Run the Oracle Cluster Verification Utility
Before installing the Oracle Database Software, we should run
the following database pre-installation check using the
Cluster Verification Utility (CVU).
Note: Instructions for configuring CVU can
be found in the section
"Prerequisites for Using Cluster Verification Utility
discussed earlier in this article.
$ cd ~oracle/orainstall/clusterware/cluvfy
$ ./runcluvfy.sh stage -pre dbinst -n linux1,linux2 -r 10gR2 -verbose
Review the CVU report. Note that this report will contain
the same errors we received when checking pre-installation tasks
for CRS failure to find a suitable set of interfaces for VIPs
and the failure to find specific RPM packages that do not exist in Enterprise Linux 4 Update 5.
These two errors can be safely ignored.
Install Oracle Database 10g Release 2 Software
Install the Oracle Database 10g
Release 2 software with the following:
$ cd ~oracle $ ~oracle/orainstall/database/runInstaller -ignoreSysPrereqs
| Screen Name |
Response |
| Welcome Screen |
Click Next |
| Select Installation Type |
I selected the Enterprise Edition option. |
| Specify Home Details |
Set the Name and Path
for the ORACLE_HOME as follows:
Name: OraDb10g_home1
Path: /u01/app/oracle/product/10.2.0/db_1 |
| Specify Hardware Cluster Installation
Mode |
Select the Cluster Installation option then
select all nodes available. Click Select All to select all servers:
linux1 and linux2.
If the installation stops here and the status of
any of the RAC nodes is "Node not reachable", perform the following
checks:
- Ensure Oracle Clusterware is running on the
node in question.
- Ensure you are able to reach the node in
question from the node you are performing the installation from.
|
| Product-Specific
Prerequisite Checks |
The installer will run through a series of
checks to determine if the node meets the minimum requirements for
installing and configuring the Oracle database software. If any of the
checks fail, you will need to manually verify the check that failed by
clicking on the checkbox.
It is possible to receive an error about the available swap space not meeting its minimum requirements:
Checking available swap space requirements...
Expected result: 3036MB
Actual Result: 1983MB
In most cases, you will have the minimum required swap space (as shown above) and this can be safely ignored.
Simply click the check-box for "Checking available swap space requirements..." and
click Next to continue. |
| Select Database Configuration |
Select the option to "Install database software
only."
Remember that we will create the clustered
database as a separate step using DBCA. |
| Summary |
Click on Install to start the installation! |
| Root Script Window - Run root.sh |
After the installation has completed, you will
be prompted to run the root.sh script. It is
important to keep in mind that the root.sh script will need to be run on
all nodes in the RAC cluster one at a time
starting with the node you are running the database installation from.
First, open a new console window on the node you
are installing the Oracle 10g database software from
as the root user account. For me, this was "linux1".
Navigate to the /u01/app/oracle/product/10.2.0/db_1
directory and run root.sh.
After running the root.sh
script on all nodes in the cluster, go back to the OUI and acknowledge
the "Execute Configuration scripts" dialog window. |
| End of installation |
At the end of the installation, exit from the
OUI. |
22.
Install Oracle 10g Companion CD Software
Perform the following installation procedures from only one of the Oracle RAC nodes in the cluster (linux1)!
The Oracle10g Companion CD software will be installed to both of Oracle RAC nodes in the
cluster by the Oracle Universal Installer.
After successfully installing the Oracle Database
software, the next step is to install the Oracle 10g
Release 2 Companion CD software (10.2.0.1.0).
Please keep in mind that this is an optional step. For
the purpose of this guide, my testing database will often make use of
the Java Virtual Machine (Java VM) and Oracle interMedia
and therefore will require the installation of the Oracle Database 10g
Companion CD. The type of installation to perform will be the Oracle
Database 10g Products installation type.
This installation type includes the Natively Compiled
Java Libraries (NCOMP) files to improve Java performance. If you do not
install the NCOMP files, the ORA-29558:JAccelerator (NCOMP)
not installed error occurs when a database that uses Java VM
is upgraded to the patch release.
Verifying Terminal Shell Environment
As discussed in the previous section, (Install Oracle Database 10g
Software), the terminal shell environment needs to
be configured for remote access and user equivalence to all nodes in
the cluster before running the Oracle Universal Installer. Note that
you can utilize the same terminal shell session used in the previous
section which in this case, you do not have to take any of the actions
described below with regards to setting up remote access and the DISPLAY
variable:
Login as the oracle
User Account and Set DISPLAY (if necessary)
# su - oracle $ # IF YOU ARE USING A REMOTE CLIENT TO CONNECT TO THE $ # NODE PERFORMING THE INSTALL $ DISPLAY=<your local workstation>:0.0 $ export DISPLAY
Verify Remote Access / User Equivalence
Verify you are able to run the Secure
Shell commands (ssh or scp)
or the Remote
Shell commands (rsh and rcp)
on the Linux server you will be running the Oracle Universal Installer
from against all other Linux servers in the cluster without being
prompted for a password.
When using the secure
shell method, user equivalence will need to be enabled on any
new terminal shell session before attempting to run the OUI. To enable
user equivalence for the current terminal shell session, perform the
following steps remembering to enter the pass phrase for each key that
you generated when prompted:
$ exec /usr/bin/ssh-agent $SHELL
$ /usr/bin/ssh-add
Enter passphrase for /home/oracle/.ssh/id_rsa: xxxxx
Identity added: /home/oracle/.ssh/id_rsa (/home/oracle/.ssh/id_rsa)
Identity added: /home/oracle/.ssh/id_dsa (/home/oracle/.ssh/id_dsa)
$ ssh linux1 "date;hostname"
Thu Jun 28 03:06:34 EDT 2007
linux1
$ ssh linux2 "date;hostname"
Thu Jun 28 03:07:08 EDT 2007
linux2
When using the remote
shell method, user equivalence is generally defined in the /etc/hosts.equiv
file for the oracle user account and is enabled
on all new terminal shell sessions:
$ rsh linux1 "date;hostname"
Thu Jun 28 03:04:25 EDT 2007
linux1
$ rsh linux2 "date;hostname"
Thu Jun 28 03:04:59 EDT 2007
linux2
Install Oracle Database 10g Companion CD Software
Install the Oracle Database 10g Companion CD software with the following:
$ cd ~oracle $ ~oracle/orainstall/companion/runInstaller -ignoreSysPrereqs
| Screen Name |
Response |
| Welcome Screen |
Click Next |
| Select a Product to Install |
Select the "Oracle Database 10g Products
10.2.0.1.0" option. |
| Specify Home Details |
Set the destination for the ORACLE_HOME Name
and Path to that of the previous Oracle10g Database
software install as follows:
Name: OraDb10g_home1
Path: /u01/app/oracle/product/10.2.0/db_1 |
| Specify Hardware Cluster Installation
Mode |
The Cluster Installation option will be selected
along with all of the available nodes in the cluster by default. Stay
with these default options and click Next to continue.
If the installation stops here and the status of
any of the RAC nodes is "Node not reachable", perform the following
checks:
- Ensure Oracle Clusterware is running on the
node in question.
- Ensure you are able to reach the node in
question from the node you are performing the installation from.
|
| Product-Specific
Prerequisite Checks |
The installer will run through a series of
checks to determine if the node meets the minimum requirements for
installing and configuring the Companion CD Software. If any of the
checks fail, you will need to manually verify the check that failed by
clicking on the checkbox. For my installation, all checks passed with
no problems.
Click on Next to continue. |
| Summary |
On the Summary screen, click Install to start
the installation! |
| End of installation |
At the end of the installation, exit from the
OUI. |
23.
Create TNS Listener Process
Perform the following configuration procedures
from only one of the Oracle RAC nodes in the cluster (linux1)!
The Network Configuration Assistant (NETCA) will setup the TNS
listener in a clustered configuration on both of Oracle RAC nodes in the cluster..
The DBCA requires the Oracle TNS Listener process to be
configured and running on all nodes in the RAC cluster before it can
create the clustered database.
The process of creating the TNS listener only needs to
be performed on one node in the cluster. All changes will be made and
replicated to all nodes in the cluster. On one of the nodes (I will be
using linux1) bring up the NETCA and run through
the process of creating a new TNS listener process and also configure
the node for local access.
Verifying Terminal Shell Environment
As discussed in the previous section, (Install Oracle Database 10g
Companion CD Software), the terminal shell environment needs
to be configured for remote access and user equivalence to all nodes in
the cluster before running the Network Configuration Assistant (NETCA).
Note that you can utilize the same terminal shell session used in the
previous section which in this case, you do not have to take any of the
actions described below with regards to setting up remote access and
the DISPLAY variable:
Login as the oracle
User Account and Set DISPLAY (if necessary)
# su - oracle $ # IF YOU ARE USING A REMOTE CLIENT TO CONNECT TO THE $ # NODE PERFORMING THE INSTALL $ DISPLAY=<your local workstation>:0.0 $ export DISPLAY
Verify Remote Access / User Equivalence
Verify you are able to run the Secure
Shell commands (ssh or scp)
or the Remote
Shell commands (rsh and rcp)
on the Linux server you will be running the Oracle Universal Installer
from against all other Linux servers in the cluster without being
prompted for a password.
When using the secure
shell method, user equivalence will need to be enabled on any
new terminal shell session before attempting to run the OUI. To enable
user equivalence for the current terminal shell session, perform the
following steps remembering to enter the pass phrase for each key that
you generated when prompted:
$ exec /usr/bin/ssh-agent $SHELL
$ /usr/bin/ssh-add
Enter passphrase for /home/oracle/.ssh/id_rsa: xxxxx
Identity added: /home/oracle/.ssh/id_rsa (/home/oracle/.ssh/id_rsa)
Identity added: /home/oracle/.ssh/id_dsa (/home/oracle/.ssh/id_dsa)
$ ssh linux1 "date;hostname"
Thu Jun 28 03:06:34 EDT 2007
linux1
$ ssh linux2 "date;hostname"
Thu Jun 28 03:07:08 EDT 2007
linux2
When using the remote
shell method, user equivalence is generally defined in the /etc/hosts.equiv
file for the oracle user account and is enabled
on all new terminal shell sessions:
$ rsh linux1 "date;hostname"
Thu Jun 28 03:04:25 EDT 2007
linux1
$ rsh linux2 "date;hostname"
Thu Jun 28 03:04:59 EDT 2007
linux2
Run the Network Configuration Assistant
To start the NETCA, run the following:
$ netca &
The following table walks you through the process of creating a new
Oracle listener for our RAC environment.
| Screen Name |
Response |
Select the Type of Oracle
Net Services Configuration |
Select Cluster Configuration |
| Select the nodes to configure |
Select all of the nodes: linux1 and linux2. |
| Type of Configuration |
Select Listener configuration. |
| Listener Configuration - Next 6 Screens |
The following screens are now like any other
normal listener configuration. You can simply accept the default
parameters for the next six screens:
What do you want to do: Add
Listener name: LISTENER
Selected protocols: TCP
Port number: 1521
Configure another listener: No
Listener configuration complete!
[ Next ]
You will be returned to this Welcome (Type of Configuration) Screen. |
| Type of Configuration |
Select Naming Methods configuration. |
| Naming Methods Configuration |
The following screens are:
Selected Naming Methods: Local
Naming
Naming Methods configuration complete!
[ Next ]
You will be returned to this Welcome (Type of Configuration) Screen. |
| Type of Configuration |
Click Finish to exit the NETCA. |
The Oracle TNS listener process should now be running
on all nodes in the RAC cluster:
$ hostname
linux1
$ ps -ef | grep lsnr | grep -v 'grep' | grep -v 'ocfs' | awk '{print $9}'
LISTENER_LINUX1
=====================
$ hostname
linux2
$ ps -ef | grep lsnr | grep -v 'grep' | grep -v 'ocfs' | awk '{print $9}'
LISTENER_LINUX2
24.
Create the Oracle Cluster Database
The database creation process should only be performed
from one of the Oracle RAC nodes in the cluster (linux1)!
We will use the DBCA to create the clustered database.
Before executing the DBCA, make sure that $ORACLE_HOME
and $PATH are set appropriately for the $ORACLE_BASE/product/10.2.0/db_1
environment.
You should also verify that all services we have
installed up to this point (Oracle TNS listener, Oracle Clusterware
processes, etc.) are running before attempting to start the clustered
database creation process.
Verifying Terminal Shell Environment
As discussed in the previous section, (Create TNS Listener
Process), the terminal shell environment needs to be
configured for remote access and user equivalence to all nodes in the
cluster before running the Database Configuration Assistant (DBCA).
Note that you can utilize the same terminal shell session used in the
previous section which in this case, you do not have to take any of the
actions described below with regards to setting up remote access and
the DISPLAY variable:
Login as the oracle
User Account and Set DISPLAY (if necessary)
# su - oracle $ # IF YOU ARE USING A REMOTE CLIENT TO CONNECT TO THE $ # NODE PERFORMING THE INSTALL $ DISPLAY=<your local workstation>:0.0 $ export DISPLAY
Verify Remote Access / User Equivalence
Verify you are able to run the Secure
Shell commands (ssh or scp)
or the Remote
Shell commands (rsh and rcp)
on the Linux server you will be running the Oracle Universal Installer
from against all other Linux servers in the cluster without being
prompted for a password.
When using the secure
shell method, user equivalence will need to be enabled on any
new terminal shell session before attempting to run the OUI. To enable
user equivalence for the current terminal shell session, perform the
following steps remembering to enter the pass phrase for each key that
you generated when prompted:
$ exec /usr/bin/ssh-agent $SHELL
$ /usr/bin/ssh-add
Enter passphrase for /home/oracle/.ssh/id_rsa: xxxxx
Identity added: /home/oracle/.ssh/id_rsa (/home/oracle/.ssh/id_rsa)
Identity added: /home/oracle/.ssh/id_dsa (/home/oracle/.ssh/id_dsa)
$ ssh linux1 "date;hostname"
Thu Jun 28 03:06:34 EDT 2007
linux1
$ ssh linux2 "date;hostname"
Thu Jun 28 03:07:08 EDT 2007
linux2
When using the remote
shell method, user equivalence is generally defined in the /etc/hosts.equiv
file for the oracle user account and is enabled
on all new terminal shell sessions:
$ rsh linux1 "date;hostname"
Thu Jun 28 03:04:25 EDT 2007
linux1
$ rsh linux2 "date;hostname"
Thu Jun 28 03:04:59 EDT 2007
linux2
Run the Oracle Cluster Verification Utility
Before creating the Oracle clustered database, we should run
the following database configuration check using the
Cluster Verification Utility (CVU).
Note: Instructions for configuring CVU can
be found in the section
"Prerequisites for Using Cluster Verification Utility
discussed earlier in this article.
$ cd ~oracle/orainstall/clusterware/cluvfy
$ ./runcluvfy.sh stage -pre dbcfg -n linux1,linux2 -d ${ORACLE_HOME} -verbose
Review the CVU report. Note that this report will contain
the same error we received when checking pre-installation tasks
for CRS failure to find a suitable set of interfaces for VIPs.
This error can be safely ignored.
Create the Clustered Database
To start the database creation process, run the
following:
$ dbca &
| Screen Name |
Response |
| Welcome Screen |
Select "Oracle Real Application Clusters
database." |
| Operations |
Select Create a Database. |
| Node Selection |
Click on the Select All
button to select all servers: linux1 and linux2. |
| Database Templates |
Select Custom Database. |
| Database Identification |
Select:
Global Database Name:
orcl.idevelopment.info
SID Prefix: orcl
I used idevelopment.info for the database domain.
You may use any domain. Keep in mind that this domain does not have to
be a valid DNS domain. |
| Management Option |
Leave the default options here, which is to
"Configure the Database with Enterprise Manager / Use Database Control
for Database Management." |
| Database Credentials |
I selected to Use the Same
Password for All Accounts. Enter the password (twice)
and make sure the password does not start with a digit number. |
| Storage Options |
For this guide, we will select to use
Automatic Storage Management (ASM). |
| Create ASM Instance |
Supply the SYS password to use for the new ASM
instance.
Also, starting with Oracle10g Release 2, the ASM instance
server parameter file (SPFILE) needs to be on a shared disk. You will
need to modify the default entry for "Create server parameter file
(SPFILE)" to reside on the OCFS2 partition as follows: /u02/oradata/orcl/dbs/spfile+ASM.ora.
All other options can stay at their defaults.
You will then be prompted with a dialog box
asking if you want to create and start the ASM instance. Select the OK
button to acknowledge this dialog.
The OUI will now create and start the ASM
instance on all nodes in the RAC cluster. |
| ASM Disk Groups |
To start, click the Create New button.
This will bring up the "Create Disk Group" window with the four volumes
we configured earlier using ASMLib.
If the volumes we created earlier in this article do not show up in the
"Select Member Disks" window:
(ORCL:VOL1,
ORCL:VOL2,
ORCL:VOL3, and ORCL:VOL4)
then click on the "Change Disk Discovery Path" button and input "ORCL:VOL*".
For the first "Disk Group Name", I used the string "ORCL_DATA1".
Select the first two ASM volumes
(ORCL:VOL1 and ORCL:VOL2)
in the "Select Member Disks" window.
Keep the "Redundancy" setting to "Normal".
After verifying all values in this window are correct, click the [OK] button.
This will present the "ASM Disk Group Creation" dialog. When the ASM Disk Group Creation
process is finished, you will be returned to the "ASM Disk Groups" windows.
Click the Create New button again.
For the second "Disk Group Name", I used the string "FLASH_RECOVERY_AREA".
Select the last two ASM volumes
(ORCL:VOL3 and ORCL:VOL4) in the "Select Member Disks" window.
Keep the "Redundancy" setting to "Normal".
After verifying all values in this window are correct, click the [OK] button.
This will present the "ASM Disk Group Creation" dialog.
When the ASM Disk Group Creation process is finished, you will be returned to
the "ASM Disk Groups" window with two disk groups created and selected.
Select only one of the disk groups by using the checkbox next to the newly created
Disk Group Name "ORCL_DATA1" (ensure that the
disk group for "FLASH_RECOVERY_AREA" is not selected) and click [Next] to continue. |
| Database File Locations |
I selected to use the default, which is to use
Oracle Managed Files:
Database Area: +ORCL_DATA1 |
| Recovery Configuration |
Check the option for "Specify Flash Recovery Area".
For the "Flash Recovery Area", click the [Browse]
button and select the disk group name "+FLASH_RECOVERY_AREA".
My disk group has
a size of about 118GB. When defining the Flash Recovery Area size, use the entire
volume minus 10% (118-10%=106 GB).
I used a "Flash Recovery Area Size"
of 106 GB (108544 MB). |
| Database Content |
I left all of the Database Components (and
destination tablespaces) set to their default value, although it is
perfectly OK to select the Sample Schemas. This option is available
since we installed the Oracle Companion CD software. |
| Database Services |
For this test configuration, click Add,
and enter orcl_taf as the "Service Name." Leave
both instances set to Preferred and for the "TAF Policy" select "Basic". |
| Initialization Parameters |
Change any parameters for your environment. I
left them all at their default settings. |
| Database Storage |
Change any parameters for your environment. I
left them all at their default settings. |
| Creation Options |
Keep the default option Create Database selected. I also
always select to "Generate Database Creation Scripts".
Click Finish to start the database
creation process. After acknowledging the database creation report
and script generation dialog, the database creation will start.
Click OK on the
"Summary" screen. |
| End of Database Creation |
At the end of the database creation, exit from
the DBCA.
Note: When exiting the DBCA you will not receive
any feedback from the dialog window for around 30-60 seconds. After awhile, another
dialog will come up indicating that it is starting all Oracle instances and HA
service "orcl_taf". This may take several minutes to complete. When finished,
all windows and dialog boxes will disappear. |
When the DBCA has completed, you will have a fully
functional Oracle RAC cluster running!
Create the orcl_taf
Service
During the creation of the Oracle clustered database,
you added a service named orcl_taf that will be
used to connect to the database with TAF enabled. During several of my
installs, the service was added to the tnsnames.ora,
but was never updated as a service for each Oracle instance.
Use the following to verify the orcl_taf
service was successfully added:
SQL> show parameter service
NAME TYPE VALUE
-------------------- ----------- --------------------------------
service_names string orcl.idevelopment.info, orcl_taf
If the only service defined was for orcl.idevelopment.info,
then you will need to manually add the service to both instances:
SQL> show parameter service
NAME TYPE VALUE
-------------------- ----------- --------------------------
service_names string orcl.idevelopment.info
SQL> alter system set service_names =
2 'orcl.idevelopment.info, orcl_taf.idevelopment.info' scope=both;
25.
Post-Installation Tasks - (Optional)
This chapter describes several optional tasks that can be applied to your new
Oracle 10g environment in order to enhance availability as well as database management.
Enabling Archive Logs in a RAC Environment
Whether a single instance or clustered database, Oracle tracks and logs all changes to database blocks in
online redolog files. In an Oracle RAC environment, each instance will have its own set of online
redolog files known as a thread. Each Oracle instance will use its group of online redologs
in a circular manner. Once an online redolog fills, Oracle moves to the next one. If the database is in
"Archive Log Mode", Oracle will make a copy of the online redo log before it gets reused. A thread must
contain at least two online redologs (or online redolog groups). The same holds true for a single instance
configuration. The single instance must contain at least two online redologs (or online redolog groups).
The size of an online redolog file is completely independent of another intances' redolog size. Although
in most configurations the size is the same, it may be different depending on the workload and
backup / recovery considerations for each node. It is also worth mentioning that each instance has exclusive
write access to its own online redolog files. In a correctly configured RAC environment, however, each
instance can read another instance's current online redolog file to perform instance recovery if that
instance was terminated abnormally. It is therefore a requirement that online redo logs be located on a
shared storage device (just like the database files).
As already mentioned, Oracle writes to its online redolog files in a circular manner. When the current
online redolog fills, Oracle will switch to the next one. To facilitate media recovery, Oracle allows
the DBA to put the database into "Archive Log Mode" which makes a copy of the online redolog after it
fills (and before it gets reused). This is a process known as archiving.
The Database Configuration Assistant (DBCA) allows users to configure a new database to be in archive log
mode, however most DBA's opt to bypass this option during initial database creation. In cases like this where the database is in no archive
log mode, it is a simple task to put the database into archive log mode. Note however that this will require
a short database outage. From one of the nodes in the Oracle RAC configuration, use the following
tasks to put a RAC enabled database into archive log mode. For the purpose of this article, I will use
the node linux1 which runs the orcl1 instance:
- Login to one of the nodes (i.e. linux1) and disable the cluster instance parameter
by setting cluster_database to FALSE from the current instance:
$ sqlplus "/ as sysdba"
SQL> alter system set cluster_database=false scope=spfile sid='orcl1';
- Shutdown all instances accessing the clustered database:
$ srvctl stop database -d orcl
- Using the local instance, MOUNT the database:
$ sqlplus "/ as sysdba"
SQL> startup mount
- Enable archiving:
SQL> alter database archivelog;
- Re-enable support for clustering by modifying the instance parameter
cluster_database to TRUE from the current instance:
SQL> alter system set cluster_database=true scope=spfile sid='orcl1';
- Shutdown the local instance:
SQL> shutdown immediate
- Bring all instance back up using srvctl:
$ srvctl start database -d orcl
- (Optional) Bring any services (i.e. TAF) back up using srvctl:
$ srvctl start service -d orcl
- Login to the local instance and verify Archive Log Mode is enabled:
$ sqlplus "/ as sysdba"
SQL> archive log list
Database log mode Archive Mode
Automatic archival Enabled
Archive destination USE_DB_RECOVERY_FILE_DEST
Oldest online log sequence 83
Next log sequence to archive 84
Current log sequence 84
After enabling Archive Log Mode, each instance in the RAC configuration can automatically
archive redologs!
Download and Install Custom Oracle Database Scripts
DBA's rely on Oracle's data dictionary views and dynamic performance views in order to
support and better manage their databases. Although these views provide a simple and easy mechanism to
query critical information regarding the database, it helps to have a collection of accurate and readily
available SQL scripts to query these views.
In this section you will download and install a collection of Oracle DBA scripts that can
be used to manage
many aspects of your database including space management, performance, backups,
security, and session management. The Oracle DBA scripts archive can be downloaded
using the following link
http://www.idevelopment.info/data/Oracle/DBA_scripts/common.zip. As the oracle user account, download the common.zip archive to the
$ORACLE_BASE directory of
each node in the cluster. For the purpose of this example, the common.zip archive
will be copied to /u01/app/oracle. Next, unzip the archive file to the $ORACLE_BASE directory.
For example, perform the following on both nodes in the Oracle RAC cluster as the oracle
user account:
$ mv common.zip /u01/app/oracle
$ cd /u01/app/oracle
$ unzip common.zip
The final step is to verify (or set) the appropriate environment variable for the
current UNIX shell to ensure the Oracle SQL scripts can be run from SQL*Plus while
in any directory. For UNIX verify the following environment variable is set
and included in your login shell script:
ORACLE_PATH=$ORACLE_BASE/common/oracle/sql:.:$ORACLE_HOME/rdbms/admin
export ORACLE_PATH
Note that the ORACLE_PATH environment variable should
already be set in the .bash_profile login script that was created
in the section
Create Login Script for oracle User Account.
Now that the Oracle DBA scripts have been unzipped and the UNIX environment variable
($ORACLE_PATH) has been set to the appropriate directory, you should now be able
to run any of the SQL scripts in your $ORACLE_BASE/common/oracle/sql while logged
into SQL*Plus. For example, to query tablespace information while logged into the Oracle
database as a DBA user:
SQL> @dba_tablespaces
Status Tablespace Name TS Type Ext. Mgt. Seg. Mgt. Tablespace Size Used (in bytes) Pct. Used
--------- --------------- ------------ ---------- --------- ------------------ ------------------ ---------
ONLINE UNDOTBS1 UNDO LOCAL MANUAL 1,283,457,024 9,043,968 1
ONLINE SYSAUX PERMANENT LOCAL AUTO 524,288,000 378,732,544 72
ONLINE USERS PERMANENT LOCAL AUTO 2,147,483,648 321,257,472 15
ONLINE SYSTEM PERMANENT LOCAL MANUAL 838,860,800 505,544,704 60
ONLINE INDX PERMANENT LOCAL AUTO 1,073,741,824 65,536 0
ONLINE UNDOTBS2 UNDO LOCAL MANUAL 1,283,457,024 22,282,240 2
ONLINE TEMP TEMPORARY LOCAL MANUAL 1,073,741,824 92,274,688 9
------------------ ------------------ ---------
avg 23
sum 8,225,030,144 1,329,201,152
7 rows selected.
To obtain a list of all available Oracle DBA scripts while logged into SQL*Plus, run the help.sql
script:
SQL> @help.sql
========================================
Automatic Shared Memory Management
========================================
asmm_components.sql
========================================
Automatic Storage Management
========================================
asm_alias.sql
asm_clients.sql
asm_diskgroups.sql
asm_disks.sql
asm_disks_perf.sql
asm_drop_files.sql
asm_files.sql
asm_files2.sql
asm_templates.sql
< --- SNIP --- >
perf_top_sql_by_buffer_gets.sql
perf_top_sql_by_disk_reads.sql
========================================
Workspace Manager
========================================
wm_create_workspace.sql
wm_disable_versioning.sql
wm_enable_versioning.sql
wm_freeze_workspace.sql
wm_get_workspace.sql
wm_goto_workspace.sql
wm_merge_workspace.sql
wm_refresh_workspace.sql
wm_remove_workspace.sql
wm_unfreeze_workspace.sql
wm_workspaces.sql
Create Shared Oracle Password Files
In this section, I present the steps required to configure a shared Oracle password
file between all instances in the Oracle clustered database.
The password file for the database in UNIX is located at
$ORACLE_HOME/dbs/orapw<ORACLE_SID> for each instance and contains a list
of all database users that have SYSDBA privileges. When a database user is granted the
SYSDBA role, the instance records this in the database password file for the instance
you are logged into. But what about the other instances in the cluster? The database password
file on other instances do not get updated and will not contain the user who was just
granted the SYSDBA role. Therefore a program (like RMAN) that tries to login as
this new user with SYSDBA privileges will fail if it tries to use an
instance with a password file that does not contain his or her name.
To resolve this problem, a common solution is to place a single database password file
on a shared / clustered file system and then create symbolic links from each of the instances
to this single version of the database password file. Since the environment described in this
article makes use of the Oracle Clustered File System (OCFS2), we will use it to store
the single version of the database password file.
In this section, we will also be including the Oracle password file for the ASM instance.
- Create the database password directory on the clustered file system mounted
on /u02/oradata/orcl. Perform the following from only one node in the
cluster as the oracle user account - (linux1):
$ mkdir -p /u02/oradata/orcl/dbs
- From one node in the cluster (linux1), move the database password files
to the database password directory on the clustered file system.
Chose a node that contains a database password file that has the most recent
SYSDBA additions. In most cases, this will not matter since any missing
entries can be easily added by granting them the SYSDBA role - (plus the fact
that this is a fresh install and unlikely you created any SYSDBA users at this point!).
Note that the
database server does not need to be shutdown while performing the following actions.
From linux1 as the oracle user account:
$ mv $ORACLE_HOME/dbs/orapw+ASM1 /u02/oradata/orcl/dbs/orapw+ASM
$ mv $ORACLE_HOME/dbs/orapworcl1 /u02/oradata/orcl/dbs/orapworcl
$ ln -s /u02/oradata/orcl/dbs/orapw+ASM $ORACLE_HOME/dbs/orapw+ASM1
$ ln -s /u02/oradata/orcl/dbs/orapworcl $ORACLE_HOME/dbs/orapworcl1
- From the second node in the cluster (linux2):
$ rm $ORACLE_HOME/dbs/orapw+ASM2
$ rm $ORACLE_HOME/dbs/orapworcl2
$ ln -s /u02/oradata/orcl/dbs/orapw+ASM $ORACLE_HOME/dbs/orapw+ASM2
$ ln -s /u02/oradata/orcl/dbs/orapworcl $ORACLE_HOME/dbs/orapworcl2
Now, when a user is granted the SYSDBA role, all instances will have access
to the same password file:
SQL> GRANT sysdba TO scott;
26.
Verify TNS Networking Files
Ensure that the TNS networking files are configured on
both Oracle RAC nodes in the cluster!
listener.ora
We already covered how to create a TNS listener
configuration file (listener.ora) for a clustered
environment in Section
23. The listener.ora file should be
properly configured and no modifications should be needed.
For clarity, I have included a copy of the listener.ora
file from my node linux1 in this guide's support files. I've also included
a copy of my tnsnames.ora file that was
configured by Oracle and can be used for testing the Transparent
Application Failover (TAF). This file should already be configured on
both Oracle RAC nodes in the cluster.
You can include any of these entries on other client
machines that need access to the clustered database.
Connecting to Clustered Database From an
External Client
This is an optional step, but I like to perform it in order to verify
my TNS files are configured correctly. Use another machine (i.e. a Windows machine connected to
the network) that has Oracle
installed and add the TNS entries
(in the tnsnames.ora) from either of the nodes in the cluster that were created
for the clustered database.
Note: Verify that the machine you are connecting from can resolve
all host names exactly how they appear in the listener.ora and tnsnames.ora files.
For the purpose of this document, the machine you are connecting from should be
able to resolve the following host names in the local hosts file or through DNS:
192.168.1.100 linux1
192.168.1.101 linux2
192.168.1.200 linux1-vip
192.168.1.201 linux2-vip
Try to connect to the clustered database using all
available service names defined in the tnsnames.ora
file:
C:\> sqlplus system/manager@orcl2
C:\> sqlplus system/manager@orcl1
C:\> sqlplus system/manager@orcl_taf
C:\> sqlplus system/manager@orcl
27.
Create / Alter Tablespaces
When creating the clustered database, we left all
tablespaces set to their default size. If you are using a large drive
for the shared storage, you may want to make a sizable testing
database.
Note: Please keep in mind that the
database file names (OMF files) being listed in these examples may
differ from what the Oracle Database Configuration Assistant (DBCA)
creates for your environment. When working through this section,
substitute the data file names that were created in your environment where
appropriate. The following query can be used to determine the file
names for your environment:
SQL> select tablespace_name, file_name
2 from dba_data_files
3 union
4 select tablespace_name, file_name
5 from dba_temp_files;
TABLESPACE_NAME FILE_NAME
--------------- --------------------------------------------------
EXAMPLE +ORCL_DATA1/orcl/datafile/example.257.570913311
INDX +ORCL_DATA1/orcl/datafile/indx.270.570920045
SYSAUX +ORCL_DATA1/orcl/datafile/sysaux.260.570913287
SYSTEM +ORCL_DATA1/orcl/datafile/system.262.570913215
TEMP +ORCL_DATA1/orcl/tempfile/temp.258.570913303
UNDOTBS1 +ORCL_DATA1/orcl/datafile/undotbs1.261.570913263
UNDOTBS2 +ORCL_DATA1/orcl/datafile/undotbs2.265.570913331
USERS +ORCL_DATA1/orcl/datafile/users.264.570913355
$ sqlplus "/ as sysdba"
SQL> create user scott identified by tiger default tablespace users;
SQL> grant dba, resource, connect to scott;
SQL> alter database datafile '+ORCL_DATA1/orcl/datafile/users.264.570913355' resize 1024m;
SQL> alter tablespace users add datafile '+ORCL_DATA1' size 1024m autoextend off;
SQL> create tablespace indx datafile '+ORCL_DATA1' size 1024m
2 autoextend on next 50m maxsize unlimited
3 extent management local autoallocate
4 segment space management auto;
SQL> alter database datafile '+ORCL_DATA1/orcl/datafile/system.262.570913215' resize 800m;
SQL> alter database datafile '+ORCL_DATA1/orcl/datafile/sysaux.260.570913287' resize 500m;
SQL> alter tablespace undotbs1 add datafile '+ORCL_DATA1' size 1024m
2 autoextend on next 50m maxsize 2048m;
SQL> alter tablespace undotbs2 add datafile '+ORCL_DATA1' size 1024m
2 autoextend on next 50m maxsize 2048m;
SQL> alter database tempfile '+ORCL_DATA1/orcl/tempfile/temp.258.570913303' resize 1024m;
Here is a snapshot of the tablespaces I have defined for my test
database environment:
Status Tablespace Name TS Type Ext. Mgt. Seg. Mgt. Tablespace Size Used (in bytes) Pct. Used
--------- --------------- ------------ ---------- --------- ------------------ ------------------ ---------
ONLINE UNDOTBS1 UNDO LOCAL MANUAL 1,283,457,024 85,065,728 7
ONLINE SYSAUX PERMANENT LOCAL AUTO 524,288,000 275,906,560 53
ONLINE USERS PERMANENT LOCAL AUTO 2,147,483,648 131,072 0
ONLINE SYSTEM PERMANENT LOCAL MANUAL 838,860,800 500,301,824 60
ONLINE EXAMPLE PERMANENT LOCAL AUTO 157,286,400 83,820,544 53
ONLINE INDX PERMANENT LOCAL AUTO 1,073,741,824 65,536 0
ONLINE UNDOTBS2 UNDO LOCAL MANUAL 1,283,457,024 3,801,088 0
ONLINE TEMP TEMPORARY LOCAL MANUAL 1,073,741,824 27,262,976 3
------------------ ------------------ ---------
avg 22
sum 8,382,316,544 976,355,328
8 rows selected.
28.
Verify the RAC Cluster & Database Configuration
The following RAC verification checks should be performed
on both Oracle RAC nodes in the cluster! For this article, however, I will only
be performing checks from linux1.
This section provides several srvctl
commands and SQL queries you can use to validate your Oracle RAC 10g
configuration.
There are five node-level tasks defined for SRVCTL:
- Adding and deleting node-level applications
- Setting and unsetting the environment for node-level
applications
- Administering node applications
- Administering ASM instances
- Starting and stopping a group of programs that
includes virtual IP addresses, listeners, Oracle Notification Services,
and Oracle Enterprise Manager agents (for maintenance purposes).
Status of all instances and services
$ srvctl status database -d orcl
Instance orcl1 is running on node linux1
Instance orcl2 is running on node linux2
Status of a single instance
$ srvctl status instance -d orcl -i orcl2
Instance orcl2 is running on node linux2
Status of a named service globally across the database
$ srvctl status service -d orcl -s orcl_taf
Service orcl_taf is running on instance(s) orcl2, orcl1
Status of node applications on a particular node
$ srvctl status nodeapps -n linux1
VIP is running on node: linux1
GSD is running on node: linux1
Listener is running on node: linux1
ONS daemon is running on node: linux1
Status of an ASM instance
$ srvctl status asm -n linux1
ASM instance +ASM1 is running on node linux1.
List all configured databases
$ srvctl config database
orcl
Display configuration for our RAC database
$ srvctl config database -d orcl
linux1 orcl1 /u01/app/oracle/product/10.2.0/db_1
linux2 orcl2 /u01/app/oracle/product/10.2.0/db_1
Display all services for the specified
cluster database
$ srvctl config service -d orcl
orcl_taf PREF: orcl2 orcl1 AVAIL:
Display the configuration for node
applications - (VIP, GSD, ONS, Listener)
$ srvctl config nodeapps -n linux1 -a -g -s -l
VIP exists.: /linux1-vip/192.168.1.200/255.255.255.0/eth0:eth1
GSD exists.
ONS daemon exists.
Listener exists.
Display the configuration for the ASM instance(s)
$ srvctl config asm -n linux1
+ASM1 /u01/app/oracle/product/10.2.0/db_1
All running instances in the cluster
SELECT
inst_id
, instance_number inst_no
, instance_name inst_name
, parallel
, status
, database_status db_status
, active_state state
, host_name host
FROM gv$instance
ORDER BY inst_id;
INST_ID INST_NO INST_NAME PAR STATUS DB_STATUS STATE HOST
-------- -------- ---------- --- ------- ------------ --------- -------
1 1 orcl1 YES OPEN ACTIVE NORMAL linux1
2 2 orcl2 YES OPEN ACTIVE NORMAL linux2
All data files which are in the disk group
select name from v$datafile
union
select member from v$logfile
union
select name from v$controlfile
union
select name from v$tempfile;
NAME
-------------------------------------------
+FLASH_RECOVERY_AREA/orcl/controlfile/current.258.570913191
+FLASH_RECOVERY_AREA/orcl/onlinelog/group_1.257.570913201
+FLASH_RECOVERY_AREA/orcl/onlinelog/group_2.256.570913211
+FLASH_RECOVERY_AREA/orcl/onlinelog/group_3.259.570918285
+FLASH_RECOVERY_AREA/orcl/onlinelog/group_4.260.570918295
+ORCL_DATA1/orcl/controlfile/current.259.570913189
+ORCL_DATA1/orcl/datafile/example.257.570913311
+ORCL_DATA1/orcl/datafile/indx.270.570920045
+ORCL_DATA1/orcl/datafile/sysaux.260.570913287
+ORCL_DATA1/orcl/datafile/system.262.570913215
+ORCL_DATA1/orcl/datafile/undotbs1.261.570913263
+ORCL_DATA1/orcl/datafile/undotbs1.271.570920865
+ORCL_DATA1/orcl/datafile/undotbs2.265.570913331
+ORCL_DATA1/orcl/datafile/undotbs2.272.570921065
+ORCL_DATA1/orcl/datafile/users.264.570913355
+ORCL_DATA1/orcl/datafile/users.269.570919829
+ORC |