ambari rest API + 在ambari中设置json配置。

问题描述 投票:0回答:1

要创建一个新的配置组,必须提供一个配置组名称、一个标签和它所属的群集名称。本例中的标签是服务的名称。具有相同标签的两个配置组不能关联到同一主机。

如何用 curl 运行以下 json 文件?

以便在ambari中设置这个配置组。

POST /api/v1/clusters/c1/config_groups
[
   {
      "ConfigGroup": {
         "cluster_name": "c1",
         "group_name": "hdfs-nextgenslaves",
         "tag": "HDFS",
         "description": "HDFS configs for rack added on May 19, 2010",
         "hosts": [
            {
               "host_name": "host1"
            }
         ],
         "desired_configs": [
            {
               "type": "core-site",
               "tag": "nextgen1",
               "properties": {
                  "key": "value"
               }
            }
         ]
      }
   }
]

 参考- https:/github.comswagletestblobmasterdocsapiv1config-groups.md。

json curl ambari hdp
1个回答
1
投票

你的问题是关于如何用curl发送多行json?你可以找到不同的方法 此处.

© www.soinside.com 2019 - 2024. All rights reserved.