Member since
07-09-2019
371
Posts
97
Kudos Received
56
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1026 | 08-26-2024 08:17 AM | |
1482 | 08-20-2024 08:17 PM | |
596 | 07-08-2024 04:45 AM | |
796 | 07-01-2024 05:27 AM | |
650 | 06-05-2024 06:25 AM |
07-27-2021
10:36 PM
@Scharan The issue has been resolved. Summarising the resolution as below so that it helps others, As suspected, the hdp repository was not completely configured. So we deleted all the hdp repos from the servers. Created a new hdp repo in ambari-server host with the respective urls along with username and password for HDP and HDP-UTILS. Yum clean all, and yum repolist Then started with the ambari server installation as mentioned in the official documentation. Faced issues while installing hive especially with the mysql-connector-jar whose file size was around 24MB. Thanks for your help in providing the correct jar for the installation. The official documentation is very helpful for beginners like us. Now all the services are up and running successfully. Again Thank you and your team for your help in resolving this issue.
... View more
07-26-2021
06:07 AM
@enirys Can you once remove the problematic kerberos principal from FreeIPA and then try and regenerate the kerberos keytabs ipa-rmkeytab [ -p principal-name ] [ -k keytab-file ] [ -r realm ] [ -d ]
... View more
07-06-2021
11:10 AM
I was seeing the same issue, thanks to @jakezhang for posting. Changing the Ranger KMS: kerberos_princ_name from rangerkms to keyadmin allowed me to get this working. Thanks for the clues in the log file and to @Scharan
... View more
06-28-2021
11:31 AM
@Scharan Thanks for the response. So I added this in the metainfo.xml <metainfo> <schemaVersion>2.0</schemaVersion> <services> <service> ... <quickLinksConfigurations-dir>quicklinks</quickLinksConfigurations-dir> <quickLinksConfigurations> <quickLinksConfiguration> <fileName>quicklinks.json</fileName> <default>true</default> </quickLinksConfiguration> </quickLinksConfigurations> </service> </services> </metainfo> And this is the quicklinks.json file: { "name": "default", "description": "default quick links configuration", "configuration": { "protocol": { "type":"https", "checks":[ { "property":"dfs.http.policy", "desired":"HTTPS_ONLY", "site":"hdfs-site" } ] }, "links": [ { "name": "namenode_ui", "label": "NameNode UI", "url":"%@://%@:%@", "requires_user_name": "false", "port":{ "http_property": "dfs.namenode.http-address", "http_default_port": "50070", "https_property": "dfs.namenode.https-address", "https_default_port": "50470", "regex": "\\w*:(\\d+)", "site": "hdfs-site" } }, { "name": "namenode_logs", "label": "NameNode Logs", "url":"%@://%@:%@/logs", "requires_user_name": "false", "port":{ "http_property": "dfs.namenode.http-address", "http_default_port": "50070", "https_property": "dfs.namenode.https-address", "https_default_port": "50470", "regex": "\\w*:(\\d+)", "site": "hdfs-site" } }, { "name": "namenode_jmx", "label": "NameNode JMX", "url":"%@://%@:%@/jmx", "requires_user_name": "false", "port":{ "http_property": "dfs.namenode.http-address", "http_default_port": "50070", "https_property": "dfs.namenode.https-address", "https_default_port": "50470", "regex": "\\w*:(\\d+)", "site": "hdfs-site" } }, { "name": "Thread Stacks", "label": "Thread Stacks", "url":"%@://%@:%@/stacks", "requires_user_name": "false", "port":{ "http_property": "dfs.namenode.http-address", "http_default_port": "50070", "https_property": "dfs.namenode.https-address", "https_default_port": "50470", "regex": "\\w*:(\\d+)", "site": "hdfs-site" } } ] } } I have restarted ambari-server but however, still do not see the quicklinks in ambari UI. Any help is much appreciated. Thanks,
... View more
06-27-2021
11:46 PM
@Scharan Below path i am using in hive-env.sh export HIVE_AUX_JARS_PATH=/mnt/apache-atlas-2.1.0/hook/hive
... View more
06-18-2021
10:10 PM
@agarwadekarm Nifi 1.12.1 is shipped with HDF 3.5.2 HDF 3.5.2 is supported on RHEL 7.9 You can check the support matrix for more info https://supportmatrix.cloudera.com/#Hortonworks
... View more
06-10-2021
06:43 PM
@Scharan Appreciated your great help! After adding ranger.plugin.kms.policy.rest.url : Ranger KMS server started up ... Thanks again! Best regards, Jake Zhang
... View more
06-09-2021
12:43 PM
Hi Charan, Thanks for the reply. We found the issue and it is because one of our third party security tool is blocking the code syntax.
... View more
06-07-2021
07:58 AM
@Stephbat
To enable rotation for the ambari-agent, follow below steps:
cp /etc/ambari-agent/conf/logging.conf.sample /etc/ambari-agent/conf/logging.conf
Change the following line: args=('/var/log/ambari-agent/ambari-agent.log',"a", 10000000, 25) Where: The value 10000000 is the maximum size of the logs in bytes and the value 25 is the number of old logs to keep after the log rotates.
Restart the ambari-agent after making the changes.
... View more
05-26-2021
04:21 AM
I edited my solution above a bit. We found that the issue was related to some kind of routing from Oozie WF to YARN logs. What we wanted was to view the logs from the Oozie WF manager. When we access the logs from the YARN RM UI it works, but we couldn't able to view the logs directly from the Oozie WF manager. We already have the correct configurations present in the MapReduce service.
... View more