<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234059#M195880</link>
    <description>&lt;A rel="user" href="https://community.cloudera.com/users/3418/jsensharma.html" nodeid="3418"&gt;@Jay SenSharma&lt;/A&gt;&lt;P&gt; I ran same command without iv but still i am getting error while extracting tar file&lt;/P&gt;&lt;P&gt;tar -xvf cluster_configs.tar.gz&lt;/P&gt;&lt;P&gt;tar: This does not look like a tar archive
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now&lt;/P&gt;&lt;P&gt;tar -xzvf cluster_configs.tar.gz &lt;/P&gt;&lt;P&gt;gzip: stdin: not in gzip format&lt;/P&gt;&lt;P&gt;
tar: Child returned status 1 &lt;/P&gt;&lt;P&gt;tar: Error is not recoverable: exiting now&lt;/P&gt;</description>
    <pubDate>Thu, 31 Aug 2017 15:22:00 GMT</pubDate>
    <dc:creator>amol_08</dc:creator>
    <dc:date>2017-08-31T15:22:00Z</dc:date>
    <item>
      <title>rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234054#M195875</link>
      <description>&lt;P&gt;I want to fetch all hadoop config files with all configuration ? for e.g hdfs, hive, hbase , yarn etc conif files&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2017 20:24:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234054#M195875</guid>
      <dc:creator>amol_08</dc:creator>
      <dc:date>2017-08-30T20:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234055#M195876</link>
      <description>&lt;P&gt;Have you looked at Ambari Blueprints? &lt;/P&gt;&lt;P&gt;&lt;A href="https://cwiki.apache.org/confluence/display/AMBARI/Blueprints"&gt;https://cwiki.apache.org/confluence/display/AMBARI/Blueprints&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;curl -H "X-Requested-By: ambari" -X GET -u ambariuser:ambaripassword "http://YOUR_AMBARI_SERVER:8080/api/v1/clusters/YOUR_CLUSTER_NAME?format=blueprint" &amp;gt; blueprint.json&lt;/PRE&gt;&lt;P&gt;All of the configuration information is contained in that JSON file which you can then parse/manipulate to re-construct XML files.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2017 22:43:29 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234055#M195876</guid>
      <dc:creator>elserj</dc:creator>
      <dc:date>2017-08-30T22:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234056#M195877</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/19322/mishraanurag643.html" nodeid="19322"&gt;@Anurag Mishra&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You can try the following API call. I tested it on Ambari 2.5.1 which provides this option to download configs.&lt;/P&gt;&lt;PRE&gt;# mkdir /tmp/All_Configs
# cd /tmp/All_Configs/

# curl -iv -u admin:admin -H "X-Requested-By: ambari" -X GET  &lt;A href="http://localhost:8080/api/v1/clusters/Sandbox/components?format=client_config_tar" target="_blank"&gt;http://localhost:8080/api/v1/clusters/Sandbox/components?format=client_config_tar&lt;/A&gt;   -o /tmp/All_Configs/cluster_configs.tar.gz
&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Now you can extract the "/tmp/All_Configs/cluster_configs.tar.gz" file and then you can find most of the configs.&lt;/P&gt;&lt;P&gt;I found the following configs inside the mentioned gz file:&lt;/P&gt;&lt;PRE&gt;Downloads/Sandbox\(CLUSTER\)-configs 

| | | |____Sandbox(CLUSTER)-configs
| | | | |____.DS_Store
| | | | |____ATLAS_CLIENT
| | | | | |____application.properties
| | | | | |____atlas-env.sh
| | | | | |____atlas-log4j.xml
| | | | | |____atlas-solrconfig.xml
| | | | |____FALCON_CLIENT
| | | | | |____falcon-env.sh
| | | | | |____runtime.properties
| | | | | |____startup.properties
| | | | |____HBASE_CLIENT
| | | | | |____hbase-env.sh
| | | | | |____hbase-policy.xml
| | | | | |____hbase-site.xml
| | | | | |____log4j.properties
| | | | |____HDFS_CLIENT
| | | | | |____core-site.xml
| | | | | |____hadoop-env.sh
| | | | | |____hdfs-site.xml
| | | | | |____log4j.properties
| | | | |____HIVE_CLIENT
| | | | | |____hive-env.sh
| | | | | |____hive-exec-log4j.properties
| | | | | |____hive-log4j.properties
| | | | | |____hive-site.xml
| | | | |____INFRA_SOLR_CLIENT
| | | | | |____log4j.properties
| | | | |____MAPREDUCE2_CLIENT
| | | | | |____core-site.xml
| | | | | |____mapred-env.sh
| | | | | |____mapred-site.xml
| | | | |____OOZIE_CLIENT
| | | | | |____oozie-env.sh
| | | | | |____oozie-log4j.properties
| | | | | |____oozie-site.xml
| | | | |____PIG
| | | | | |____log4j.properties
| | | | | |____pig-env.sh
| | | | | |____pig.properties
| | | | |____SLIDER
| | | | | |____core-site.xml
| | | | | |____hdfs-site.xml
| | | | | |____log4j.properties
| | | | | |____slider-client.xml
| | | | | |____slider-env.sh
| | | | | |____yarn-site.xml
| | | | |____SPARK2_CLIENT
| | | | | |____spark-defaults.conf
| | | | | |____spark-env.sh
| | | | | |____spark-log4j.properties
| | | | | |____spark-metrics.properties
| | | | |____SPARK_CLIENT
| | | | | |____spark-defaults.conf
| | | | | |____spark-env.sh
| | | | | |____spark-log4j.properties
| | | | | |____spark-metrics.properties
| | | | |____SQOOP
| | | | | |____sqoop-env.sh
| | | | | |____sqoop-site.xml
| | | | |____TEZ_CLIENT
| | | | | |____tez-env.sh
| | | | | |____tez-site.xml
| | | | |____YARN_CLIENT
| | | | | |____capacity-scheduler.xml
| | | | | |____core-site.xml
| | | | | |____log4j.properties
| | | | | |____yarn-env.sh
| | | | | |____yarn-site.xml
| | | | |____ZOOKEEPER_CLIENT
| | | | | |____log4j.properties
| | | | | |____zookeeper-env.sh

&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2017 23:36:48 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234056#M195877</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2017-08-30T23:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234057#M195878</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/3418/jsensharma.html" nodeid="3418"&gt;@Jay SenSharma&lt;/A&gt; while extracting I am getting error :&lt;/P&gt;&lt;P&gt;tar: This does not look like a tar archive  &lt;/P&gt;&lt;P&gt;gzip: stdin: not in gzip format &lt;/P&gt;&lt;P&gt; tar: Child returned status 1 &lt;/P&gt;&lt;P&gt;tar: Error is not recoverable: exiting now&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 13:32:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234057#M195878</guid>
      <dc:creator>amol_08</dc:creator>
      <dc:date>2017-08-31T13:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234058#M195879</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/19322/mishraanurag643.html" nodeid="19322"&gt;@Anurag Mishra&lt;BR /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Please do not use the "-iv"  option with curl command .. as it will cause additional junk data to be added to the tar.gz file.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please try the following command:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;# curl -u admin:admin -H "X-Requested-By: ambari" -X GET  &lt;A href="http://localhost:8080/api/v1/clusters/Sandbox/components?format=client_config_tar" target="_blank"&gt;http://localhost:8080/api/v1/clusters/Sandbox/components?format=client_config_tar&lt;/A&gt;   -o /tmp/All_Configs/cluster_configs.tar.g&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Output:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;[root@sandbox All_Configs]# curl -u admin:admin -H "X-Requested-By: ambari" -X GET  &lt;A href="http://localhost:8080/api/v1/clusters/Sandbox/components?format=client_config_tar" target="_blank"&gt;http://localhost:8080/api/v1/clusters/Sandbox/components?format=client_config_tar&lt;/A&gt;   -o /tmp/All_Configs/cluster_configs.tar.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 48887    0 48887    0     0  21626      0 --:--:--  0:00:02 --:--:-- 21631


[root@sandbox All_Configs]# ls
cluster_configs.tar.gz


[root@sandbox All_Configs]# tar -xvf cluster_configs.tar.gz
SPARK2_CLIENT/./
SPARK2_CLIENT/spark-defaults.conf
SPARK2_CLIENT/spark-env.sh
SPARK2_CLIENT/spark-log4j.properties
SPARK2_CLIENT/spark-metrics.properties
TEZ_CLIENT/./
TEZ_CLIENT/tez-site.xml
TEZ_CLIENT/tez-env.sh
SLIDER/./
SLIDER/slider-client.xml
SLIDER/hdfs-site.xml
SLIDER/yarn-site.xml
SLIDER/core-site.xml
SLIDER/slider-env.sh
SLIDER/log4j.properties
OOZIE_CLIENT/./
OOZIE_CLIENT/oozie-site.xml
OOZIE_CLIENT/oozie-log4j.properties
OOZIE_CLIENT/oozie-env.sh
SPARK_CLIENT/./
SPARK_CLIENT/spark-defaults.conf
SPARK_CLIENT/spark-env.sh
SPARK_CLIENT/spark-log4j.properties
SPARK_CLIENT/spark-metrics.properties
HDFS_CLIENT/./
HDFS_CLIENT/hdfs-site.xml
HDFS_CLIENT/core-site.xml
HDFS_CLIENT/log4j.properties
HDFS_CLIENT/hadoop-env.sh
FALCON_CLIENT/./
FALCON_CLIENT/falcon-env.sh
FALCON_CLIENT/runtime.properties
FALCON_CLIENT/startup.properties
HBASE_CLIENT/./
HBASE_CLIENT/hbase-policy.xml
HBASE_CLIENT/log4j.properties
HBASE_CLIENT/hbase-site.xml
HBASE_CLIENT/hbase-env.sh
INFRA_SOLR_CLIENT/./
INFRA_SOLR_CLIENT/log4j.properties
ZOOKEEPER_CLIENT/./
ZOOKEEPER_CLIENT/zookeeper-env.sh
ZOOKEEPER_CLIENT/log4j.properties
YARN_CLIENT/./
YARN_CLIENT/yarn-site.xml
YARN_CLIENT/yarn-env.sh
YARN_CLIENT/core-site.xml
YARN_CLIENT/log4j.properties
YARN_CLIENT/capacity-scheduler.xml
SQOOP/./
SQOOP/sqoop-env.sh
SQOOP/sqoop-site.xml
PIG/./
PIG/pig.properties
PIG/pig-env.sh
PIG/log4j.properties
MAPREDUCE2_CLIENT/./
MAPREDUCE2_CLIENT/core-site.xml
MAPREDUCE2_CLIENT/mapred-env.sh
MAPREDUCE2_CLIENT/mapred-site.xml
ATLAS_CLIENT/./
ATLAS_CLIENT/application.properties
ATLAS_CLIENT/atlas-log4j.xml
ATLAS_CLIENT/atlas-solrconfig.xml
ATLAS_CLIENT/atlas-env.sh
HIVE_CLIENT/./
HIVE_CLIENT/hive-site.xml
HIVE_CLIENT/hive-log4j.properties
HIVE_CLIENT/hive-exec-log4j.properties
HIVE_CLIENT/hive-env.sh&lt;/PRE&gt;&lt;P&gt;. &lt;BR /&gt;&lt;A rel="user" href="https://community.cloudera.com/users/19322/mishraanurag643.html" nodeid="19322"&gt;&lt;/A&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 13:59:15 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234058#M195879</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2017-08-31T13:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234059#M195880</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/3418/jsensharma.html" nodeid="3418"&gt;@Jay SenSharma&lt;/A&gt;&lt;P&gt; I ran same command without iv but still i am getting error while extracting tar file&lt;/P&gt;&lt;P&gt;tar -xvf cluster_configs.tar.gz&lt;/P&gt;&lt;P&gt;tar: This does not look like a tar archive
gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now&lt;/P&gt;&lt;P&gt;tar -xzvf cluster_configs.tar.gz &lt;/P&gt;&lt;P&gt;gzip: stdin: not in gzip format&lt;/P&gt;&lt;P&gt;
tar: Child returned status 1 &lt;/P&gt;&lt;P&gt;tar: Error is not recoverable: exiting now&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 15:22:00 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234059#M195880</guid>
      <dc:creator>amol_08</dc:creator>
      <dc:date>2017-08-31T15:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234060#M195881</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/19322/mishraanurag643.html" nodeid="19322"&gt;@Anurag Mishra&lt;BR /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;What is the output of the following command?  &lt;/P&gt;&lt;PRE&gt;# file cluster_configs.tar.gz

cluster_configs.tar.gz: gzip compressed data, from FAT filesystem (MS-DOS, OS/2, NT)&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;If your "file" command output is different then this (or like "data") then it means your binary is not downloaded properly.    You can in that case try to use the same link from a browser where you are already logged in to ambari OR double check your curl command (Delete the previously downloaded file)&lt;/P&gt;&lt;PRE&gt;&lt;A href="http://localhost:8080/api/v1/clusters/Sandbox/components?format=client_config_tar" target="_blank"&gt;http://localhost:8080/api/v1/clusters/Sandbox/components?format=client_config_tar&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;A rel="user" href="https://community.cloudera.com/users/19322/mishraanurag643.html" nodeid="19322"&gt;&lt;/A&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 15:25:52 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234060#M195881</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2017-08-31T15:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234061#M195882</link>
      <description>&lt;P&gt;file  cluster_configs.tar.gz&lt;/P&gt;&lt;P&gt;cluster_configs.tar.gz: ASCII text&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 15:47:16 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234061#M195882</guid>
      <dc:creator>amol_08</dc:creator>
      <dc:date>2017-08-31T15:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234062#M195883</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/19322/mishraanurag643.html" nodeid="19322"&gt;@Anurag Mishra&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Please run the following command once again:&lt;/P&gt;&lt;PRE&gt;# curl -u admin:admin -H "X-Requested-By: ambari" -X GET  &lt;A href="http://localhost:8080/api/v1/clusters/Sandbox/components?format=client_config_tar" target="_blank"&gt;http://localhost:8080/api/v1/clusters/Sandbox/components?format=client_config_tar&lt;/A&gt;   -o /tmp/All_Configs/new_cluster_configs.tar.gz&lt;/PRE&gt;&lt;P&gt;Then check :&lt;/P&gt;&lt;PRE&gt;# file /tmp/All_Configs/new_cluster_configs.tar.gz&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 15:48:57 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234062#M195883</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2017-08-31T15:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234063#M195884</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/3418/jsensharma.html" nodeid="3418"&gt;@Jay SenSharma&lt;/A&gt; what  could be reason behind my tar file is different&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 16:02:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234063#M195884</guid>
      <dc:creator>amol_08</dc:creator>
      <dc:date>2017-08-31T16:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234064#M195885</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/3418/jsensharma.html" nodeid="3418"&gt;@Jay SenSharma&lt;/A&gt; &lt;/P&gt;&lt;P&gt;still it is same&lt;/P&gt;&lt;P&gt;new_cluster_configs.tar.gz: ASCII text&lt;/P&gt;&lt;P&gt;Note: i am using ambari admin credentials and in place of localhost id address ambari is installed &lt;/P&gt;&lt;P&gt;can you pls elaborate more about format=client_config_tar&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 17:21:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234064#M195885</guid>
      <dc:creator>amol_08</dc:creator>
      <dc:date>2017-08-31T17:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234065#M195886</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/3418/jsensharma.html" nodeid="3418"&gt;@Jay SenSharma&lt;/A&gt;&lt;P&gt; my ambari version is 2.4 probably that could be reason&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 18:33:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234065#M195886</guid>
      <dc:creator>amol_08</dc:creator>
      <dc:date>2017-08-31T18:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234066#M195887</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/19322/mishraanurag643.html" nodeid="19322"&gt;@Anurag Mishra&lt;BR /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Yes, the "Download All Client Configs" feature is introduced from Ambari 2.5 onwards. &lt;/P&gt;&lt;P&gt;In Ambari 2.4 and previous version you will need to go to individual service and then from the "Service Actions" dropdown you will need to choose "Download  Client Configs".&lt;/P&gt;&lt;P&gt;Like Ambari UI --&amp;gt; HDFS --&amp;gt;Service Actions --&amp;gt; "Download  Client Configs".&lt;/P&gt;&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/19322/mishraanurag643.html" nodeid="19322"&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 19:21:22 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234066#M195887</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2017-08-31T19:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: rest api to fetch config files like hdfs-site.xml,  yarn-site.xml etc</title>
      <link>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234067#M195888</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/3418/jsensharma.html" nodeid="3418"&gt;@Jay SenSharma&lt;/A&gt; &lt;/P&gt;&lt;P&gt;I am able to download client config files but one problem I am facing is that  only those client configs are downloadable which are present in that localhost, but I wanted to download all client configs present  in whole cluster, which rest api should I use to achieve same ?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2017 12:58:13 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/rest-api-to-fetch-config-files-like-hdfs-site-xml-yarn-site/m-p/234067#M195888</guid>
      <dc:creator>amol_08</dc:creator>
      <dc:date>2017-09-04T12:58:13Z</dc:date>
    </item>
  </channel>
</rss>

