Popular Posts

Wednesday, August 19, 2020

Error During 19c GI installation : [INS-44000] Passwordless SSH connectivity is not setup from the local node node1



 Cause - Installer requires that a minimum of 2 nodes remain for the Oracle Grid Infrastructure configuration to proceed.  

Action - Ensure that at least 2 nodes remain for the configuration to proceed, otherwise specify a single cluster node information.  

Additional Information:

 - [INS-44000] Passwordless SSH connectivity is not setup from the local node node1 to the following nodes: 

 [node1] 


 These nodes will be ignored and not participate in the configured Grid Infrastructure.   - 

 Action: Refer to the logs for more details or contact Oracle Support Services. 

 

Cause - Installer requires that a minimum of 2 nodes remain for the Oracle Grid Infrastructure configuration to proceed.  

Action - Ensure that at least 2 nodes remain for the configuration to proceed, otherwise specify a single cluster node information.  

Additional Information:


 - [INS-44000] Passwordless SSH connectivity is not setup from the local node node2 to the following nodes: 

 [node2] 


 These nodes will be ignored and not participate in the configured Grid Infrastructure.   - 

 Action: Refer to the logs for more details or contact Oracle Support Services. 

 

 

 Before installation, as root user: ( change the path if the location of your "scp" is not the same with below)

# Rename the original scp.


mv /usr/bin/scp /usr/bin/scp.orig


# Create a new file </usr/bin/scp>.


vi /usr/bin/scp

# Add the below line to the new created file </usr/bin/scp>.

/usr/bin/scp.orig -T $*

# Change the file permission.

chmod 555 /usr/bin/scp

or 

 mv /usr/bin/scp /usr/bin/scp.orig

 echo "/usr/bin/scp.orig -T $*" > /usr/bin/scp

 chmod 555 /usr/bin/scp


After installation:

mv /usr/bin/scp.orig /usr/bin/scp


cluvfy - pre installation check

 


runcluvfy.sh stage -pre crsinst -n node1,node2 -fixup -fixupnoexec -verbose -method root


runcluvfy.sh stage -pre crsinst -n node1,node2 -fixup -fixupnoexec -verbose -method 


To install Oracle Clusterware/Grid Infrastructure using the Oracle Universal Installer

  1. Ensure that the Oracle grid user has the following capabilities:

    CAP_NUMA_ATTACH, CAP_BYPASS_RAC_VMM, and CAP_PROPAGATE

    To check existing capabilities, enter the following command as root; in this example, the Oracle grid user is grid:

    # lsuser -a capabilities grid

    To add capabilities, enter a command similar to the following:

    # /usr/bin/chuser \
    capabilities=CAP_NUMA_ATTACH,CAP_BYPASS_RAC_VMM,CAP_PROPAGATE grid
  2. The ncargs attribute controls the maximum command line length, including the environment variables on the AIX nodes. Verify the current value of the ncargs attribute.
    # lsattr -l sys0 -a ncargs -E

    If the value is less than 128, change the attribute to a larger value before invoking the Oracle Installer.

    # chdev -l sys0 -a ncargs=128
  3. set DISPLAY varraible
  4. execute $GI_HOME/gridSetup.sh as grid 


Sunday, August 9, 2020

Thursday, August 6, 2020

Move RMAN backupset from disk to tape

To back up backup sets from disk to tape:

  1. Assuming that you have configured an automatic sbt channel, issue the BACKUP BACKUPSET command at the RMAN prompt. This example backs up all disk backup sets to tape:

    RMAN> BACKUP DEVICE TYPE sbt BACKUPSET ALL;
    
    

    This example backs up all disk backup sets to tape and then deletes the input disk backups:

    RMAN> BACKUP DEVICE TYPE sbt BACKUPSET ALL DELETE INPUT; 
    
    
  2. Issue a LIST command to see a listing of backup sets and pieces.