Skip to content

Commit

Permalink
Update docs on how to run ingest manager (#62112)
Browse files Browse the repository at this point in the history
This adds the --no-base-path flag and also enables endpoint. I think we should get used to always running endpoint too.

This also adds the bootstrap step as if this is missing, things often break.
  • Loading branch information
ruflin authored Apr 1, 2020
1 parent 7975765 commit 9628aef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion x-pack/plugins/ingest_manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,17 @@ See the Kibana docs for [how to set up your dev environment](https://github.com/


One common development workflow is:
- Bootstrap Kibana
```
yarn kbn bootstrap
```
- Start Elasticsearch in one shell
```
yarn es snapshot -E xpack.security.authc.api_key.enabled=true
```
- Start Kibana in another shell
```
yarn start --xpack.ingestManager.enabled=true --xpack.ingestManager.epm.enabled=true --xpack.ingestManager.fleet.enabled=true
yarn start --xpack.ingestManager.enabled=true --xpack.ingestManager.epm.enabled=true --xpack.ingestManager.fleet.enabled=true --no-base-path --xpack.endpoint.enabled=true
```
This plugin follows the `common`, `server`, `public` structure from the [Architecture Style Guide
Expand Down

0 comments on commit 9628aef

Please sign in to comment.