Forum Discussion

Kumaran's avatar
Kumaran
Level 3
13 years ago

hastart post hastop -all -force disables NFS share on the vcs cluster

Hi,   Had to do a hastop -all -force to make some config changes and restart a process. When I did hastart post the changes all was OK except the NFS share exported out through VCS SG went offlin...
  • Kumaran's avatar
    13 years ago

    More info:

    After going through Symatec docs, I've now changed the config as follows and now on a "hastart" post a  "hastop -all -force", the share goes offline and almost after a minute, VCS restarts the NFS resource and then the Share resource. While the situation is better I still have a 1minute outage.

    Also, is NFSRestart a requirement if so, preonline requirements a must as well. I don't see NFSRestart adding any value if Lock failover is not enabled.

    This could be 5.1 version issue as I don't seem to hit this issue with 5.1Sp1

     

     

    group MYNFS_SHARE_SG (
            SystemList = { cluster01 = 0, cluster02 = 0 }
            AutoStartList = { cluster01, cluster02 }
            )
     
            DiskGroup DG-MYAPP_DG (
                    DiskGroup = MYAPP_DG
                    )
     
            HTC HTC-MYAPP_DG (
                    Critical = 0
                    GroupName = MYAPP_DG
                    Instance @cluster01 = 4
                    Instance @cluster02 = 5
                    )
     
            IPMultiNIC IPMN-MYNFS_SHARE_SG (
                    Address = "x.x.x.x"
                    NetMask = "255.255.255.0"
                    MultiNICResName = MNIC_LAN
                    IfconfigTwice = 1
                    )
     
            Mount Mount-app-share (
                    MountPoint = "/app_share"
                    BlockDevice = "/dev/vx/dsk/MYAPP_DG/MYNFS_SHARE"
                    FSType = vxfs
                    MountOpt = "rw,suid,delaylog,largefiles,qio,ioerror=mwdisable"
                    FsckOpt = "-n"
                    )
     
            NFS NFS-MYNFS_SHARE (
                    )
     
            NFSRestart NFSRestart-MYNFS_SHARE (
                    NFSRes = NFS-MYNFS_SHARE
                    )
     
            Proxy NICProxy-MYNFS_SHARE_SG (
                    TargetResName = MNIC_LAN
                    )
     
            Share SHARE-MYNFS_SHARE (
                    NFSRes = NFS-MYNFS_SHARE
                    PathName = "/app_share"
                    Options = "-o rw,root=client01.mydomain.local:client02.mydomain.local"
                    )
     
            DG-MYAPP_DG requires HTC-MYAPP_DG
            IPMN-MYNFS_SHARE_SG requires NICProxy-MYNFS_SHARE_SG
            IPMN-MYNFS_SHARE_SG requires SHARE-MYNFS_SHARE
            Mount-radix-share requires DG-MYAPP_DG
            NFSRestart-MYNFS_SHARE requires IPMN-MYNFS_SHARE_SG
            SHARE-MYNFS_SHARE requires Mount-app-share
            SHARE-MYNFS_SHARE requires NFS-MYNFS_SHARE
     
     
     // resource dependency tree
            //
            //      group MYNFS_SHARE_SG
            //      {
            //      NFSRestart NFSRestart-MYNFS_SHARE
            //          {
            //          IPMultiNIC IPMN-MYNFS_SHARE_SG
            //              {
            //              Proxy NICProxy-MYNFS_SHARE_SG
            //              Share SHARE-MYNFS_SHARE
            //                  {
            //                  Mount Mount-app-share
            //                      {
            //                      DiskGroup DG-MYAPP_DG
            //                          {
            //                          HTC HTC-MYAPP_DG
            //                          }
            //                      }
            //                  NFS NFS-MYNFS_SHARE
            //                  }
            //              }
            //          }
            //      }