@SandeepSingh This looks like the issue with TLS.
Eventhough the flag 'Use TLS Authentication of Agents to Server' in CM WebUI is not set, the following flag must be set for status_server to use TLS protocol using port 9000. Go to the /opt/cloudera/security/x509/ directory and use 'pem' and 'key' file under that directory. You may also have to use the password file for the private key if there is one.
Then edit the /etc/cloudera-scm-agent/config.ini file with below parameters.
# PEM file containing client private key.
client_key_file=
# If client_keypw_cmd isn't specified, instead a text file containing the client private key password can be used.
client_keypw_file=
# PEM file containing client certificate.
client_cert_file=/etc/cdep-ssl-conf/CA_STANDARD/cm_server-cert.pem
verify_cert_file=
Restart of the status_server is required
cd /var/run/cloudera-scm-agent/supervisord
/opt/cloudera/cm-agent/bin/supervisorctl -c /var/run/cloudera-scm-agent/supervisor/supervisord.conf restart status_server
In addition, restart of the cloudera-scm-agent is also needed
service cloudera-scm-agent restart
Cheers!
Was your question answered? Make sure to mark the answer as the accepted solution.
If you find a reply useful, say thanks by clicking on the thumbs up button.