vmware-system-user local Linux account for VCF Services Runtime 9.1.vmware-system-user account.vmware-system-user password via the Fleet Management UI/API.The procedure requires multiple steps:
VCF Operations interface at https://<vcf_operations_fqdn> as a user assigned the Administrator role.Build > Lifecycle > VCF Management.VCF services runtime.Nodes section.vSphere Client where the cluster is deployed and find the virtual machine. Open a virtual console.Power, then Restart Guest OS.e.rw init=/bin/bash to the end, then press F10 to continue the boot procedure.useradd temp
passwd tempecho "temp ALL=(ALL) ALL" >> /etc/sudoers.d/90-cloud-init-usersreboot -fsudo su -CLUSTER=$(kubectl get configmap global-config -n vmsp-platform -o jsonpath='{.data.cluster\.name}')
read -sp "Enter password: " NEW_PASSWORD
export NEW_PASSWORD
HASH=$(printf '%s' "${NEW_PASSWORD}" | vmsp passwd --password-stdin | tr -d '\n' | base64 -w0)
kubectl patch secret "${CLUSTER}-ssh-password-secret" -n vmsp-platform --type=merge -p "{\"data\":{\"sshPassword\":\"${HASH}\"}}"vmware-system-user can now loginsudo userdel tempvmware-system-user.