mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[kbn-es] Use basic license as default (#18577)
Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
parent
3e9cc0f8aa
commit
0ecab8c853
3 changed files with 6 additions and 2 deletions
|
@ -174,7 +174,7 @@ Start elasticsearch from a nightly snapshot.
|
|||
yarn es snapshot
|
||||
```
|
||||
|
||||
This will run Elasticsearch with a `trial` license and bootstraped with the user `elastic` and password `changeme`. Additional options are available, pass `--help` for more information.
|
||||
This will run Elasticsearch with a `basic` license. Additional options are available, pass `--help` for more information.
|
||||
|
||||
> You'll need to have a `java` binary in `PATH` or set `JAVA_HOME`.
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ const kbnEs = require('@kbn/es');
|
|||
|
||||
kbnEs
|
||||
.run({
|
||||
license: 'trial',
|
||||
license: 'basic',
|
||||
password: 'changeme',
|
||||
version: pkg.version,
|
||||
'source-path': path.resolve(__dirname, '../../elasticsearch'),
|
||||
|
|
|
@ -8,6 +8,10 @@ from files licensed under the Apache License 2.0.
|
|||
|
||||
By default, Kibana will run with X-Pack installed as mentioned in the [contributing guide](../CONTRIBUTING.md).
|
||||
|
||||
Elasticsearch will run with a basic license. To run with a trial license, including security, you can specifying that with the `yarn es` command.
|
||||
|
||||
Example: `yarn es snapshot --license trial --password changeme`
|
||||
|
||||
# Testing
|
||||
|
||||
## Running unit tests_bundle
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue