Home > Article > Operation and Maintenance > oracle 11g rac installation
Oracle 11g RAC (Real Application Cluster) is a high-availability and scalable database solution that can automatically manage database instances and data files in a cluster environment, thereby improving database availability and performance. This article will introduce the installation process of Oracle 11g RAC, including preparations, environment configuration, software installation and cluster settings.
1. Preparation work
2. Environment configuration
net.core.rmem_max = 4194304
net.core.wmem_max = 4194304
fs.file-max = 6815744
kernel.sem = 250 32000 100 128
kernel.shmmni = 4096
kernel.shmall = 1073741824
kernel.shmmax = 4398046511104
Execute the following command on each node to make the parameters take effect:
/sbin/sysctl -p
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
三、Software installation
./runInstaller -silent -responseFile /u01/clusterware/response/grid_install.rsp
During the installation process, you need to select the "Cluster installation" option and specify the name and IP address of each node.
./runInstaller -silent -responseFile /u01/grid/response/grid_install.rsp
During the installation process, you need to select the "Enterprise Edition install" option and specify the location of the shared storage and the Oracle Inventory (oinstall group) path.
./runInstaller -silent -responseFile /u01/database/response/db_install.rsp
During the installation process, you need to select the "Oracle Real Application Clusters database installation" option, specify the location of the shared storage and the Oracle Inventory path, and specify the names of the components and instances to be installed.
4. Cluster settings
crsctl create resource ora. db -type ora.database.type -file /u01/clusterware/db/db.xml
srvctl add asm -diskstring ' DATA' -asmpassword password
At this point, the installation and configuration of Oracle 11g RAC is completed. Before starting the entire cluster, you need to ensure that each node can start Oracle Clusterware and Oracle Grid Infrastructure normally. If you find that startup fails or nodes cannot communicate, you need to check whether the network and environment configuration are correct. At the same time, you need to use tools such as crsctl and srvctl to manage the resources and instances of the entire cluster.
The above is the detailed content of oracle 11g rac installation. For more information, please follow other related articles on the PHP Chinese website!