Member since
04-13-2016
422
Posts
150
Kudos Received
55
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1862 | 05-23-2018 05:29 AM | |
4870 | 05-08-2018 03:06 AM | |
1629 | 02-09-2018 02:22 AM | |
2637 | 01-24-2018 08:37 PM | |
6058 | 01-24-2018 05:43 PM |
06-13-2025
04:04 AM
The SSH connection error that you are facing while importing HDP 2.5 to the virtual box, check if the SSH service is running inside the VM with the service sshd status. Starting the service usually fixes it. There are many different causes for it, such as:- 1) SSH Service not running 2) Firewall blocking SSH port 3) Incorrect SSH Configuration 4) Network issues 5) Server Overload 6) SSH Key Authentication issues, etc You need to understand all the causes thoroughly and also the different ways to fix the error in detail, so it might help solve it. SSH is a method of securely getting access to the remote device or server over an insecure network, usually over the Internet. Therefore, SSH is very important for conveying sensitive information, especially where security is of the utmost importance.
... View more
09-03-2023
10:47 PM
1 Kudo
@Ankita3087, Welcome to Cloudera Community. As this is an older post, you would have a better chance of receiving a resolution by starting a new thread. This will also be an opportunity to provide details specific to your environment that could aid others in assisting you with a more accurate answer to your question. You can link this thread as a reference in your new post.
... View more
02-21-2023
08:03 PM
Nice,works for me. chown -R hive.hive /tmp/hive same errors and my hive-tmp dir like this drwxr-xr-x 3 yarn yarn 19 Feb 15 17:22 hive
... View more
10-11-2021
08:25 AM
To resolve the issue, import the Ambari certificates to the Ambari truststore. To import the Ambari certificates, do the following:
STEP 1:
Get certificate from ambari-server
echo | openssl s_client -showcerts -connect <AMBARI_HOst>:<AMBARI_HTTPs_PORT> 2>&1 | sed --quiet '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > /tmp/ambari_certificate.cr
STEP 2:
Get path of ambari trustore and truststore password from Ambari properties
cat /etc/ambari-server/conf/ambari.properties |grep truststore
As per your ambari.properties below is the path and password :-
ssl.trustStore.password=refer from ambari.property file
ssl.trustStore.path=/etc/ambari-server/conf/ambari-server-truststore
STEP 3:
keytool -importcert -file /tmp/ambari_certificate.crt -keystore <keystore-path>
STEP 4:
ambari-server restart
... View more
05-21-2021
12:25 AM
Hi @Rajuambala as this is an older post, you would have a better chance of receiving a resolution by starting a new thread. This will also be an opportunity to provide details specific to your environment that could aid others in assisting you with a more accurate answer to your question. You can link this thread as a reference in your new post.
... View more
08-11-2020
04:50 PM
Hello AM47, To handle space in user/group name, HTML encode it: %20 for space. curl --insecure -u admin:<password> -H 'X-Requested-By: ambari' -X DELETE 'https://ambarihostname:8080/api/v1/groups/AB%20CD ' Regards. Rafa B.
... View more
04-02-2020
02:12 AM
there are many repo for ambari and 2.7.5 is not paid prefer to download it directly from https://cwiki.apache.org/confluence/display/AMBARI/Installation+Guide+for+Ambari+2.7.5 or install 2.7.3 ambari repo for hdp 3.1.4 for ubuntu : http://www.olric.org/2019/09/install-single-node-hortonworks-data.html or https://docs.cloudera.com/HDPDocuments/Ambari-2.7.3.0/bk_ambari-installation/content/ch04s01s06.html for centos install this repo https://docs.cloudera.com/HDPDocuments/Ambari-2.7.3.0/bk_ambari-installation/content/download_the_ambari_repo_lnx7.html
... View more
12-12-2019
10:22 PM
Could you try performing the "Validate hivemetastore schema " from Cloudera manager - > Hive service then Let us know if you are able to create the same table.
... View more
05-23-2018
05:59 AM
Thank you @Sridhar, I did shut down using Ambari, so I think I did graceful shutdown. I think three is minimum for datanode and I like to make sure it is working alone.
... View more