kibana-plugin-development-tutorial
  • Introduction
  • 初识
    • 前言
    • 注意事项
    • kibana开发环境搭建
    • 插件资源
  • 快速入门
    • Hello World
    • 模板工具
    • visTypes插件案例
    • app插件案例
  • 高级进阶
    • UI Exports
    • 与ElasticSearch通信API
    • 自定义配置
    • 前后端通信
    • EUI使用
    • Server端log使用
    • Angularjs架构插件开发
    • React架构插件开发
    • visTypes高级进阶
  • 尾章
    • 开发问题汇总
    • 更多插件列表
Powered by GitBook
On this page
  • 1.系统无法启动
  • 2.Request must contain a kbn-xsrf header
  1. 尾章

开发问题汇总

1.系统无法启动

问题:

报错无法启动:Kibana does not support the current Node.js version v8.11.1. Please use Node.js v8.11.4

解决方案: 原因 是因为kibana 限制使用node version为v8.11.4,更改package.json中8.11.4信息为你本机node版本,如果方便的话,最好保持要求版本一致。

2.Request must contain a kbn-xsrf header

问题:

Request must contain a kbn-xsrf header

解决方案: 在请求的head 中增加:kbn-xsrf: reporting。例如: curl -k -XPOST -H "kbn-xsrf: reporting" http://localhost:5601/...

PreviousvisTypes高级进阶Next更多插件列表

Last updated 6 years ago