error: package cvuqdisk is not installed
September 27, 2016 Leave a comment
I have applied patch on RAC and after running postinstall script on the first node, it failed because of some file permission and the problem started…
I could not startup clusterware on first node.
I have deconfigured clusterware by:
[root@lbdm01-dr-adm ~]# $ORACLE_HOME/crs/install/rootcrs.pl -deconfig -force -verbose
And here I got error(cvuqdisk):
PRCR-1070 : Failed to check if resource ora.net1.network is registered
CRS-0184 : Cannot communicate with the CRS daemon.
PRCR-1070 : Failed to check if resource ora.helper is registered
CRS-0184 : Cannot communicate with the CRS daemon.
PRCR-1070 : Failed to check if resource ora.ons is registered
CRS-0184 : Cannot communicate with the CRS daemon.CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on ‘lbdm01-dr-adm’
CRS-2679: Attempting to clean ‘ora.cssd’ on ‘lbdm01-dr-adm’
CRS-2680: Clean of ‘ora.cssd’ on ‘lbdm01-dr-adm’ failed
CRS-2799: Failed to shut down resource ‘ora.cssd’ on ‘lbdm01-dr-adm’
CRS-2795: Shutdown of Oracle High Availability Services-managed resources on ‘lbdm01-dr-adm’ has failed
CRS-4687: Shutdown command has completed with errors.
CRS-4000: Command Stop failed, or completed with errors.
2016/09/26 19:54:12 CLSRSC-463: The deconfiguration or downgrade script could not stop current Oracle Clusterware stack.2016/09/26 19:54:12 CLSRSC-4006: Removing Oracle Trace File Analyzer (TFA) Collector.
2016/09/26 19:54:26 CLSRSC-4007: Successfully removed Oracle Trace File Analyzer (TFA) Collector.
error: package cvuqdisk is not installed
2016/09/26 19:54:26 CLSRSC-557: Oracle Clusterware stack on this node has been successfully deconfigured. There were some errors which can be ignored.
I have searched information about this package on documentation and I have found the following:
Link: https://docs.oracle.com/database/121/LADBI/pre_install.htm#LADBI7632
Installing the cvuqdisk RPM for Linux
If you do not use an Oracle Preinstallation RPM, then you must install the cvuqdisk RPM. Without cvuqdisk, the Cluster Verification Utility cannot find shared disks, and you receive a “Package cvuqdisk not installed” error when you run the Cluster Verification Utility. Use the cvuqdisk RPM for your hardware (for example, x86_64, or i386).
To install the cvuqdisk RPM, complete the following procedure:
- Locate the
cvuqdiskRPM package, which is in the directoryrpmon the Oracle Database installation media. If you installed Oracle Grid Infrastructure, then it is in the directoryoracle_home1/cv/rpm. - Log in as
root. - Use the following command to find if you have an existing version of the
cvuqdiskpackage: -
# rpm -qi cvuqdisk
If you have an existing version, then enter the following command to deinstall the existing version:
# rpm -e cvuqdisk
- Set the environment variable
CVUQDISK_GRPto point to the group that ownscvuqdisk, typicallyoinstall, for example:# CVUQDISK_GRP=oinstall; export CVUQDISK_GRP
- In the directory where you have saved the
cvuqdiskRPM, use the following command to install thecvuqdiskpackage:rpm -iv packageFor example:
# rpm -iv cvuqdisk-1.0.9-1.rpm
So I have found the mentioned package in the following directory and installed it.
cd /u01/app/12.1.0.2/grid/cv/rpm
yum install cvuqdisk-1.0.9-1.rpm
Note: The problem is strange but, I am not writing why this happened in this post, because I don’t know it yet 🙂
The aim of this post is that you should know where to find cvuqdisk package and what is it for 🙂
Good Luck!