redhat7.6安裝Oracle11G RAC
1 關閉防火牆
檢視防火牆的狀態,此防火牆是關閉的
[root@localhost ~]# systemctl status firewalld
● firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
Active: inactive (dead)
Docs: man:firewalld(1)
永久關閉防火牆
[root@localhost ~]# systemctl disable firewalld
臨時關閉防火牆
[root@localhost ~]# systemctl stop firewalld
2 修改主機名
檢視主機名:
[root@localhost ~]# hostnamectl status
Static hostname: localhost.localdomain
Icon name: computer-server
Chassis: server
Machine ID: 06b1c1b5f9984c23b62ab95683170e1c
Boot ID: 35edf6b5eb464561a03c07b7e8aa4c5d
Operating System: Red Hat Enterprise Linux Server 7.6 (Maipo)
CPE OS Name: cpe:/o:redhat:enterprise_linux:7.6:GA:server
Kernel: Linux 3.10.0-957.el7.x86_64
Architecture: x86-64
設定主機名
[root@localhost ~]# hostname testdb1
修改/etc/hostname檔案如下:
[root@localhost ~]# cat /etc/hostname
#localhost.localdomain
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
#public ip:
17.95.211.153 testdb1
17.95.211.154 testdb2
#vip
17.95.211.198 testdb1-vip
17.95.211.199 testdb2-vip
#priv ip
18.96.211.153 testdb1-priv
18.96.211.154 testdb2-priv
#scan ip
17.95.211.200 testdb-scan
3 關閉SELINUX
[root@localhost ~]# cat /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of three values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
4 檢查系統相關配置:
記憶體:grep MemTotal /proc/meminfo
swap: grep SwapTotal /proc/meminfo
臨時空間: df -k /tmp
安裝資料庫的目錄:
5 安裝軟體包:
使用如下命令檢查:
rpm -q --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" \
binutils \
compat-libstdc++-33 \
ksh \
gcc \
gcc-c++ \
glibc \
glibc-common \
glibc-devel \
glibc-headers \
libaio \
libaio-devel \
libgcc \
libstdc++ \
libstdc++-devel \
make \
sysstat \
compat-libcap1 \
cpp \
mpfr \
libXp \
xorg-x11-utils \
xorg-x11-xauth \
smartmontools \
ethtool \
bind-utils \
pam |grep not
package compat-libstdc++-33 is not installed --此RPM需要從其它版本上傳進行安裝,
剩餘的幾個在安裝的映象檔案中是有的
package ksh is not installed
package libaio-devel is not installed
package libXp is not installed
6 修改系統的核心引數 /etc/sysctl.conf(#註釋的引數後續會根據情況進行調整的)
kernel.shmmni = 4096
kernel.shmall =46121446
kernel.shmmax =188913445683
fs.file-max = 6815744
net.ipv4.ip_local_port_range = 9000 65500
#net.ipv4.conf.enp175s0.rp_filter = 2
#net.ipv4.conf.enp59s0.rp_filter = 2
net.ipv4.conf.bond0.rp_filter = 1
net.core.rmem_default = 4194304
net.core.rmem_max = 26214400
net.core.wmem_default = 262144
net.core.wmem_max = 4194304
kernel.randomize_va_space=0
net.ipv4.ipfrag_high_thresh = 16777216
net.ipv4.ipfrag_low_thresh = 15728640
vm.vfs_cache_pressure=200
vm.swappiness = 0
vm.dirty_background_ratio = 3
vm.dirty_ratio = 80
vm.dirty_expire_centisecs = 600
vm.dirty_writeback_centisecs = 120
vm.min_free_kbytes=4096000
kernel.sem=4096 524288 4096 128
kernel.watchdog_thresh=30
fs.aio-max-nr=50000000
vm.min_free_kbytes=1543503
#vm.nr_hugepages=37683
執行如下命令,使其生效: sysctl -p
7 資源限制修改 /etc/security/limits.conf
grid soft nproc 2047
grid hard nproc 16384
grid soft nofile 1024
grid hard nofile 65536
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
8 登陸引數調整 /etc/pam.d/login
session required /lib64/security/pam_limits.so
9 /etc/profile 的配置
if [ $USER = "oracle" ] || [ $USER = "grid" ]; then
if [ \$SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
umask 022
fi
10 建立組、使用者、目錄及設定環境變數
(節點1和節點2都要執行)
10.1 建立使用者和組 (grid\oracle 兩個節點的使用者的密碼必須一致)
groupadd -g 600 oinstall
groupadd -g 601 asmadmin
groupadd -g 602 dba
groupadd -g 603 oper
groupadd -g 604 asmdba
groupadd -g 605 asmoper
useradd -u 701 -g oinstall -G asmadmin,asmdba,asmoper,dba grid
useradd -u 702 -g oinstall -G dba,oper,asmdba oracle
設定使用者密碼:Oracle11g_test
passwd grid
passwd grid
10.2 建立目錄
mkdir -p /u01/app/11.2.0/grid
chown -R grid:oinstall /u01
mkdir /u01/app/oracle
chown oracle:oinstall /u01/app/oracle
chmod -R 775 /u01
10.3 修改grid使用者的環境變數
alias ls="ls -FA"
ORACLE_SID=+ASM1;export ORACLE_SID
ORACLE_BASE=/u01/app/grid; export ORACLE_BASE
ORACLE_HOME=/u01/app/11.2.0/grid;export ORACLE_HOME
GRID_HOME=/u01/app/11.2.0/grid; export GRID_HOME
ORACLE_PATH=/u01/app/u01/common/u01/sql;export ORACLE_PATH
ORACLE_TERM=xterm;export ORACLE_TERM
TNS_ADMIN=$ORACLE_HOME/network/admin;export TNS_ADMIN
PATH=.:${JAVA_HOME}/bin:${PATH}:$HOME/bin:$ORACLE_HOME/bin
PATH=${PATH}:/usr/bin:/bin:/usr/bin/X11:/usr/local/bin
PATH=${PATH}:/u01/app/common/oracle/bin
PATH=$PATH:$ORACLE_HOME/oracm/bin:$ORACLE_HOME/OPatch
export PATH
LD_LIBRARY_PATH=$ORACLE_HOME/lib
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:$ORACLE_HOME/oracm/lib
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/lib/usr/lib:/usr/local/lib
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:$ORACLE_HOME/ctx/lib
export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/JRE
CLASSPATH=${CLASSPATH}:$ORACLE_HOME/jlib
CLASSPATH=${CLASSPATH}:$ORACLE_HOME/rdbms/jlib
CLASSPATH=${CLASSPATH}:$ORACLE_HOME/ctx/lib
export CLASSPATH
export TMP=/tmp
export TMPDIR=/tmp
export NLS_LANG=AMERICAN_AMERICA.ZHS16GBK
export SQLPATH=~/admin/sql:/$ORACLE_HOME/sqlplus/admin
export NLS_DATE_FORMAT='yyyy-mm-dd hh24:mi:ss'
umask 022
10.4 修改Oracle使用者的環境變數(節點1、2對應不同的ORACLE_SID,如節點1-ractest1,節點2-ractest2)
ORACLE_SID=testdb1;export ORACLE_SID
ORACLE_UNQNAME=testdb;export ORACLE_UNQNAME
ORACLE_BASE=/u01/app/oracle;export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1; export ORACLE_HOME
ORACLE_PATH=/u01/app/common/u01/sql; export ORACLE_PATH
ORACLE_TERM=xterm; export ORACLE_TERM
TNS_ADMIN=$ORACLE_HOME/network/admin; export TNS_ADMIN
PATH=.:${JAVA_HOME}/bin:${PATH}:$HOME/bin:$ORACLE_HOME/bin
PATH=${PATH}:/usr/bin:/bin:/usr/bin/X11:/usr/local/bin
PATH=${PATH}:/u01/app/common/oracle/bin
PATH=${PATH}:$ORACLE_HOME/oracm/bin:$ORACLE_HOME/OPatch
export PATH
LD_LIBRARY_PATH=$ORACLE_HOME/lib
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:$ORACLE_HOME/oracm/lib
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/lib:/usr/lib:/usr/local/lib
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:$ORACLE_HOME/ctx/lib
export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/JRE
CLASSPATH=${CLASSPATH}:$ORACLE_HOME/jlib
CLASSPATH=${CLASSPATH}:$ORACLE_HOME/rdbms/jlib
CLASSPATH=${CLASSPATH}:$ORACLE_HOME/network/jlib
export CLASSPATH
export TMP=/tmp
export TMPDIR=/tmp
#export NLS_LANG=AMERICAN_AMERICAN.ZHS16GBK ---此環境變數會影響資料庫軟體及dbca的安裝,最好不要使用
export NLS_DATE_FORMAT='yyyy-mm-dd hh24:mi:ss'
umask 022
11 配置使用者有效性 Oracle11g_test
使用如下命令建立使用者等效性,效率比較高:
sshsetup/sshUserSetup.sh -user grid -hosts "testdb1 testdb2" -advanced -noPromptPassphrase
sshsetup/sshUserSetup.sh -user oracle -hosts "testdb1 testdb2" -advanced -noPromptPassphrase
ssh testdb1 date
ssh testdb2 date
12. 配置時鐘同步,
由於在RHEL7開始時間同步,預設使用chrony進行時間同步,故使用chrony 或NTPD其中一種方法即可。
chrony配置--主機組已完成
在RHEL7開始時間同步,預設使用chrony進行時間同步,使用chrony需要注意修改以下內容:
# vi /etc/chrony.conf
將makestep 10 3這一條註釋掉,在最後新增時間伺服器:
server xxx.xxx.xxx.xx
重啟chrony服務:
# systemctl restart chronyd
檢查chrony的同步情況:
# chronyc sourcestats
檢視/etc/chrony.conf 引數檔案:
[root@testdb1 ~]# cat /etc/chrony.conf |grep -v "#"
server 17.95.196.58 prefer
server 17.95.196.59 iburst
driftfile /var/lib/chrony/drift
makestep 1.0 3
rtcsync
logdir /var/log/chrony
[root@testdb1 ~]#
##################################################################
修改ntp--主機組已完成,需檢查
在RHEL7開始時間同步,預設使用chrony,推薦使用chrony,但也可以使用NTP,以下是NTP的配置方法:
開啟/etc/sysconfig/ntpd檔案,修改如下:
# Command line options for ntpd
OPTIONS="-x"
修改完成,需要重啟ntpd服務
# systemctl restart ntpd
# ps -ef | grep ntp | grep -v grep
ntp 72819 1 0 09:34 ? 00:00:00 /usr/sbin/ntpd -u ntp:ntp -x
root 72822 72819 0 09:34 ? 00:00:00 /usr/sbin/ntpd -u ntp:ntp -x
注意:chronyd服務的啟用導致NTPD服務無法預設開機啟動,解決辦法就是
# systemctl disable chronyd
# systemctl stop chronyd
**********檢查指令碼
ntpq -p
####################################################################################
13 禁用透明大頁
13.1 檢視透明大頁
[root@testdb1 ~]# cat /sys/kernel/mm/transparent_hugepage/enabled
[always] madvise never
13.2 修改配置
[root@testdb2 ~]# cat /etc/default/grub
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="crashkernel=auto rd.lvm.lv=rhel/root rd.lvm.lv=rhel/swap rhgb quiet"
GRUB_DISABLE_RECOVERY="true"
將transparent_hugepage=never 新增到GRUB_CMDLINE_LINUX中去,如下
GRUB_CMDLINE_LINUX="crashkernel=auto rd.lvm.lv=rhel/root rd.lvm.lv=rhel/swap rhgb quiet transparent_hugepage=never"
13.3 重新生成grud檔案 Run the grub2–mkconfig command to regenerate the grub.cfg file.
[root@testdb2 ~]# grub2-mkconfig -o /boot/grub2/grub.cfg
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-3.10.0-957.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-957.el7.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-12239f6780934a17a9cc2fd6fb9c80fc
Found initrd image: /boot/initramfs-0-rescue-12239f6780934a17a9cc2fd6fb9c80fc.img
done
13.4 重啟伺服器,驗證配置是否生效
[xunjian@testdb1 ~]$ cat /sys/kernel/mm/transparent_hugepage/enabled
always madvise [never]
14 禁用avahi-daemon
systemctl stop avahi-daemon.socket
systemctl stop avahi-daemon.service
systemctl disable avahi-daemon.socket
systemctl disable avahi-daemon.service
systemctl status avahi-daemon.socket
systemctl status avahi-daemon.service
15 設定RemoveIPC=false
# vi /etc/systemd/logind.conf
RemoveIPC=no
重啟systemd-logind服務或重啟主機
# systemctl daemon-reload
# systemctl restart systemd-logind
參考:ALERT: Setting RemoveIPC=yes on Redhat 7.2 Crashes ASM and Database Instances as Well as Any
Application That Uses a Shared Memory Segment (SHM) or Semaphores (SEM) (文件 ID 2081410.1)
如果後續OS升級後,也需要檢查這個引數,以避免相關問題
16 設定/etc/sysconfig/network
禁止將HAIP(169.254.0.0/16)加入路由表,需要在/etc/sysconfig/network中新增:
cat >> /etc/sysconfig/network<<EOF
NOZEROCONF=yes
EOF
設定路徑過濾寬鬆模式
在RHEL 7預設情況下,路徑過濾是嚴格限制,這在心跳多網路卡的情況下可能會造成問題,需要設定路徑過濾寬鬆模式
# vi /etc/sysctl.d/98-oracle.conf
net.ipv4.conf.eno33557248.rp_filter = 2
16 配置儲存
16.1 編輯引數檔案:
[root@dbssvra rules.d]# cat 99-oracle-asmdevices.rules
KERNEL=="dm-*",ENV{DM_UUID}=="mpath-360000000000009a000000106",SYMLINK+="asm/ocr_001",OWNER="grid",GROUP="oinstall",MODE="0660"
KERNEL=="dm-*",ENV{DM_UUID}=="mpath-360000000000009a000000107",SYMLINK+="asm/ocr_002",OWNER="grid",GROUP="oinstall",MODE="0660"
KERNEL=="dm-*",ENV{DM_UUID}=="mpath-360000000000009a000000108",SYMLINK+="asm/ocr_003",OWNER="grid",GROUP="oinstall",MODE="0660"
KERNEL=="dm-*",ENV{DM_UUID}=="mpath-360000000000009a00000010b",SYMLINK+="asm/ogg_001",OWNER="grid",GROUP="oinstall",MODE="0660"
KERNEL=="dm-*",ENV{DM_UUID}=="mpath-360000000000009a00000010c",SYMLINK+="asm/data_001",OWNER="grid",GROUP="oinstall",MODE="0660"
此處的使用者屬組為oinstall ,跟個人的安裝習慣有關,由於在安裝grid和database軟體時,我自己習慣性將所有屬組都選擇
為oinstall,故在儲存配置時,設定為oinstall. 按照Oracle的建議,最好是asmadmin
16.2 重啟伺服器,或執行如下命令,生成裝置別名
/sbin//udevadm control --reload-rules
/sbin/udevadm trigger --action=change
17 準備安裝GRID
export DISPLAY=17.95.22.125:0.0
解壓grid的包,然後修改如下檔案,否則在檢測依賴包時,發現elfutils-libelf-devel 和 pdksh-5.2.14 沒有相關的依賴包
解決方法:
[root@testdb1 admin]# pwd
/tmp/software/grid/stage/cvu/cv/admin
[root@testdb1 admin]# cat cvu_config |grep CV_ASSUME_DISTID
CV_ASSUME_DISTID=OEL6
退出./runInstaller 並重新執行,即可。
執行root.sh時,會報如下錯誤,即ohasd無法啟動,此問題時由於redhat7的命令同redhat6發生變化引起的
profile reader pa cert TP
profile reader peer cert TP
peer user cert
pa user cert
Adding Clusterware entries to inittab
ohasd failed to start --報錯,發現不能啟動,按照後續步驟進行操作,就OK了
Failed to start the Clusterware. Last 20 lines of the alert log follow: --
2021-10-18 15:47:44.647:
[client(208520)]CRS-2101:The OLR was formatted using version 3.
在執行root.sh前,首先建立如下檔案:
[root@testdb1 ~]# touch /usr/lib/systemd/system/ohas.service
[root@testdb1 ~]# chmod 777 /usr/lib/systemd/system/ohas.service
[root@testdb1 ~]# vi /usr/lib/systemd/system/ohas.service
[Unit]
Description=Oracle High Availability Services
After=syslog.target
[Service]
ExecStart=/etc/init.d/init.ohasd run >/dev/null 2>&1 Type=simple
Restart=always
[Install]
WantedBy=multi-user.target
~
"/usr/lib/systemd/system/ohas.service" 9L, 201C written
[root@testdb1 ~]# systemctl daemon-reload
[root@testdb1 ~]# systemctl enable ohas.service
在執行root.sh過程中,時刻檢查,並執行如下命令,發現執行root.sh沒有任何報錯:
[root@testdb1 ~]# ls -ltr /etc/init.d/init.ohasd
ls: cannot access /etc/init.d/init.ohasd: No such file or directory
[root@testdb1 ~]# ls -ltr /etc/init.d/init.ohasd
ls: cannot access /etc/init.d/init.ohasd: No such file or directory
[root@testdb1 ~]# ls -ltr /etc/init.d/init.ohasd
ls: cannot access /etc/init.d/init.ohasd: No such file or directory
[root@testdb1 ~]# ls -ltr /etc/init.d/init.ohasd
ls: cannot access /etc/init.d/init.ohasd: No such file or directory
[root@testdb1 ~]# ls -ltr /etc/init.d/init.ohasd
ls: cannot access /etc/init.d/init.ohasd: No such file or directory
[root@testdb1 ~]# ls -ltr /etc/init.d/init.ohasd
ls: cannot access /etc/init.d/init.ohasd: No such file or directory
[root@testdb1 ~]# ls -ltr /etc/init.d/init.ohasd
-rwxr-xr-x 1 root root 8782 Oct 18 16:20 /etc/init.d/init.ohasd
[root@testdb1 ~]# systemctl start ohas.service systemctl restart ohas.service
[root@testdb1 ~]# systemctl status ohas.service
● ohas.service - Oracle High Availability Services
Loaded: loaded (/usr/lib/systemd/system/ohas.service; enabled; vendor preset: disabled)
Active: active (running) since Mon 2021-10-18 16:21:50 CST; 13s ago
Main PID: 242990 (init.ohasd)
Tasks: 1
CGroup: /system.slice/ohas.service
└─242990 /bin/sh /etc/init.d/init.ohasd run >/dev/null 2>&1 Type=simple
Oct 18 16:21:50 testdb1 systemd[1]: Started Oracle High Availability Services.
以下為安裝grid軟體,執行root.sh時沒有任何報錯的詳細資訊:
[root@testdb1 ~]# /u01/app/oraInventory/orainstRoot.sh
Changing permissions of /u01/app/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.
Changing groupname of /u01/app/oraInventory to oinstall.
The execution of the script is complete.
[root@testdb1 ~]# /u01/app/11.2.0/grid/root.sh
Performing root user operation for Oracle 11g
The following environment variables are set as:
ORACLE_OWNER= grid
ORACLE_HOME= /u01/app/11.2.0/grid
Enter the full pathname of the local bin directory: [/usr/local/bin]:
The contents of "dbhome" have not changed. No need to overwrite.
The contents of "oraenv" have not changed. No need to overwrite.
The contents of "coraenv" have not changed. No need to overwrite.
Creating /etc/oratab file...
Entries will be added to the /etc/oratab file as needed by
Database Configuration Assistant when a database is created
Finished running generic part of root script.
Now product-specific root actions will be performed.
Using configuration parameter file: /u01/app/11.2.0/grid/crs/install/crsconfig_params
Creating trace directory
User ignored Prerequisites during installation
Installing Trace File Analyzer
OLR initialization - successful
root wallet
root wallet cert
root cert export
peer wallet
profile reader wallet
pa wallet
peer wallet keys
pa wallet keys
peer cert request
pa cert request
peer cert
pa cert
peer root cert TP
profile reader root cert TP
pa root cert TP
peer pa cert TP
pa peer cert TP
profile reader pa cert TP
profile reader peer cert TP
peer user cert
pa user cert
Adding Clusterware entries to inittab
CRS-2672: Attempting to start 'ora.mdnsd' on 'testdb1'
CRS-2676: Start of 'ora.mdnsd' on 'testdb1' succeeded
CRS-2672: Attempting to start 'ora.gpnpd' on 'testdb1'
CRS-2676: Start of 'ora.gpnpd' on 'testdb1' succeeded
CRS-2672: Attempting to start 'ora.cssdmonitor' on 'testdb1'
CRS-2672: Attempting to start 'ora.gipcd' on 'testdb1'
CRS-2676: Start of 'ora.cssdmonitor' on 'testdb1' succeeded
CRS-2676: Start of 'ora.gipcd' on 'testdb1' succeeded
CRS-2672: Attempting to start 'ora.cssd' on 'testdb1'
CRS-2672: Attempting to start 'ora.diskmon' on 'testdb1'
CRS-2676: Start of 'ora.diskmon' on 'testdb1' succeeded
CRS-2676: Start of 'ora.cssd' on 'testdb1' succeeded
ASM created and started successfully.
Disk Group CRS created successfully.
clscfg: -install mode specified
Successfully accumulated necessary OCR keys.
Creating OCR keys for user 'root', privgrp 'root'..
Operation successful.
CRS-4256: Updating the profile
Successful addition of voting disk 809cce57a60b4fa8bf36107a1c5c346a.
Successful addition of voting disk 240cf275a8044fc8bffa75eb297efe4f.
Successful addition of voting disk 6d3f31fff2284f68bf9d18da4ae254f7.
Successfully replaced voting disk group with +CRS.
CRS-4256: Updating the profile
CRS-4266: Voting file(s) successfully replaced
## STATE File Universal Id File Name Disk group
-- ----- ----------------- --------- ---------
1. ONLINE 809cce57a60b4fa8bf36107a1c5c346a (/dev/asm/ocr_001) [CRS]
2. ONLINE 240cf275a8044fc8bffa75eb297efe4f (/dev/asm/ocr_002) [CRS]
3. ONLINE 6d3f31fff2284f68bf9d18da4ae254f7 (/dev/asm/ocr_003) [CRS]
Located 3 voting disk(s).
CRS-2672: Attempting to start 'ora.asm' on 'testdb1'
CRS-2676: Start of 'ora.asm' on 'testdb1' succeeded
CRS-2672: Attempting to start 'ora.CRS.dg' on 'testdb1'
CRS-2676: Start of 'ora.CRS.dg' on 'testdb1' succeeded
Configure Oracle Grid Infrastructure for a Cluster ... succeeded
[grid@testdb1 ~]$ crs_stat -t
Name Type Target State Host
------------------------------------------------------------
ora.CRS.dg ora....up.type ONLINE ONLINE testdb1
ora....N1.lsnr ora....er.type ONLINE ONLINE testdb1
ora.asm ora.asm.type ONLINE ONLINE testdb1
ora.cvu ora.cvu.type ONLINE ONLINE testdb1
ora.gsd ora.gsd.type OFFLINE OFFLINE
ora....network ora....rk.type ONLINE ONLINE testdb1
ora.oc4j ora.oc4j.type ONLINE ONLINE testdb1
ora.ons ora.ons.type ONLINE ONLINE testdb1
ora.scan1.vip ora....ip.type ONLINE ONLINE testdb1
ora....SM1.asm application ONLINE ONLINE testdb1
ora....db1.gsd application OFFLINE OFFLINE
ora....db1.ons application ONLINE ONLINE testdb1
ora....db1.vip ora....t1.type ONLINE ONLINE testdb1
18 安裝oracle database軟體
解壓,並按照17步的操作進行修改,否則又會報依賴包不全。
在安裝的過程中,會報如下錯誤:
使用如下方法解決:
只在節點1進行修改
vi $ORACLE_HOME/sysman/lib/
原內容:
#===========================
# emdctl
#===========================
$(SYSMANBIN)emdctl:
$(MK_EMAGENT_NMECTL)
修改內容如下
#===========================
# emdctl
#===========================
$(SYSMANBIN)emdctl:
$(MK_EMAGENT_NMECTL)-lnnz11
結果如下:
19 為資料庫打PSU,發現在執行的過程中報CRS-4124錯誤,叢集無法啟動
[root@testdb1 software]# /u01/app/11.2.0/grid/OPatch/opatch auto /tmp/software/32131250
Executing /u01/app/11.2.0/grid/perl/bin/perl /u01/app/11.2.0/grid/OPatch/crs/patch11203.pl -patchdir /tmp/software -patchn 32131250 -paramfile /u01/app/11.2.0/grid/crs/install/crsconfig_params
This is the main log file: /u01/app/11.2.0/grid/cfgtoollogs/opatchauto2021-10-21_08-54-01.log
This file will show your detected configuration and all the steps that opatchauto attempted to do on your system:
/u01/app/11.2.0/grid/cfgtoollogs/opatchauto2021-10-21_08-54-01.report.log
2021-10-21 08:54:01: Starting Clusterware Patch Setup
Using configuration parameter file: /u01/app/11.2.0/grid/crs/install/crsconfig_params
Stopping RAC /u01/app/oracle/product/11.2.0/db_1 ...
Stopped RAC /u01/app/oracle/product/11.2.0/db_1 successfully
patch /tmp/software/32131250/29938455/custom/server/29938455 apply successful for home /u01/app/oracle/product/11.2.0/db_1
patch /tmp/software/32131250/31983472 apply successful for home /u01/app/oracle/product/11.2.0/db_1
Stopping CRS...
Stopped CRS successfully
patch /tmp/software/32131250/29938455 apply successful for home /u01/app/11.2.0/grid
patch /tmp/software/32131250/31983472 apply successful for home /u01/app/11.2.0/grid
patch /tmp/software/32131250/29509309 apply successful for home /u01/app/11.2.0/grid
Starting CRS...
Installing Trace File Analyzer
CRS-4124: Oracle High Availability Services startup failed.
CRS-4000: Command Start failed, or completed with errors.
Oracle Grid Infrastructure stack start initiated but failed to complete at /tmp/software/32131250
/29938455/files/crs/install/crsconfig_lib.pm line 11821.
根據如上報錯,可以確定補丁是成功在grid和database軟體打上了,但由於啟動CRS失敗導致後續操作沒有執行。
按照網上的說法,是刪除/var/tmp/.oracle/npohasd檔案就可解決,經過多次測試,不行。重啟伺服器,問題解決。
由於補丁可以重複多次執行,再次執行打補丁,避免後續有些指令碼沒有執行,發現一切OK,至此,才算完美收關。
以下為第二次執行PSU的資訊:
[root@testdb1 ~]# /u01/app/11.2.0/grid/OPatch/opatch auto /tmp/software/32131250
Executing /u01/app/11.2.0/grid/perl/bin/perl /u01/app/11.2.0/grid/OPatch/crs/patch11203.pl -patchdir
/tmp/software -patchn 32131250 -paramfile /u01/app/11.2.0/grid/crs/install/crsconfig_params
This is the main log file: /u01/app/11.2.0/grid/cfgtoollogs/opatchauto2021-10-21_09-41-53.log
This file will show your detected configuration and all the steps that opatchauto attempted to do on your system:
/u01/app/11.2.0/grid/cfgtoollogs/opatchauto2021-10-21_09-41-53.report.log
2021-10-21 09:41:53: Starting Clusterware Patch Setup
Using configuration parameter file: /u01/app/11.2.0/grid/crs/install/crsconfig_params
Stopping RAC /u01/app/oracle/product/11.2.0/db_1 ...
Stopped RAC /u01/app/oracle/product/11.2.0/db_1 successfully
Stopping CRS...
Stopped CRS successfully
Starting CRS...
Installing Trace File Analyzer
CRS-4123: Oracle High Availability Services has been started.
Starting RAC /u01/app/oracle/product/11.2.0/db_1 ...
Started RAC /u01/app/oracle/product/11.2.0/db_1 successfully
opatch auto succeeded.
至於CRS-4124 即CRS-4000導致叢集無法啟動,經過對程式的trace,,發現是作業系統的配置有問題導致的,
在下一篇文章中詳細說明
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69996316/viewspace-2838813/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle11g 解除安裝racOracle
- redhat 6.4 安裝oracle11g RAC 安裝RDACRedhatOracle
- oracle11g rac安裝過程Oracle
- Oracle11g R2 RAC安裝Oracle
- MAC+Vmware Fusion安裝Oracle11g RACMacOracle
- 【學習日記】oracle11g rac安裝Oracle
- AIX 6.1 Oracle11g 11.2.0.4 RAC 安裝心得AIOracle
- 虛擬機器上靜默安裝oracle11g rac虛擬機Oracle
- 【RAC】RAC安裝錯誤手工解除安裝
- RAC安裝
- Docker安裝Oracle11gDockerOracle
- Oracle11g解除安裝Oracle
- ORACLE11G 解除安裝Oracle
- Oracle11g RAC+ASM安裝前儲存規劃注意事項OracleASM
- Red Hat Linux 5.3 (虛擬機器) 上安裝 Oracle11g RACLinux虛擬機Oracle
- Orace RAC安裝-DNS安裝DNS
- 解除安裝RAC
- aix rac安裝AI
- RAC安裝2
- Oracle11G安裝之後Oracle
- oracle11g的bbed安裝Oracle
- 安裝oracle11g報錯Oracle
- 【RAC安裝】 AIX下安裝Oracle 11gR2 RACAIOracle
- rac靜默安裝
- RAC安裝 參考
- oracle rac aix 安裝OracleAI
- RAC安裝手冊
- oracle11g安裝和下載Oracle
- AIX 7.1上安裝Oracle11gAIOracle
- oracle11g靜默安裝(修正)Oracle
- udev 裸裝置 安裝racdev
- 【RAC】 RAC For W2K8R2 安裝--解除安裝(八)
- 【RAC】Oracle11g RAC 你不懂crs_*Oracle
- [RAC] HP Unix Install Oracle11g(RAC)Oracle
- RAC安裝之一 安裝前準備
- readhalt7.4 安裝 oracle11gOracle
- RedHat上靜默安裝Oracle11gRedhatOracle
- CentOS 7.2靜默安裝Oracle11gCentOSOracle