This issue is resolved in VMware vCenter Server 7.0 U3.
Workaround:
VMware does not recommend using the value of 'thumbprint' for the vpxd.certmgmt.mode Advanced Setting for extended periods, and would recommend changing the value to the default 'vmca', or 'custom', depending on the customer's security requirements. However, changing to one of these values would require that certificates be re-issued to the hosts, which can be time consuming unless scripted.
If the value of the vpxd.certmgmt.mode cannot be immediately changed, then the fix-sps-certs.sh script attached to this article can be run to enumerate through the hosts in the vCenter's inventory, and will check the SMS store in VECS for the existence of an entry with the alias of 'https://<hostname>:9080/version.xml', obtain the current certificate from the host on port 9080, and create the entry if it does not exist, or update it if the certificates do not match. The SPS service will be restarted, and subsequently the sps-runtime.log.stderr should not continue to be flooded with the errors.
1. Upload the fix-sps-certs.sh script to the VCSA (in this example, to the /tmp directory)
2. Make the file executable:
chmod +x /tmp/fix-sps-certs.sh
3. Ensure that no Windows carriage returns are in the file:
sed -i 's/\r//g' /tmp/fix-sps-certs.sh
4. Run the script:
./fix-sps-certs.sh
5. If the vpxd.certmgmt.mode is set to 'thumbprint', the IOFilter provider entries in the SMS store in VECS will be updated, or created (if missing).
6. If the vpxd.certmgmt.mode is set to 'vmca' or 'custom', the script will prompt if the root password for all the ESXi hosts are the same. If they are, each host in inventory will have its reverse proxy SSL certificate and IOFilter provider certificate checked to see if the issuer is trusted by vCenter, and will also check the contents of the /etc/vmware/ssl/castore.pem file to see if the ESXi host trusts the issuer of the vCenter's Machine SSL certificate, or the SPS service (SMS certificate). If the ESXi root passwords are not uniform throughout the vCenter's inventory, then only the trust of the reverse proxy SSL certificate and IOFilter provider certificate will be performed
7. If the vpxd.certmgmt.mode is set to 'thumbprint', the vmware-sps service will be restarted. Monitor the size of the sps-runtime.log.stderr file to see if it has stopped growing:
watch -n 10 ls -l /storage/log/vmware/vmware-sps/sps-runtime.log.stderr