<?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 ambari export blueprint in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/ambari-export-blueprint/m-p/104229#M67126</link>
    <description>&lt;P&gt;Initially, I deployed a blueprint to ambari.Having used the nice ambari UI to create some configuration changes I would like to know how to export the current cluster configuration as a blueprint.&lt;/P&gt;&lt;P&gt;If this is not possible, how can I access the "default" configuration to know the config values which need to be passed in a blueprint.&lt;/P&gt;</description>
    <pubDate>Tue, 14 Feb 2017 21:03:04 GMT</pubDate>
    <dc:creator>georg_kf_heiler</dc:creator>
    <dc:date>2017-02-14T21:03:04Z</dc:date>
    <item>
      <title>ambari export blueprint</title>
      <link>https://community.cloudera.com/t5/Support-Questions/ambari-export-blueprint/m-p/104229#M67126</link>
      <description>&lt;P&gt;Initially, I deployed a blueprint to ambari.Having used the nice ambari UI to create some configuration changes I would like to know how to export the current cluster configuration as a blueprint.&lt;/P&gt;&lt;P&gt;If this is not possible, how can I access the "default" configuration to know the config values which need to be passed in a blueprint.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 21:03:04 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/ambari-export-blueprint/m-p/104229#M67126</guid>
      <dc:creator>georg_kf_heiler</dc:creator>
      <dc:date>2017-02-14T21:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: ambari export blueprint</title>
      <link>https://community.cloudera.com/t5/Support-Questions/ambari-export-blueprint/m-p/104230#M67127</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/13910/georgkfheiler.html" nodeid="13910"&gt;@Georg Heiler&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You can export the blueprint  of your current cluster as :&lt;/P&gt;&lt;P&gt;&lt;A href="http://erie1.example.com:8080/api/v1/clusters/ErieCluster" target="_blank"&gt;http://erie1.example.com:8080/api/v1/clusters/ErieCluster&lt;/A&gt;&lt;STRONG&gt;?format=blueprint&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Please see: &lt;A href="https://cwiki.apache.org/confluence/display/AMBARI/Blueprints" target="_blank"&gt;https://cwiki.apache.org/confluence/display/AMBARI/Blueprints&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;To export a blueprint from an existing cluster: 
&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;curl -H "X-Requested-By: ambari" -X GET -u admin:admin &lt;A href="http://c6401.ambari.apache.org:8080/api/v1/clusters/TestCluster?format=blueprint" target="_blank"&gt;http://c6401.ambari.apache.org:8080/api/v1/clusters/TestCluster?format=blueprint&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;.
&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Also get the blueprint registered:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;curl -H "X-Requested-By: ambari" -X GET -u admin:admin &lt;A href="http://c6401.ambari.apache.org:8080/api/v1/blueprints" target="_blank"&gt;http://c6401.ambari.apache.org:8080/api/v1/blueprints&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Feb 2017 21:14:00 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/ambari-export-blueprint/m-p/104230#M67127</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2017-02-14T21:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: ambari export blueprint</title>
      <link>https://community.cloudera.com/t5/Support-Questions/ambari-export-blueprint/m-p/104231#M67128</link>
      <description>&lt;P&gt;How do you export the cluster hostmapping file?&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 15:41:16 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/ambari-export-blueprint/m-p/104231#M67128</guid>
      <dc:creator>sandeeps</dc:creator>
      <dc:date>2017-05-02T15:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: ambari export blueprint</title>
      <link>https://community.cloudera.com/t5/Support-Questions/ambari-export-blueprint/m-p/104232#M67129</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/15862/sandeeps.html" nodeid="15862"&gt;@Sandeep Rai
&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You will need to write the hostname mapping file to define the Hostname (FQDN) mapping with the hostgroups,&lt;/P&gt;Blueprint File does not contain the actual Hostnames, Instead it uses
 the placeholders for the hosts like 'host_group_2', 'host_group_3' 
.etc.You will need to provide another JSON file to specify the hostgroup mapping. For more practice example please refer to: &lt;A href="https://github.com/abajwa-hw/ambari-workshops/blob/master/blueprints/cluster-4node.json"&gt;https://github.com/abajwa-hw/ambari-workshops/blob/master/blueprints/cluster-4node.json&lt;/A&gt;&lt;STRONG&gt;And&lt;/STRONG&gt; &lt;A href="https://cwiki.apache.org/confluence/display/AMBARI/Blueprints#Blueprints-ExampleClusterCreationTemplate.1"&gt;https://cwiki.apache.org/confluence/display/AMBARI/Blueprints#Blueprints-ExampleClusterCreationTemplate.1&lt;/A&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/15862/sandeeps.html" nodeid="15862"&gt;&lt;/A&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 16:13:06 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/ambari-export-blueprint/m-p/104232#M67129</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2017-05-02T16:13:06Z</dc:date>
    </item>
  </channel>
</rss>

