I came across this error the other day in my lab and luckily there is a quick fix for it so I could proceed to backup my VMware VCSA server
When I tried to perform a manual backup within VCSA 6.7, I was presented with the following error:
Invalid vCenter Server Status: All required services are not up! Stopped services: ‘analytics, statsmonitor, eam’.

To resolve this error message we must login to the VCSA CLI. You can do this by using SSH (with a tool like Putty), enter in your username and password, and dropping into the shell. In VCSA 6.7 you simply type shell.
Within the shell you can have a look at the status of your running and stopped vcenter services by typing:
# service-control –status
You will see that the analytics,
To start the services you can simply type:
# service-control –start vmware-analytics
# service-control –start vmware-statsmonitor
# service-control –start vmware-eam

Now that we have started all the necessary services we can return to the VCSA admin page and head back to the backup page.
If we start the backup job again, we will see that it begins to perform the manual

Muchas gracias David. LLevaba unos dias buscando la solución a este problema y me ha sido muy útil.
You’re welcome Eduardo, glad you found the information you needed 🙂
Thank you. Saved me time troubleshooting.
Hi HG, you’re welcome 🙂
Your commands are missing a dash
should be “service-control –status” … etc.