martes, 30 de julio de 2019

VSAN DISK FAULT



FAULT DISK VSAN
First Step:
We need to Update the firmware for the Raid Controller and UCS VIC:
Cisco 12G SAS Modular Raid Controller
Runninng:
lsi-mr3                                         7.703.19.00-1OEM.670.0.0.8169922    
Recommended:
Driver Version                             7.706.09.00-1OEM.670.0.0.8019320

UCS VIC 1227 10-Gbps 2 port CNA SFP+(Cisco)
Runninng:
nenic                          1.0.25.0-1OEM.670.0.0.8169922
Recommended:
Driver Version           1.0.27.0-1OEM.670.0.0.8169922 nenic

ESXi 6.7 nenic 1.0.27.0 NIC
VMware ESXi 6.7 lsi-mr3 7.706.09.00-1OEM:
Drivers update guide:

After that you need to execute the next command:


Configure the vSAN IO timeout settings.

esxcfg-advcfg -s 100000 /LSOM/diskIoTimeout

esxcfg-advcfg -s 4 /LSOM/diskIoRetryFactor
Notes:
  • This is not required if you are running ESXI 6.0 patch ESXi600-201608001 or later.
  • These commands must be run on each ESXi host in the vSAN cluster.
  • These commands are effective immediately. No reboot is required.
  • These commands result in persistent changes and remains configured across reboots.

Share and be sociable.

Follow me on twitter: @vicentejr86



lunes, 15 de abril de 2019

Round Robin Multipath Policy


Hello Guys,

In this post I will show you how to set round robin multipath policy:

First you need to know the actual Multipath Policy:


PS /Users/vicentemeneses> Get-VMhost b200m3-2-9-192g-18.vmccloud.net | Get-ScsiLun -LunType disk                                                                                                                                                

CanonicalN ConsoleDeviceName              LunType         CapacityGB MultipathPolicy 
ame                                                                                  
---------- -----------------              -------         ---------- --------------- 
        
naa.600... /vmfs/devices/disks/naa.600... disk             2,048.000 RoundRobin             
naa.600... /vmfs/devices/disks/naa.600... disk             2,048.000 RoundRobin          
naa.600... /vmfs/devices/disks/naa.600... disk             5,120.000 RoundRobin           
naa.600... /vmfs/devices/disks/naa.600... disk             2,048.000 RoundRobin              
naa.600... /vmfs/devices/disks/naa.600... disk             2,048.000 RoundRobin            
naa.600... /vmfs/devices/disks/naa.600... disk             2,752.000 RoundRobin      
naa.600... /vmfs/devices/disks/naa.600... disk             2,048.000 RoundRobin      
naa.600... /vmfs/devices/disks/naa.600... disk            55,807.822 RoundRobin              
naa.600... /vmfs/devices/disks/naa.600... disk            32,768.000 RoundRobin      
naa.600... /vmfs/devices/disks/naa.600... disk             5,120.000 RoundRobin             
naa.600... /vmfs/devices/disks/naa.600... disk             5,120.000 RoundRobin      
naa.600... /vmfs/devices/disks/naa.600... disk             5,120.000 RoundRobin      
naa.600... /vmfs/devices/disks/naa.600... disk             2,048.000 RoundRobin             
naa.600... /vmfs/devices/disks/naa.600... disk             2,048.000 RoundRobin  

And After that you need to set the multipath policy:

PS /Users/vicentemeneses> Get-VMhost b200m3-2-9-192g-18.vmccloud.net | Get-ScsiLun -LunType disk |Set-ScsiLun -MultipathPolicy "RoundRobin" 


CanonicalN ConsoleDeviceName              LunType         CapacityGB MultipathPolicy 
ame                                                                                  
---------- -----------------              -------         ---------- --------------- 
naa.600... /vmfs/devices/disks/naa.600... disk             2,048.000 RoundRobin 



Thanks for visiting my blog.

Share and be sociable.

Please follow me on twitter: @vicentejr86


jueves, 7 de marzo de 2019

VMware vExpert 2019

Hello Guys,

In this post I really feel great.

VMware awarded me for four years like VMware vExpert but I am really glad because my friend Camilo Jaraba is a VMware vExpert too.  Camilo Welcome to the best community!!! The world is going to be a better place with you like a VMware Leader.

Thanks to all VMware Community.


Share and be sociable.

Please follow me on twitter: @vicentejr86


viernes, 1 de marzo de 2019

Delete Multiple Snapshot Instances with PowerCLI


Hello Guys,


In this post I'm going to show how to delete multiple snapshot instances in VMware vSphere:

  1.  You need to construct a PowerCLI query:
             PS /Users/vicentemeneses> 
             $snapshotprd=Get-Cluster C3-PRODUCTION |Get-    VM |Get-Snapshot
             The query above gets all the snapshots in the virtual machines and store the result in a                         variable called $snapshotprd

      2.   After that, you need to check the variable information, just type the variable in PowerCLI:
            PS /Users/vicentemeneses> $snapshotprd

      3.  Delete all the snapshots, take care of the Veeam backup snapshots Smile :) 
           PS /Users/vicentemeneses> Remove-Snapshot -Snapshot $snapshotmgmt                                                                                       -RemoveChildren   

             
Share and Be Sociable.

Please follow me on twitter: @vicentejr86

jueves, 21 de febrero de 2019

Increase the Swap Capacity in VMware ESXI: VSAN


Sometimes we need to make a VMware vMotion in Virtual Machines with more than 64GB in RAM.

So for doing the task successfully, you need to execute the next command.


Error:



Solution:

In the VMware KB 2150316 you can check the VMware explication https://kb.vmware.com/s/article/2150316.



Thanks for visiting my blog.

Share and be sociable.

Please follow me on twitter @vicentejr86

Installing Kubernetes on RHEL 9

  Hello Guys, In this post I will show you how to install a Kubernetes cluster on RHEL8. Let's Start: Disablle Swapp: sudo swapoff -a Co...