Error: In the vCenter while checking the Storage profiles not showing any IOfilter profiles of thrid party. Solution: Verify the Storage provider status from vCenter->Config ->Security ->Storage Providers here the third party installed Providers should list. if not listing : a)run " Synchronize Storage Providers " If it's offline : Open PowerCLI and connect the vCenter Server: # Connect-VIServer --server <vCenter-FQDN> Remove offline IOfilters: # Get-VasaProvider | Where-Object {$_.Namespace -eq 'IOFILTERS' -and $_.Status -like 'offline'} | Remove-VasaProvider In vSphere Client, go to vCenter > Configure > Storage Providers. Click on “Synchronize Storage Providers”.
Error When you try sudo for root permision you will get below error: This account is currently not available Solution 1.Remove nologin from the /etc/passwd file sudo nano /etc/passwd Change the "/usr/sbin/nologin" to /bin/bash 2.edit /etc/ssh/sshd_config PermitRootLogin yes 3. Restart SSH service systemctl restart ssh