要创建一个新的配置组,必须提供一个配置组名称、一个标签和它所属的群集名称。本例中的标签是服务的名称。具有相同标签的两个配置组不能关联到同一主机。
如何用 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。
你的问题是关于如何用curl发送多行json?你可以找到不同的方法 此处.