Member since
04-05-2020
3
Posts
0
Kudos Received
0
Solutions
04-06-2020
09:42 AM
1 Kudo
Hello @BVNP , thank you for raising the question about how to check if CM is running on a host. Do I understand correctly that you can ssh into the host where CM is deployed, please? You can use for example the following commands to verify if CM is up and running: - "cat /var/run/cloudera-scm-server.pid" and then use the ps command to see if the process with the PID is running - CURL the CM Web UI with "curl -k https://<cm-host>:7183/cmf/login". If TLS/SSL is not enabled for CM, you can use "curl -k http://<cm-host>:7181/cmf/login". This should return the HTML for the CM login page. - tail the CM Server log "tail -f /var/log/cloudera-scm-server/cloudera-scm-server.log" Please let us know if you need further troubleshooting tips. Thank you: Ferenc
... View more