Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
docker-elk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
段孔乐
docker-elk
Commits
fd704c4b
Unverified
Commit
fd704c4b
authored
Sep 17, 2020
by
Antoine Cotten
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document how to reset a password
parent
d2ff4a5f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
README.md
README.md
+15
-0
No files found.
README.md
View file @
fd704c4b
...
...
@@ -45,6 +45,7 @@ Other available stack variants:
*
[
How to configure Logstash
](
#how-to-configure-logstash
)
*
[
How to disable paid features
](
#how-to-disable-paid-features
)
*
[
How to scale out the Elasticsearch cluster
](
#how-to-scale-out-the-elasticsearch-cluster
)
*
[
How to reset a password programmatically
](
#how-to-reset-a-password-programmatically
)
4.
[
Extensibility
](
#extensibility
)
*
[
How to add plugins
](
#how-to-add-plugins
)
*
[
How to enable the provided extensions
](
#how-to-enable-the-provided-extensions
)
...
...
@@ -296,6 +297,20 @@ settings][trial-license]).
Follow the instructions from the Wiki:
[
Scaling out Elasticsearch
](
https://github.com/deviantony/docker-elk/wiki/Elasticsearch-cluster
)
### How to reset a password programmatically
If for any reason your are unable to use Kibana to change the password of your users (including
[
built-in
users]
[
builtin-users
]
), you can use the Elasticsearch API instead and achieve the same result.
In the example below, we reset the password of the
`elastic`
user (notice "/user/elastic" in the URL):
```
console
$
curl
-XPOST
-D-
'http://localhost:9200/_security/user/elastic/_password'
\
-H
'Content-Type: application/json'
\
-u
elastic:<your current elastic password>
\
-d
'{"password" : "<your new password>"}'
```
## Extensibility
### How to add plugins
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment