简体   繁体   English

出色的基本许可证安装

[英]marvel basic licence installation

I am trying to install the free basic licence onto marvel for my elasticsearch cluster. 我正在尝试为我的Elasticsearch集群将免费的基本许可证安装到奇迹上。 I followed the instructions here https://www.elastic.co/guide/en/marvel/current/license-management.html and ran the following command 我按照这里的说明https://www.elastic.co/guide/en/marvel/current/license-management.html并运行了以下命令

> curl -XPUT 'http://es-master-01:9200/_license' -d @license.json

I didn't use the -u flag as I don't have shield. 我没有使用-u标志,因为我没有屏蔽。 I got the following error 我收到以下错误

{"acknowledged":false,"license_status":"valid","acknowledge":{"message":"This license update requires acknowledgement. To acknowledge the license, please read the following messages and update the license again, this time with the \\"acknowledge=true\\" parameter:","marvel":["basic"]}} {“确认”:false,“ license_status”:“有效”,“确认”:{“消息”:“此许可证更新需要确认。要确认许可证,请阅读以下消息并再次更新许可证,这次\\“ acknowledge = true \\”参数:“,”奇迹“:[”基本“]}}

I also tried 我也试过

curl -XPUT 'http://host:port/_license&acknowledge=true' -d @mylicense.json

as I saw it suggested elsewhere but that didn't work for me either. 正如我在其他地方看到的那样,但这对我也不起作用。

Any help is greatly appreciated. 任何帮助是极大的赞赏。

it's 它的

curl -XPUT 'http://host:port/_license?acknowledge=true' -d @mylicense.json

with a ? ?

not

curl -XPUT 'http://host:port/_license&acknowledge=true' -d @mylicense.json

with a & &

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM