Member since
04-13-2016
422
Posts
150
Kudos Received
55
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1888 | 05-23-2018 05:29 AM | |
4911 | 05-08-2018 03:06 AM | |
1655 | 02-09-2018 02:22 AM | |
2664 | 01-24-2018 08:37 PM | |
6099 | 01-24-2018 05:43 PM |
10-06-2025
10:01 PM
The “Connection Refused” error when trying to SSH into your HDP 2.5 VirtualBox setup is a common issue that usually relates to network settings or authentication. Here are some steps to try: Ensure your VirtualBox network settings are correctly configured—NAT with port forwarding enabled so the SSH port (usually 22) is reachable from your host machine. If port forwarding is set but SSH still refuses connection, try switching the network mode to Bridged Adapter temporarily to check connectivity. Another important step is to reset the root password inside the VM. You can do this by pressing Alt+F5 at the splash screen to open a terminal, then run the command passwd to set a new root password. Use this new password to login via SSH. Make sure the SSH service is running inside the VM. You can check this by running sudo service ssh status or systemctl status sshd. For more detailed steps and troubleshooting, this guide can be helpful on SSH connection error Hope this helps you get SSH access working smoothly!
... 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