ElasticSearch:current license is non-compliant for [security]

这篇具有很好参考价值的文章主要介绍了ElasticSearch:current license is non-compliant for [security]。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

注: 部分概念介绍来源于网络

GET /_cluster/health

{
  "error": {
    "root_cause": [
      {
        "type": "security_exception",
        "reason": "current license is non-compliant for [security]",
        "license.expired.feature": "security"
      }
    ],
    "type": "security_exception",
    "reason": "current license is non-compliant for [security]",
    "license.expired.feature": "security"
  },
  "status": 403
}

ES的X-pack许可证是提供免费一个月的试用,但是到期之后,就会报这个错误,需要去es官网注册个账号,然后申请一个新的license,但是注册license 页面上面写着,6.3版本以后,Elastic Stack的默认发行版中包含基本(免费)层功能。无需许可证注册,也就是说,我现在用的6.7.2版本并不需要更新,只需要降级到基础版本即可

POST /_license/start_basic?acknowledge=true
curl -XPOST "http://127.0.0.1:9200/_license/start_basic?acknowledge=true"文章来源地址https://www.toymoban.com/news/detail-520137.html

到了这里,关于ElasticSearch:current license is non-compliant for [security]的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 多种方法解决There is no tracking information for the current branch的错误

    今天发布某版本的项目,准备创建个 v0point1 分支,后期如果修改该版本,直接在该分支上修改即可。 首先,使用 git branch v0point1 命令,创建本地分支 v0point1 ,如下图所示: 其次,使用 git checkout v0point1 命令,切换到 v0point1 分支,如下图所示: 当然,我们也可以使用 git ch

    2024年02月09日
    浏览(44)
  • Git出现There is no tracking information for the current branch提示的解决办法

    Git出现There is no tracking information for the current branch提示的解决办法 使用命令新建分支并切换到该分支 从远程获取代码 报错 There is no tracking information for the current branch. Please specify which branch you want to merge with. 意思是没有当前分支的追踪信息 解决: 以上两行命令可简写为 即将本

    2024年02月12日
    浏览(42)
  • git 出现 There is no tracking information for the current branch. Please specify which branch you want

    问题分析:当前pull对象没有远程分支的跟踪信息,简单地来说就是你创建的这个分支没有和远程仓库中的其他分支或者master建立联系,所以导致当前分支无法进行pull操作; 解决方案: git branch --set-upstream-to=origin/remote_name local_name 注解: remote_name : 远程分支名 // 这里是你创

    2024年02月05日
    浏览(42)
  • Flink 并发或短时间频繁修改 Doris 同一张表, 报错: There is an update operation in progress for the current table.

    2022/12/06 菜鸟记录. 场景1 : Flink任务1: 监听Kafka TopicA 修改表1某条数据的a字段.             Flink任务2: 监听Kafka TopicB 修改表1某条数据的b字段.             当后端人员同时向TopicA和TopicB发送数据, 两个任务对 Doris 的 update 并发执行, 发生报错. 场景2 : Flink 自定义 Sink, 用

    2023年04月21日
    浏览(33)
  • 解决copilot报错:Your current Copilot license doesn‘t support proxy connections with custom certificates

    如题,github copilot在安装插件并且成功登录github的情况下尝试使用时报: 查阅了官方trouble shooting文档发现并没有针对这一报错的解决方法,网上的各种问题也没有一样的情况,并且解决措施都没有效果。 本人在尝试https://blog.csdn.net/tbicf/article/details/131548228这篇文章的解决方法

    2024年01月22日
    浏览(60)
  • AD报错:Your license is already used on computer解决办法

            相同的license用在了同一个网络下的两台电脑的AD软件上了;         1.打开AD的设置----system----Account Management----no, i wish to remain disconnected from Altium          2. 打开AD的设置----system----Network activity----取消全部勾选         3.  打开AD的设置----system----installation 

    2024年02月06日
    浏览(155)
  • elastic安装报错:max file descriptors [4096] for elasticsearch process is too low, increase to at least

    一、现象 因为 es 不允许使用root用户安装,在使用新建的es用户安装的时候报错如下, max file descriptors [4096] for elasticsearch process is too low, increase to at least [65535] 二、解决办法 将当前用户的软硬限制调大。找到文件 /etc/security/limits.conf ,编辑,在文件的最后追加如下配置:  

    2024年02月11日
    浏览(31)
  • ‘compileDebugJavaWithJavac‘ task (current target is 1.8) and ‘compileDebugKotlin‘ task (current targ

    \\\'compileDebugJavaWithJavac\\\' task (current target is 1.8) and \\\'compileDebugKotlin\\\' task (current target is 17) jvm target compatibility should be set to the same Java version. 出现这种情况是因为你电脑安装的jdk版本是1.8,而你Android studio设置为17,这就要求你在电脑端升级安装17版本的jdk,否则就编译不了。 就是下

    2024年02月22日
    浏览(44)
  • 【解决】Non-convex MeshCollider with non-kinematic Rigidbody is no longer supported since Unity 5...

    开发平台:Unity 2021.3.7f1c1   Non-convex MeshCollider with non-kinematic Rigidbody is no longer supported since Unity 5. If you want to use a non-convex mesh either make the Rigidbody kinematic or remove the Rigidbody component. Scene hierarchy path “XXXX”, Mesh asset path “XXX/XXX/XX” Mesh name “XXX” 翻译 :自 Unity 5 起,不再支持

    2024年02月04日
    浏览(69)
  • 报错:Another app is currently holding yum lock

    一、问题原因: 在运行yum 相关命令“yum remove”的时候,不知道怎么回事无法进行下载安装,报出 Another app is currently holding the yum lock; waiting for it to exit... 的错误提示。 二、环境: centos7 Linux 三、解决问题: 1、分析:报错显示/var/run/yum.pid 已被锁定,pid为3347。  Another app

    2024年02月15日
    浏览(79)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包