os: centos 7.8
db:11.2.0.4 rac
报错现象:
[root@rac01 ~]# /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]:
Copying dbhome to /usr/local/bin ...
Copying oraenv to /usr/local/bin ...
Copying coraenv to /usr/local/bin ...
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
Failed to create keys in the OLR, rc = 127, Message:
/u01/app/11.2.0/grid/bin/clscfg.bin: error while loading shared libraries: libcap.so.1: cannot open shared object file: No such file or directory
Failed to create keys in the OLR at /u01/app/11.2.0/grid/crs/install/crsconfig_lib.pm line 7660.
解决办法:
发现在/lib64下面没有 libcap.so.1 这个文件
[root@RAC1 lib64]# pwd
/lib64 [root@rac01 lib64]# ls -lrt libcap* -rwxr-xr-x. 1 root root 23968 Nov 20 2015 libcap-ng.so.0.0.0 -rwxr-xr-x. 1 root root 20048 Apr 1 11:08 libcap.so.2.22 lrwxrwxrwx. 1 root root 18 Jun 3 17:23 libcap-ng.so.0 -> libcap-ng.so.0.0.0 lrwxrwxrwx. 1 root root 14 Jun 3 17:23 libcap.so.2 -> libcap.so.2.22 [root@rac01 lib64]# ls -lrt libcap.so.2 lrwxrwxrwx. 1 root root 14 Jun 3 17:23 libcap.so.2 -> libcap.so.2.22 [root@rac01 lib64]# ln -slibcap.so.2.22 libcap.so.1 [root@rac01 lib64]# ls -lrt libcap* -rwxr-xr-x. 1 root root 23968 Nov 20 2015 libcap-ng.so.0.0.0 -rwxr-xr-x. 1 root root 20048 Apr 1 11:08 libcap.so.2.22 lrwxrwxrwx. 1 root root 18 Jun 3 17:23 libcap-ng.so.0 -> libcap-ng.so.0.0.0 lrwxrwxrwx. 1 root root 14 Jun 3 17:23 libcap.so.2 -> libcap.so.2.22 lrwxrwxrwx. 1 rootroot 14 Jun 5 15:27 libcap.so.1 -> libcap.so.2.22
再次执行root.sh [root@rac01 lib64]# /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.
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 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 oracle-ohasd.service CRS-2672: Attempting to start 'ora.mdnsd' on 'rac01' CRS-2676: Start of 'ora.mdnsd' on 'rac01' succeeded CRS-2672: Attempting to start 'ora.gpnpd' on 'rac01' CRS-2676: Start of 'ora.gpnpd' on 'rac01' succeeded CRS-2672: Attempting to start 'ora.cssdmonitor' on 'rac01' CRS-2672: Attempting to start 'ora.gipcd' on 'rac01' CRS-2676: Start of 'ora.cssdmonitor' on 'rac01' succeeded CRS-2676: Start of 'ora.gipcd' on 'rac01' succeeded CRS-2672: Attempting to start 'ora.cssd' on 'rac01' CRS-2672: Attempting to start 'ora.diskmon' on 'rac01' CRS-2676: Start of 'ora.diskmon' on 'rac01' succeeded CRS-2676: Start of 'ora.cssd' on 'rac01' succeeded
ASM created and started successfully.
Disk Group DATA 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 7de0799fd8c54f9abf48dd5e28714b2c. Successfully replaced voting disk group with +DATA. CRS-4256: Updating the profile CRS-4266: Voting file(s) successfully replaced ## STATE File Universal Id File Name Disk group -- ----- ----------------- --------- --------- 1. ONLINE 7de0799fd8c54f9abf48dd5e28714b2c (ORCL:DATA01) [DATA] Located 1 voting disk(s). CRS-2672: Attempting to start 'ora.asm' on 'rac01' CRS-2676: Start of 'ora.asm' on 'rac01' succeeded CRS-2672: Attempting to start 'ora.DATA.dg' on 'rac01' CRS-2676: Start of 'ora.DATA.dg' on 'rac01' succeeded Configure Oracle Grid Infrastructure for a Cluster ... succeeded
[root@rac01 lib64]#
|