Created 03-08-2018 04:56 AM
I have enabled SSL for HDFS, YARN and MapReduce. After enabling SSL, Ambari UI is not showing Active/Standby status for ResourceManager. For both ResourceManager Ambari UI is showing just ResourceManager.
Why I am not getting Active/Standby status for ResourceManager on Ambari UI?
Please suggest.
Thanks,
Bhushan
Created 03-08-2018 06:07 AM
You might be hitting the issue described in the article:
.
So please add the respective certificate in the Ambari server Truststore.
Created 03-08-2018 06:07 AM
You might be hitting the issue described in the article:
.
So please add the respective certificate in the Ambari server Truststore.
Created 03-08-2018 01:20 PM
I have followed steps mentioned in: https://community.hortonworks.com/content/supportkb/150303/after-enabling-ssl-for-yarn-and-hdfsthe-n...
But I am getting following error while importing the certificate into Ambari server Truststore:
[root@bhushan-kandalkar-87127-1 certs]# keytool -import -file hdfs.cert -keystore /etc/ambari-server/bhushan-kandalkar-87127-1.novalocal.jks
Enter keystore password:
keytool error: java.io.IOException: Keystore was tampered with, or password was incorrect
[root@bhushan-kandalkar-87127-1 certs]#
Please suggest.
Thanks,
Bhushan
Created 03-08-2018 08:39 PM
You are getting error as following:
keytool error: java.io.IOException: Keystore was tampered with, or password was incorrect<br>
Above error indicates that you might be entering an incorrect store password of your JKS keystore (Or the keystore is corrupted).
So if you want to verify if your Keystore is good and your password is correct or not, Please try to list the keystore using the same keystore password which is failing for you:
# keytool -list -v -keystore /etc/ambari-server/bhushan-kandalkar-87127-1.novalocal.jks
.
If you get the same error even while listing the keystores default certificates then it means either you are entering the password incorrectly Or bhushan-kandalkar-87127-1.novalocal.jks file is tempered.
Created 03-12-2018 05:48 AM
Thanks @Jay Kumar SenSharma. It worked.