web-dev-qa-db-ja.com

Kibanaのセンスプラグインをインストールできません

Elasticsearch/kibanaのセンスプラグインをインストールしようとしています。 Kibanaは正常にインストールされましたが、 の指示に従うと、https://www.elastic.co/guide/en/sense/current/installing.html 私はタイプする : ./kibana plugin --install elastic/sense、kibanaフォルダー内のbinディレクトリで、次のようになります。

 ERROR  unknown command plugin

  Usage: bin/kibana [command=serve] [options]

  Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch.

  Commands:
    serve  [options]  Run the kibana server
    help  <command>   Get the help for a specific command

  "serve" Options:

    -h, --help                 output usage information
    -e, --elasticsearch <uri>  Elasticsearch instance
    -c, --config <path>        Path to the config file, can be changed with the CONFIG_PATH environment variable as well. Use mulitple --config args to include multiple config files.
    -p, --port <port>          The port to bind to
    -q, --quiet                Prevent all logging except errors
    -Q, --silent               Prevent all logging
    --verbose                  Turns on verbose logging
    -H, --Host <Host>          The Host to bind to
    -l, --log-file <path>      The file to log to
    --plugin-dir <path>        A path to scan for plugins, this can be specified multiple times to specify multiple directories
    --plugin-path <path>       A path to a plugin which should be included by the server, this can be specified multiple times to specify multiple paths
    --plugins <path>           an alias for --plugin-dir

このエラーが発生する理由がわかりません。センスプラグインをインストールする方法を教えてください。

37
David Geismar

wuxiwei が述べたように、SenseはConsoleに名前が変更され、Kibana 5. *ですでに利用可能です。 Kibanaで、Dev Toolsをクリックするだけです:

enter image description here

55
Montenegrodr

SenseはConsoleに名前が変更され、Kibana 5に組み込まれています。DevToolsアプリケーションをクリックすると、Senseを見つけることができます。

21
wuxiwei

センスは、Kibana 5.0のコンソールとして含まれるようになりました。次のリンクを表示できます:https://github.com/elastic/sense/blob/master/README.md

現在センスはコンソールとして含まれているため、センスを個別にインストールする必要はありません。
elasticsearchとkibanaを実行する必要があります。コンソールは次の場所にあります。
http://localhost:5601/app/kibana#/dev_tools/console

4
Shivangi Gupta

マニュアルのダウンロードKibanaのbin/pluginスクリプトには、Senseをダウンロードしてインストールするための直接インターネットアクセスが必要です。サーバーにインターネットアクセスがない場合は、次のリンクからSense tarファイルをダウンロードできます。 https://download.elasticsearch.org/elastic/sense/sense-latest.tar.gz

ダウンロードしたら、次のコマンドを使用してセンスをインストールできます。

$ bin/kibana plugin -i sense -u file:///PATH_TO_SENSE_TAR_FILE
0
Phonix

私はkibana 6.5.4を使用していますが、センスプラグインを使用する代わりにDev Toolsを使用しています。以下を入力できます:http://127.0.0.1:5601/app/kibanakibanaサービスの新しいバージョンを開始した後そして、左側にDev Toolsがあります。

0
Z.LI

名前はConsoleに変更されました。 Kibanaを起動した後、 http:// localhost:5601/app/kibana#/ dev_tools/console から直接Consoleを簡単に参照できます。

0