Add the node to the cluster

Dear all,

OS: RHEL 4

DB = 10.2.0.4.0

Storage file system: OCFS2

Cluster software and database has been added, but when I try to add my cluster instance I get following error message.

The directory "/ database/archivelog ' MANDATORY DB_UNIQUE_NAME ROUVRIR = timsis not on the cluster file system shared between the nodes 'ud1 UD2.

Thanks and greetings

Jean Louis

Hello

Please check the value of the parameter of log_archive_dest_1, this problem occurs when the location has already been added to another instance.

Please check the value of the setting above and re run the following command:-

ALTER system set log_archive_dest_1 = "LOCATION = / data/archivelog = (ALL_LOGFILES, ALL_ROLES) db_unique_name =valid_for" scope = mΘmoire

Concerning

Jihane Narain Sylca

Tags: Database

Similar Questions

  • Add the cluster to an existing table in oracle

    Is it possible to add the cluster of an existing table? For example...

    I have a table:

    CREATE TABLE table_name)

    t_id number PRIMARY KEY,

    t_name varchar2 (50));

    Cluster:

    CLUSTER to CREATE my_cluster

    (c_id NUMBER) SIZE 100;

    Y at - it a command such as: ALTER TABLE t_name add CLUSTER my_cluster (t_id); or something like that?

    Because I want to table to look like this:

    CREATE TABLE table_name)

    t_id number PRIMARY KEY,

    t_name varchar2 (50))

    My_cluster (t_id) CLUSTER;

    And drop all the tables isn't really what I want to do.

    Thank you

    No,

    It is the reverse:

    A table can be stored as a segment of memory (the common way) or in a cluster.

    Will not be part of the table "in the cluster", but other parts outside.

    Please create a new table in the cluster and insert your data here.

    Sorry,

    Martin

  • Add the Cluster name to the report

    Hello

    How could I add the name of the Cluster to the next report?

    Get-Datastore - VM $vm |

    Select @{N = "DataStore"; E={$_. Name}},

    @{N = 'The virtual computer name'; E = {$vm. Name}}

    The release of the report would be Cluster DataStore, VM, etc..

    Thank you

    Something like that

    Get-Datastore -VM $vm |    Select @{N="Cluster";E={Get-Cluster -VM $vm | Select -ExpandProperty Name}},    @{N="DataStore";E={$_.Name}},    @{N="VM Name";E={$vm.Name}}
    
  • How to add the Cluster name to the report

    Get-data center $DC | Get-Datastore. Where-Object {$_.} {Name - notlike "DataStore1 *"} |

    Sort-Object-property name.

    Select-Object - property name,

    @{Name = "CapacityGB"; Expression = {[Math]: tour ($_.)} (CapacityGB, 0)}},

    @{Name = "UsedSpaceGB"; Expression = {[Math]: tour ($_.)} CapacityGB-$_. (FreeSpaceGB, 0)}},

    @{Name = "FreeSpaceGB"; Expression = {[Math]: tour ($_.)} (FreeSpaceGB, 0)}},

    @{Name = "UncommittedSpaceGB"; Expression = {}

    If (-not $_.) ExtensionData.Summary.Uncommitted) {}

    0

    }

    else {}

    [Math]: tour ($_.) ExtensionData.Summary.Uncommitted/1GB,0)

    }

    }},

    @{Name = "ProvisionedSpaceGB"; Expression = {}

    $Summary = $_. ExtensionData.Summary

    If (-not of $Summary.Uncommitted) {}

    [Math]: round (($Summary.Capacity-$Summary.FreeSpace)/1GB,0)

    }

    else {}

    [Math]: round (($Summary.Capacity-$Summary.FreeSpace + $Summary.Uncommitted) / 1 GB, 0)

    }

    }},

    @{Name = "PercentageUsed"; Expression = {[Math]: round (100 *($_.)} CapacityGB-$_. FreeSpaceGB) / $_. (CapacityGB, 0)}},

    @{Name = "PercentageFreeSpace"; Expression = {[Math]: round (100 * $_.)} FreeSpaceGB / $_. (CapacityGB, 0)}},

    @{Name = "PercentageProvisioned"; Expression = {}

    $Summary = $_. ExtensionData.Summary

    If (-not of $Summary.Uncommitted) {}

    [Math]: round (100 * ($Summary.Capacity-$Summary.FreeSpace)/$Summary.Capacity,0))

    }

    else {}

    [Math]: round (100 * ($Summary.Capacity - $Summary.FreeSpace + $Summary.Uncommitted)/$Summary.Capacity,0))

    }

    }},

    @{Name = 'MV'; Expression = {[string]: join (';', ($_.))} ExtensionData.Vm | ForEach-Object {Get-View-Id $_}). Name)}}.

    @{Name = "VMDK"; Expression = {[string]: Join (';', (& {}}

    $Datastore = $_

    $Datastore.ExtensionData.Vm |

    {ForEach-Object

    Notice-EEG-Id $_.

    Get-VIObjectByVIView |

    Get-hard drive |

    Where-Object {$_.} FileName-like "* $($Datastore.Name) *"} ".

    }

    }). File name)

    }} | Export-CSV $FileName - NoTypeInformation - UseCulture

    Try adding this calculated property

    @{N = 'Cluster'; E = {Get-VMHost - Datastore $_______ |} Get-Random | Get-Cluster | {{Select - ExpandProperty name}}.

  • cannot place the cluster in table

    I hope that this is a stupid question after a long day of programming.

    I can't insert this cluster in this table.  I did it for years, but for some reason any that it does not work now.

    Please notify

    Cool, that's all!

    I was able to add my decorations, after you add the cluster without decoration, in the table.

    I have attached my now (what I think) is my cool looking for control.

    Thank you

    Dan

  • How to include the name of the cluster?

    I use a function to collect usage statistics of the data store that I've modified it a bit, but how would I modify to add the cluster name, in that data warehouses are sitting?

    Function Get_DataStores {}

    $report = @)

    {foreach ($hostname in get-vmhost)

    Get-VMHost-name $hostname - location $cluster | Get-Datastore. %{

    $info = "" | Select the host, DSName, CapacityMB, FreeSpaceMB, ProvisionedMB, UsedMB

    $info. Host = $hostname

    $info. DSName = $_. Name

    $info. CapacityMB = ($_.) ExtensionData.Summary.Capacity)/1MB

    $info. FreeSpaceMB = ($_.) ExtensionData.Summary.FreeSpace)/1MB

    $info. ProvisionedMB = ((($_.)) ExtensionData.Summary.Capacity) - ($_.) ExtensionData.Summary.FreeSpace)) + ($_.) ExtensionData.Summary.Uncommitted))/1MB

    $info. UsedMB = (($info.)) CapacityMB - $info. (FreeSpaceMB) / 1 MB)

    $report += $info

    }

    }

    $csv = "C:\datastores.csv".

    $report | Export-Csv $csv - NoTypeInformation

    }

    Thanks in advance

    You could do it like this

    Function Get_DataStores {}

    $report = @)

    {foreach ($hostname in get-vmhost)

    $cluster = get-Cluster - VMHost $hostname

    Get-VMHost-name $hostname | Get-Datastore. %{

    $info = "" | Select the Cluster host, DSName, CapacityMB, FreeSpaceMB, ProvisionedMB, UsedMB

    $info. Cluster = $cluster. Name

    $info. Host = $hostname

    $info. DSName = $_. Name

    $info. CapacityMB = ($_.) ExtensionData.Summary.Capacity)/1MB

    $info. FreeSpaceMB = ($_.) ExtensionData.Summary.FreeSpace)/1MB

    $info. ProvisionedMB = ((($_.)) ExtensionData.Summary.Capacity) - ($_.) ExtensionData.Summary.FreeSpace)) + ($_.) ExtensionData.Summary.Uncommitted))/1MB

    $info. UsedMB = (($info.)) CapacityMB - $info. (FreeSpaceMB) / 1 MB)

    $report += $info

    }

    }

    $csv = "C:\datastores.csv".

    $report | Export-Csv $csv - NoTypeInformation

    }

  • Cannot add the drives shared to the cluster nodes

    ESX 3.5

    I am trying to set up a cluster "2 nodes in a box". According to the guide of cluster (http://www.vmware.com/pdf/vi3_35/esx_3/vi3_35_25_u1_mscs.pdf), I created the shared disks (quorum & data) using:

    vmkfstools .vdmk - c

    The discs create successfully and I can see them at VIC, but when I add the disk to the virtual machine, it appears in the selection window.

    Any ideas?

    Oh! The mistake was all the time under our noses

    vmkfstools - cdmk Kala

    VMDK, not VDMK

    ---

    MCSA, MCTS, VCP, VMware vExpert 2009

    http://blog.vadmin.ru

  • Add the new node to cluster oracle

    Hello
    I have a doubt regarding cluster approx.
    The current situation is oracle instances are running on 2 boxes unix say that U1 and U2
    Now if we include another U3 area in the cluster, is it totally black box for the application.
    My concern is that should make us changes in the application using the cluster.

    Thank you
    Arpit Narula

    Hello

    Background database servers are normally transparent to the applications, but could you let us know which app frontend you use...?

    Satya.

  • Add the host to the cluster vmware and SAN equilogic

    Hello...

    I will add 2 new for our cluster vmware vsphere host... I have not done this before, but think that I got the hang of it...

    But one thing that I am uncertain the San connectivity, is it just to create the map of iscsi on the vsphere host software and then add the adapters iqn name to access the San volumes page and rescan for the accessible volumes in the vmware host?

    That's about all.   Reported Tech on how to do so expressly.

    en.community.dell.com/.../TR1075-Configure-iSCSI-Connectivity-with-VMware-vSphere-5.pdf

    TR1091 shows how to configure VMware ESXi for best practices with storage EQL.

    en.Community.Dell.com/.../Download

    In my environment I use CHAP credentials for clusters of ESXi.  In this way a specific set of ESXi nodes use the CHAP username/password to access EQL volumes.  Advantage is when you add a new node, you only need to provide the name of user and password c.  You will not have to change anything on the side of EQL to add/remove a node.

    Kind regards

  • Add the error node

    Hello

    I try to add the node two-node Oracle 11g RAC, but I had
    a mistake. I follow the steps:
    # export ORACLE_HOME=/u01/app/11.2.0/grid
    # cd $ORACLE_HOME/oui/bin
    # ./addNode.sh -silent "CLUSTER_NEW_NODES={rac3}" "CLUSTER_NEW_VIRTUAL_HOSTNAMES={rac3-vip}"
    For example, the following in the log file:
    INFO: Environment Variables:
    
    INFO:   ORACLE_HOME = /u01/app/11.2.0/grid
    
    INFO:   PATH = /u01/app/oracle/product/11.2.0/db_1/bin:/usr/sbin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/b
    in
    
    INFO:   CLASSPATH =
    
    INFO: Username:oracle
    
    INFO: Install area Control created with access level  1
    
    INFO: Oracle Universal Installer version is 11.2.0.1.0
    
    INFO: Setting variable 'ORACLE_HOME' to '/u01/app/11.2.0/grid'. Received the value from the command line.
    INFO: Setting variable 'CLUSTER_NEW_NODES' to 'rac3'. Received the value from the command line.
    INFO: Setting variable 'CLUSTER_NEW_VIRTUAL_HOSTNAMES' to 'rac3-vip'. Received the value from the command line.
    INFO: Setting variable 'PREREQ_CONFIG_LOCATION' to ''. Received the value from variable association.
    INFO: Setting variable 'FROM_LOCATION' to '/u01/app/11.2.0/grid/inventory/ContentsXML/comps.xml'. Received the value from a co
    de block.
    INFO: Setting variable 'ROOTSH_LOCATION' to '/u01/app/11.2.0/grid/root.sh'. Received the value from a code block.
    INFO: Setting variable 'ROOTSH_STATUS' to '3'. Received the value from a code block.
    INFO: Setting variable 'ORACLE_HOME' to '/u01/app/11.2.0/grid'. Received the value from the command line.
    INFO: Setting variable 'CLUSTER_NEW_NODES' to 'rac3'. Received the value from the command line.
    INFO: Setting variable 'CLUSTER_NEW_VIRTUAL_HOSTNAMES' to 'rac3-vip'. Received the value from the command line.
    INFO: Setting variable 'PREREQ_CONFIG_LOCATION' to ''. Received the value from variable association.
    INFO: Setting variable 'FROM_LOCATION' to '/u01/app/11.2.0/grid/inventory/ContentsXML/comps.xml'. Received the value from a code block.
    INFO: Setting variable 'ROOTSH_LOCATION' to '/u01/app/11.2.0/grid/root.sh'. Received the value from a code block.
    INFO: Setting variable 'ROOTSH_STATUS' to '3'. Received the value from a code block.
    INFO:
    *** Welcome Page***
    INFO: Setting variable 'ORACLE_HOME_NAME' to 'Ora11g_gridinfrahome1'. Received the value from a code block.
    INFO: SRVM ClusterInfo.IsLocalOnly() called. Return value obtained is 'true'.
    INFO: The CRS clusterware location for 'oracle.crs 10.1.0.2.0' is '/u01/app/11.2.0/grid'.
    INFO: CRS clusterware detected.
    INFO: Vendor clusterware is not detected.
    INFO: Local node 'rac1' is derived from the Oracle home properties.
    INFO: Setting variable 'LOCAL_NODE' to 'rac1'. Received the value from a code block.
    INFO: Setting variable 'EXISTING_REMOTE_NODES' to 'rac2'. Received the value from a code block.
    INFO: Setting variable 'REMOTE_NODES' to 'rac3'. Received the value from a code block.
    INFO: Setting the 'ExistingClusterNodes' property to 'rac1,rac2'.
    INFO: Setting the 'EnableVirtualHostNameEntry' property to 'true'.
    INFO: Setting the 'NewNodes ( CLUSTER_NEW_NODES )' property to 'rac3'. Received the value from the command line.
    INFO: Setting variable 'REMOTE_NODES' to 'rac3'. Received the value from a code block.
    INFO: Setting variable 'CLUSTER_NODES' to 'rac1,rac2,rac3'. Received the value from a code block.
    INFO: Performing tests to see whether nodes rac2,rac3 are available
    INFO: Validating nodes rac2...
    INFO: Checking if nodes are alive...
    INFO: Validating user equivalence...
    INFO: Validating nodes rac3...
    INFO: Checking if nodes are alive...
    INFO: Validating user equivalence...
    INFO: Status of nodes in the cluster:
    Status of node 'rac2':
    Node is okay
    
    Status of node 'rac3':
    null
    
    --------------------------------------------------------------------------
    
    SEVERE: The selected remote nodes 'rac3' are not accessible.
    INFO: User Selected: Yes/OK
    When I try to ping for the new node, it is correct.

    So, can you help me, please?

    Thank you very much.

    Hello

    You can cancel the configuration performed by root.sh using the following:

    /U01/app/11.2.0/grid/CRS/install/rootcrs.pl - deconfig-force

    Thus, after the above command, you can perform the root.sh again.

    Kind regards.

  • Member not found error when trying to add the generic script in the windows 2003 cluster

    I tried to add a generic script in the cluster windows 2003, I've already done a script with the extension .vbs, but when I tried to add the path of the script file its gives me an error indicating that the Member could not be found. Can you help me about this error?

    Hello ishuvbaidhya,

    Your question may be the best answer in the forum TechNet for Windows Server.

    Please transfer your question in forum Windows Server below.
    http://social.technet.Microsoft.com/forums/en-us/winserverManagement/threads

    They will be better able to help with your problem.

    Sincerely,

    Marilyn

  • Dial the node library with cluster table feature using the pointer of table data

    Hi all.

    I am writing a wrapper of LabVIEW for an existing DLL function.

    The service was, as one of its parameters, an array of structures.  The structure is very simple, containing two integers.  I use the call library function node to access.

    In Labview, I created an array of clusters, when the cluster has two integers of 32 bits as members.  So far so good.

    Now, I have to pass this in the node library function call.  I use here in trouble.

    I used the LAVA so the topic in the knowledge base as my main sources of information, although I read a lot of topics in the forum on the subject too.

    I don't understand I could write a new function that takes as a parameter a struct with the size as the first member and an array as the second, and I might just do this and do call the regular service, but I was hoping to do more simply.

    The file function C LabVIEW generates for me the COLD Lake when I choose "To adapt to the Type" and "Data in the table pointer", the prototype he expects is:

    int32_t myFunc (handful of uint32_t, uint16_t channel,
    int32_t FIFOnumber, Sub data [], int32_t numWords, int32_t * actualLoaded,.
    int32_t * actualStartIndex);

    And the prototype of the function in my DLL is

    int myFunc borland_dll (DWORD channel, channel of Sina,)
    FIFOnumber int, struct mStruct * data, int, int numWords * actualLoaded, int * actualStartIndex);

    It sounds like a match for me, but it doesn't work (I get garbage in the data).  The topic referenced above LAVA, I realized it would work.  This isn't.

    If I have to cast the data to the pointer-to-pointer I get when I generate c code in my wiring to a CIN struct and by generating, then I seem to get what I expect. But it seems to work when I choose "pointers to handles" too, and I'm expecting data table pointer to give a different result.

    Is it possible to get it works directly, or I have to create a wrapper?  (I am currently using LabVIEW 2011, but we have customers using 2009 and 2012, if not other versions as well).

    Thank you.

    Batya


  • ISE PSN node will not be joining the cluster

    Hi all

    Has anyone seen a problem where an NHP cannot join the cluster?

    We join node of PSN

    -Node is saved successfully (current synchronization)

    -1 hour later - node replication failure.

    -Replication synchronization failed because the secondary database is down

    I have a client where admin node and PSN are separated by the firewall.

    We let in two directions

    Admin <-->PSN

    ICMP

    HTTPS

    1521

    Firewall not showing drops.

    DNS and NTP are ok.

    Current topology is 1 NHP, 1 Admin node.

    Works very well in our test lab, but not clients environmnet.

    See you soon

    Peter.

    Thank you for the update we and good work on the search for the solution! You should probably mark it as resolved now

    In addition, it is quite rare (at least for me) for nodes of ISE to be separated by firewalls. There are a lot of ports/protocols that must be opened between them is usually more of a pain to manage. In addition, sometimes ports will change too. For example, the fueling port agent has been changed not too long ago...

    Thanks for the note!

  • Oracle BPEL 2.0 - add the child node

    Hi guys,.

    SOA 11.1.1.7, BPEL 2.0

    I have a child screaming master BPEL BPEL flow flow in a ForEach loop.

    I have part of the answer like this:

    < caseResponses >

    < caseResponse >... < / caseResponse >

    < caseResponse >... < / caseResponse >

    < / caseResponses >

    CaseResponse items come from child BPEL flows.

    I'm trying to add each of these elements in the element parent < caseResponses > but when running I get "The Exception is thrown because the in-specs on the 112 line are assessed to be empty," where the line 112 is the line append.

    My code is:

    < assign the name = "AppendToResponse" >

    < extensionAssignOperation >

    < bpelx: Add >

    < bpelx: go > $InvokeHandleSingleCarglassCase_process_OutputVariable.payload / ns1:caseResponse < / bpelx: go >

    < bpelx: to > $outputVariable.payload / client: caseResponses < / bpelx: to >

    < / bpelx: Add >

    < / extensionAssignOperation >

    < / assign >

    If I add a copy - just like a test rule-

    < assign the name = "AppendToResponse" >

    < copy >

    < a > $InvokeHandleSingleCarglassCase_process_OutputVariable.payload / ns1:caseResponse < / from >

    < to > $outputVariable.payload/client:caseResponses/client:caseResponse < /pour >

    < / copy >

    < extensionAssignOperation >

    < bpelx: Add >

    < bpelx: go > $InvokeHandleSingleCarglassCase_process_OutputVariable.payload / ns1:caseResponse < / bpelx: go >

    < bpelx: to > $outputVariable.payload / client: caseResponses < / bpelx: to >

    < / bpelx: Add >

    < / extensionAssignOperation >

    < / assign >

    I works as expected: all caseResponse items are added and there is also one more copy activity.

    What can I do so that I don't get the "The Exception is thrown because the in-specs on the 112 line are assessed to be empty" exception without copy assign?

    Thank you!

    By the way

    Rather than add it, you can use the copy, but instead of the normal copy you must change the code a bit to something like:

    $InvokeHandleSingleCarglassCase_process_OutputVariable.payload / ns1:caseResponse

    $outputVariable.payload / client: caseResponses[$ForEachCounter]/ client: caseResponse

    If you add the counter and checks that I wrote in the previous answer basically it will create a node at position x (x being the value of the counter) and the copy of your result

  • A single node of the cluster cannot start

    Hello all,.

    I hope you can help me. We have a 2 node rac. the first node cannot be started due to:

    [cssd (16558)] CRS-1714: impossible to discover all files with right to vote, a new attempt of discovery in 15 seconds; Details at (: CSSNM00070 :) in /pkg/app/11.2.0/grid/log/defr2elvhms01/cssd/ocssd.log)

    2015-09-28 14:45:19.038:

    [cssd (16558)] CRS-1714: impossible to discover all files with right to vote, a new attempt of discovery in 15 seconds; Details at (: CSSNM00070 :) in /pkg/app/11.2.0/grid/log/defr2elvhms01/cssd/ocssd.log)

    2015-09-28 14:45:34.059:

    [cssd (16558)] CRS-1714: impossible to discover all files with right to vote, a new attempt of discovery in 15 seconds; Details at (: CSSNM00070 :) in /pkg/app/11.2.0/grid/log/defr2elvhms01/cssd/ocssd.log)

    the crs is the OCR disk, it is visible it the log file:

    2015-09-28 14:46:49.120: Lib [SKGFD] [2107098880]: ASM:/opt/oracle/extapi/64/asm/orcl/1/libasm.so: handle 0x7fec68140800 for closing disk: ORCL:REDO:

    2015-09-28 14:46:49.120: [CSSD] [2107098880] clssnmvDiskVerify: discovery of a potential voting file

    2015-09-28 14:46:49.120: [SKGFD] [2107098880] handful 0x7fec68140dd0 to lib: ASM:/opt/oracle/extapi/64/asm/orcl/1/libasm.so: disc: ORCL:OCR1:

    2015-09-28 14:46:49.121: [CSSD] [2107098880] clssnmvDiskVerify: table of contents format offset expected (0x634c7373 0x546f636b), found(0x434c5366 0x0000)

    2015-09-28 14:46:49.121: Lib [SKGFD] [2107098880]: ASM:/opt/oracle/extapi/64/asm/orcl/1/libasm.so: handle 0x7fec68140dd0 for closing disk: ORCL:OCR1:

    2015-09-28 14:46:49.121: [CSSD] [2107098880] clssnmvDiskVerify: Discovery successful record 0

    2015-09-28 14:46:49.121: [CSSD] [2107098880] clssnmCompleteInitVFDiscovery: completing the first discovery of the file with the right to vote

    2015-09-28 14:46:49.121: [CSSD] [2107098880] clssnmvFindInitialConfigs: no vote files found

    2015-09-28 14:46:49.121: [CSSD] [2107098880](:CSSNM00070:) clssnmCompleteInitVFDiscovery: vote fichier non trouvé.) A new attempt of discovery in 15 seconds

    The failed node can be started in exclusive mode, and I'm able to connect to the asm, but of course without disks. When I am trying to mount starts, I get the following:

    SQL > alter the data carrier diskgroup.

    change data diskgroup mount

    *

    ERROR on line 1:

    ORA-15032: not all changes made

    ORA-15017: diskgroup 'DATA' cannot be mounted

    ORA-15063: ASM discovered an insufficient number of drives for diskgroup "DATA".

    ORA-15085: ASM disk "" the size of incompatible sector.


    We seem to be affected by the similar problem as written:

    After SAN Firmware Upgrade , ASM starts (using ASMLIB) not be mounted Due To ORA-15085: ASM disk "" the size of incompatible sector. (Doc ID 1500460.1()


    kernel cannot be updated thus affecting the ORACLEASM_USE_LOGICAL_BLOCK_SIZE is not possible.

    What we do not understand why the failed node has different physical block size / logic. Why the oracle on the failed node linux recognize different value? If it was the same thing, no doubt the cluster could start up:

    [root@defr2elvhms02 ~] # rpm - qa | grep-i asm

    oracleasmlib - 2.0.4 - 1.el6.x86_64

    oracleasm-support - 2.1.8 - 1.el6.x86_64

    [root@defr2elvhms02 ~] # uname - a

    Linux defr2elvhms02 2.6.32 - 400.37.1.el6uek.x86_64 #1 SMP Thu Feb 5 14:58:47 PST 2015 x86_64 x86_64 x86_64 GNU/Linux

    [root@defr2elvhms02 ~] #.

    [root@defr2elvhms02 ~] # oracleasm querydisk d OCR1

    Disc 'OCR1' is a valid ASM disk device [8.1]

    [root@defr2elvhms02 ~] # oracleasm querydisk d OCR2

    Disc 'OCR2' is a valid ASM disk device [8.17]

    [root@defr2elvhms02 ~] # oracleasm querydisk d OCR3

    Disc 'OCR3' is a valid ASM disk device [8.33]

    [root@defr2elvhms02 ~] # ls-l/dev/sda1

    BRW - rw-. Disc 1 root 8, 1 Sep 29 16:21 / dev/sda1

    [root@defr2elvhms02 ~] # ls-l/dev/sdb1

    BRW - rw-. Disc 1 root 8, 17 Sep 29 16:21 / dev/sdb1

    [root@defr2elvhms02 ~] # ls-l/dev/sdc1

    BRW - rw-. Disc 1 root 8: 33 Sep 29 16:21 / dev/sdc1

    [root@defr2elvhms02 ~] # fdisk-l/dev/sda

    Disk/dev/sda: 10.7 GB, 10737418240 bytes

    Heads of 64, 32 sectors/track, 10240 cylinders

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Sector size (logical or physical): 512 bytes / 512 bytes

    Size of the e/s (minimum/maximum): 512 bytes / 512 bytes

    Disk identifier: 0x20700d2b

    Device boot start end blocks Id system

    / dev/sda1 10 10240 10476544 83 Linux

    [root@defr2elvhms02 ~] # fdisk-l/dev/sda1

    Disk/dev/sda1: 10.7 GB, 10727981056 bytes

    Heads of 64, 32 sectors/track, 10231 bottles

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Sector size (logical or physical): 512 bytes / 512 bytes

    Size of the e/s (minimum/maximum): 512 bytes / 512 bytes

    Disk identifier: 0x00000000

    [root@defr2elvhms02 ~] # fdisk-l/dev/sdb

    Disk/dev/sdb: 10.7 GB, 10737418240 bytes

    Heads of 64, 32 sectors/track, 10240 cylinders

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Sector size (logical or physical): 512 bytes / 512 bytes

    Size of the e/s (minimum/maximum): 512 bytes / 512 bytes

    Disk identifier: 0x62515b34

    Device boot start end blocks Id system

    / dev/sdb1 10 10240 10476544 83 Linux

    [root@defr2elvhms02 ~] # fdisk-l/dev/sdb1

    Disk/dev/sdb1: 10.7 GB, 10727981056 bytes

    Heads of 64, 32 sectors/track, 10231 bottles

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Sector size (logical or physical): 512 bytes / 512 bytes

    Size of the e/s (minimum/maximum): 512 bytes / 512 bytes

    Disk identifier: 0x00000000

    [root@defr2elvhms02 ~] # fdisk-l/dev/sdc

    Disk/dev/sdc: 10.7 GB, 10737418240 bytes

    Heads of 64, 32 sectors/track, 10240 cylinders

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Sector size (logical or physical): 512 bytes / 512 bytes

    Size of the e/s (minimum/maximum): 512 bytes / 512 bytes

    Disk identifier: 0xc254acd9

    Device boot start end blocks Id system

    / dev/sdc1 10 10240 10476544 83 Linux

    [root@defr2elvhms02 ~] # fdisk-l/dev/sdc1

    Disk/dev/sdc1: 10.7 GB, 10727981056 bytes

    Heads of 64, 32 sectors/track, 10231 bottles

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Sector size (logical or physical): 512 bytes / 512 bytes

    Size of the e/s (minimum/maximum): 512 bytes / 512 bytes

    Disk identifier: 0x00000000

    -------------------------------------------------------------------------------

    -------------------------------------------------------------------------------

    [root@defr2elvhms01 ~] # uname - a

    Linux defr2elvhms01 2.6.32 - 400.37.1.el6uek.x86_64 #1 SMP Thu Feb 5 14:58:47 PST 2015 x86_64 x86_64 x86_64 GNU/Linux

    [root@defr2elvhms01 ~] # rpm - qa | grep-i asm

    oracleasmlib - 2.0.4 - 1.el6.x86_64

    oracleasm-support - 2.1.8 - 1.el6.x86_64

    [root@defr2elvhms01 ~] # oracleasm querydisk d OCR1

    Disc 'OCR1' is a valid ASM disk device [8.1]

    [root@defr2elvhms01 ~] # oracleasm querydisk d OCR2

    Disc 'OCR2' is a valid ASM disk device [8.17]

    [root@defr2elvhms01 ~] # oracleasm querydisk d OCR3

    Disc 'OCR3' is a valid ASM disk device [8.33]

    [root@defr2elvhms01 ~] # ls-l/dev/sdb1

    BRW - rw-. Disc 1 root 8, 17 Sep 29 15:32 / dev/sdb1

    [root@defr2elvhms01 ~] # ls-l/dev/sda1

    BRW - rw-. Disc 1 root 8, 1 Sep 29 15:32 / dev/sda1

    [root@defr2elvhms01 ~] # ls-l/dev/sdb1

    BRW - rw-. Disc 1 root 8, 17 Sep 29 15:32 / dev/sdb1

    [root@defr2elvhms01 ~] # ls-l/dev/sdc1

    BRW - rw-. Disc 1 root 8: 33 Sep 29 15:32 / dev/sdc1

    [root@defr2elvhms01 ~] # fdisk-l/dev/sda

    Disk/dev/sda: 10.7 GB, 10737418240 bytes

    Heads of 64, 32 sectors/track, 10240 cylinders

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Sector size (logical or physical): 512 bytes / 4096 bytes

    The e/s (minimum/maximum) size: 4096 bytes / 65536 bytes

    Disk identifier: 0x20700d2b

    Device boot start end blocks Id system

    / dev/sda1 10 10240 10476544 83 Linux

    [root@defr2elvhms01 ~] # fdisk-l/dev/sda1

    Disk/dev/sda1: 10.7 GB, 10727981056 bytes

    Heads of 64, 32 sectors/track, 10231 bottles

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Sector size (logical or physical): 512 bytes / 4096 bytes

    The e/s (minimum/maximum) size: 4096 bytes / 65536 bytes

    Disk identifier: 0x00000000

    [root@defr2elvhms01 ~] # fdisk-l/dev/sdb

    Disk/dev/sdb: 10.7 GB, 10737418240 bytes

    Heads of 64, 32 sectors/track, 10240 cylinders

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Sector size (logical or physical): 512 bytes / 4096 bytes

    The e/s (minimum/maximum) size: 4096 bytes / 65536 bytes

    Disk identifier: 0x62515b34

    Device boot start end blocks Id system

    / dev/sdb1 10 10240 10476544 83 Linux

    [root@defr2elvhms01 ~] # fdisk-l/dev/sdb1

    Disk/dev/sdb1: 10.7 GB, 10727981056 bytes

    Heads of 64, 32 sectors/track, 10231 bottles

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Sector size (logical or physical): 512 bytes / 4096 bytes

    The e/s (minimum/maximum) size: 4096 bytes / 65536 bytes

    Disk identifier: 0x00000000

    [root@defr2elvhms01 ~] # fdisk-l/dev/sdc

    Disk/dev/sdc: 10.7 GB, 10737418240 bytes

    Heads of 64, 32 sectors/track, 10240 cylinders

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Sector size (logical or physical): 512 bytes / 4096 bytes

    The e/s (minimum/maximum) size: 4096 bytes / 65536 bytes

    Disk identifier: 0xc254acd9

    Device boot start end blocks Id system

    / dev/sdc1 10 10240 10476544 83 Linux

    [root@defr2elvhms01 ~] # fdisk-l/dev/sdc1

    Disk/dev/sdc1: 10.7 GB, 10727981056 bytes

    Heads of 64, 32 sectors/track, 10231 bottles

    Units = cylinders of 2048 * 512 = 1048576 bytes

    Sector size (logical or physical): 512 bytes / 4096 bytes

    The e/s (minimum/maximum) size: 4096 bytes / 65536 bytes

    Disk identifier: 0x00000000

    Thank you for the help

    I have changed accounts.

    We managed to find the reason. First of all, it is a virtual machine. An expert colleague told me to check the hardware of vmware. We managed to find out that there is a difference of ILO to host vmware hardware. Even if the guest OS virtual material seem to be the same, but the difference between the results of operating system host different logical and physical size of block on 2 nodes. This is the reason.

    We had to update the kernel to apply the setting ORACLEASM_USE_LOGICAL_BLOCK_SIZE to repair the block size for clusterware difference. Everyone was puzzled about why, but the most important is the host VMware system in this issue.

    Thanks for the help

    Attila

Maybe you are looking for