Skip to main content

DBCA Not showing ASM Diskgroup in 11.2.0.1 RAC

There was a requirement to create one RAC database (11.2.0.1) running on Oracle Enterprise Linux 5.6.

DBCA was running fine for creating database until selecting the location for datafiles. When i was selecting ASM as an storage then this process is aborting clusterware services and unmounting ASM Diskgroup.


Expected is it should select the available disk group by default. But when i trying to browse the Disk group then its  aborting the clusterware services and unmounting the diskgroup from where we've executed dbca.

Error log from clusterware:


[client(7361)]CRS-1013:The OCR location in an ASM disk group is inaccessible. Details in /u01/11g_grid/grid/log/oelrac1/client/crsctl.log.
2012-10-09 12:03:00.730
[client(7400)]CRS-1013:The OCR location in an ASM disk group is inaccessible. Details in /u01/11g_grid/grid/log/oelrac1/client/crsctl.log.
2012-10-09 13:40:01.031
[client(11408)]CRS-1013:The OCR location in an ASM disk group is inaccessible. Details in /u01/11g_grid/grid/log/oelrac1/client/crsctl.log.
[client(11691)]CRS-10001:ADVM/ACFS is not supported on oraclelinux-release-5-6.0.1

[client(11724)]CRS-10001:ADVM/ACFS is not supported on oraclelinux-release-5-6.0.1

[client(11772)]CRS-10001:ADVM/ACFS is not supported on oraclelinux-release-5-6.0.1

[client(11805)]CRS-10001:ADVM/ACFS is not supported on oraclelinux-release-5-6.0.1

[client(11838)]CRS-10001:ADVM/ACFS is not supported on oraclelinux-release-5-6.0.1

[client(11871)]CRS-10001:ADVM/ACFS is not supported on oraclelinux-release-5-6.0.1



solution:

>> Edit file /tmp/.linux_release

>> change  value "enterprise-release-5-0.0.17"

[root@oelrac1 tmp]# more .linux_release 
enterprise-release-5-0.0.17
[root@oelrac1 tmp]#


>> original value "oraclelinux-release-5-6.0.1"

>> restart clusterware services on all cluster nodes one after the other

>> Run dbca, now it should create database without issues on ASM diskgroup:



- Here its selected +RACDATA asm diskgroup by default.

Thanks for reading

Comments

Popular posts from this blog

Disable Firewall on Oracle Linux 8

In this blogpost we will see how we can stop/disable the firewall on Oracle Linux 8, the firewall command is same in both linux 7 an linux 8. The below listed is the procedure for stopping and disabling the  firewall on Oracle Linux 8. - Here we can see the firewall deamon in active state - Here when we stop the firewall in previous command, now the firewall daemon is dead - For permanent disabling the firewall on server, we can use "disable" option The following commands will be helpful: #systemctl status firewalld #systemctl stop firewalld #systemctl disable firewalld #systemctl enable firewalld #systemctl start firewalld Hope it helps !! Thanks for reading :) regards, X A H E E R

Enable Desktop on Oracle Solaris 11.4

Oracle Solaris 11 installation has multiple options to choose for installation of an Operating Environment, but mostly Oracle Solaris text install media is used and this installation media doesn't offer the GUI Desktop Environment by default after the installation. This blog post will explain how we can enable the desktop for Oracle Solaris 11.4 operating system, after the completion of installation. We have to install "solaris-desktop" package and reboot the machine and GUI desktop will be enabled for the Operating System. In this blog post my virtual machine is connected to the internet and hence I am able to use available pupblic repository for package installation, if in case internet is not available for the server/machine then we have configure the local/Server  repository for the installation. Follow the below steps for desktop package installation: After installation of dekstop package we are now able to login with GUI desktop environment...

Oracle AVDF Installation and Setup Document

This blogpost will provide you detailed information about Oracle Audit Vault and Database Firewall (Oracle AVDF) setup. Oracle AVDF is a comprehensive Database Activity Monitoring (DAM) solution that integrates with native audit data. Environment Setup: [oracrp@ebs-dev2-db01 ~]$ mkdir -pv /oradb/oracle/avcli mkdir: created directory ‘/oradb/oracle/avcli’ [oracrp@ebs-dev2-db01 ~]$ mkdir -pv /oradb/oracle/avagent mkdir: created directory ‘/oradb/oracle/avagent’ [oracrp@ebs-dev2-db01 ~]$ - Add these variables to the environment file vi DEV2CDB.env # AVS export AVCLI_HOME="/oradb/oracle/avcli" export AV_HOME="/oradb/oracle/avagent" export PATH="$PATH:$AV_HOME/bin" Download the JAR files:   AVDF installation requires one network interface card on respective hosts. IP assigned to AV server NIC will communicate with target databases and IP assigned to DF server will connect to AV Download - Agent jar file:   Login to AV console as avadmin user   - Go t...