In this blog post I will show how to remove stale entries in VMware SSO Domain server.
In this blog post I will show how to remove stale entries in VMware SSO Domain server.
PCI device numbering is typically represented in DBDF format, which is Domain:Bus:Device.Function.
https://en.wikipedia.org/wiki/PCI_configuration_space
https://diego.assencio.com/?index=649b7a71b35fc7ad41e03b6d0e825f07
https://wiki.xenproject.org/wiki/Bus:Device.Function_(BDF)_Notation
hostname -f && /usr/lib/vmware-vmafd/bin/vmafd-cli
get-pnid --server-name localhost && ifconfig && date
&& uptime && vpxd -vl && chage -l root
&& df -h
service-control --status --all
for i in $(/usr/lib/vmware-vmafd/bin/vecs-cli store list); do echo STORE
$i; /usr/lib/vmware-vmafd/bin/vecs-cli entry list --store $i --text |
egrep "Alias|Not After"; done
/usr/lib/vmware-vmdir/bin/vdcrepadmin -f showpartners -h localhost -u administrator
/usr/lib/vmware-vmdir/bin/vdcrepadmin -f showservers -h localhost -u administrator
/usr/lib/vmware-vmafd/bin/dir-cli state get
/usr/lib/vmware-vmafd/bin/vmafd-cli get-domain-name --server-name localhost
You can verify if ESXi host is Secure Boot ready by following command
/usr/lib/vmware/secureboot/bin/secureBoot.py -c
[Source: https://kb.vmware.com/s/article/79790]
In this blog post I will show you How To Containerize Applications (docker) ...