Skip to content
This repository was archived by the owner on Aug 16, 2022. It is now read-only.

Commit 2836db5

Browse files
committed
Refactors Security section into three sections
1 parent dbcfe3a commit 2836db5

36 files changed

+242
-104
lines changed

docs/alerting/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: default
33
title: Alerting
4-
nav_order: 6
4+
nav_order: 8
55
has_children: true
66
---
77

docs/elasticsearch/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ PUT /_cluster/settings
6363

6464
## Configuration file
6565

66-
You can find `elasticsearch.yml` in `/usr/share/elasticsearch/config/elasticsearch.yml` (Docker) or `/etc/elasticsearch/elasticsearch.yml` (RPM) on each node. Out of the box, it contains a number of default settings for the Security plugin that you should modify before using Open Distro for Elasticsearch for a production workload. To learn more, see [Security](../../security/).
66+
You can find `elasticsearch.yml` in `/usr/share/elasticsearch/config/elasticsearch.yml` (Docker) or `/etc/elasticsearch/elasticsearch.yml` (RPM) on each node. Out of the box, it contains a number of default settings for the Security plugin that you should modify before using Open Distro for Elasticsearch for a production workload. To learn more, see [Security](../../security-configuration/).
6767

6868

6969
### Sample configuration file

docs/install/deb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ These steps assume you're using Ubuntu 18.04.
5959
curl -XGET https://localhost:9200/_cat/plugins?v -u admin:admin --insecure
6060
```
6161

62-
1. For instructions on installing and running Kibana, see [Kibana](../../kibana).
62+
1. For instructions on installing and running Kibana, see [Kibana](../../kibana/).
6363

6464
1. To check the status of the service:
6565

docs/install/docker-security.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ networks:
8888
odfe-net:
8989
```
9090
91-
Then make your changes to `elasticsearch.yml`. For a full list of settings, see [Security](../../security). This example adds (extremely) verbose audit logging:
91+
Then make your changes to `elasticsearch.yml`. For a full list of settings, see [Security](../../security-configuration/). This example adds (extremely) verbose audit logging:
9292

9393
```yml
9494
opendistro_security.ssl.transport.pemcert_filepath: esnode.pem
@@ -121,7 +121,7 @@ If you encounter any `File /usr/share/elasticsearch/config/elasticsearch.yml has
121121

122122
## Change passwords for read-only users
123123

124-
After the cluster starts, change the passwords for the [read-only user accounts](../../security/api/#read-only-and-hidden-resources): `admin` and `kibanaserver`.
124+
After the cluster starts, change the passwords for the [read-only user accounts](../../security-configuration/api/#read-only-and-hidden-resources): `admin` and `kibanaserver`.
125125

126126
- The `admin` user has full privileges on the cluster.
127127
- `kibanaserver` user has certain permissions to the `.kibana` index that let it perform management tasks like setting index patterns and retrieving visualizations. This user, or one just like it, is required for Kibana to work properly with the Security plugin. We recommend just using `kibanaserver`.
@@ -207,4 +207,4 @@ curl -XGET https://localhost:9200 -u admin:newpassword -k
207207

208208
Then you can open Kibana at [http://localhost:5601](http://localhost:5601), sign in, and perform additional user management in the **Security** panel.
209209

210-
You can use this same override process to specify new [authentication settings](../../security/configuration) in `/usr/share/elasticsearch/plugins/opendistro_security/securityconfig/config.yml`.
210+
You can use this same override process to specify new [authentication settings](../../security-configuration/configuration/) in `/usr/share/elasticsearch/plugins/opendistro_security/securityconfig/config.yml`.

docs/install/docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ services:
171171
- ./custom-kibana.yml:/usr/share/kibana/config/kibana.yml
172172
```
173173

174-
You can use this same method to [pass your own certificates](../docker-security/) for use with the [Security](../../security/) plugin.
174+
You can use this same method to [pass your own certificates](../docker-security/) for use with the [Security](../../security-configuration/) plugin.
175175

176176

177177
## Bash access to containers
@@ -218,7 +218,7 @@ docker build --tag=odfe-custom-plugin .
218218
docker run -p 9200:9200 -p 9600:9600 -v /usr/share/elasticsearch/data odfe-custom-plugin
219219
```
220220

221-
You can also use a `Dockerfile` to pass your own certificates for use with the [Security](../../security/) plugin, similar to the `-v` argument in [Configure Elasticsearch](#configure-elasticsearch):
221+
You can also use a `Dockerfile` to pass your own certificates for use with the [Security](../../security-configuration/) plugin, similar to the `-v` argument in [Configure Elasticsearch](#configure-elasticsearch):
222222

223223
```
224224
FROM amazon/opendistro-for-elasticsearch:0.9.0

docs/kibana/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ has_toc: false
88

99
# Kibana
1010

11-
Kibana is the default visualization tool for data in Elasticsearch. It also serves as a user interface for the Open Distro for Elasticsearch [Security plugin](../security/).
11+
Kibana is the default visualization tool for data in Elasticsearch. It also serves as a user interface for the Open Distro for Elasticsearch [Security plugin](../security-configuration/).
1212

1313

1414
## Run Kibana using Docker

docs/pa/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: default
33
title: Performance Analyzer
4-
nav_order: 8
4+
nav_order: 10
55
has_children: true
66
---
77

docs/security/cross-cluster-search.md renamed to docs/security-access-control/cross-cluster-search.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: default
33
title: Cross-Cluster Search
4-
parent: Security
5-
nav_order: 30
4+
parent: Security - Access Control
5+
nav_order: 60
66
---
77

88
# Cross-cluster search

docs/security/default-action-groups.md renamed to docs/security-access-control/default-action-groups.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: default
33
title: Default Action Groups
4-
parent: Security
5-
nav_order: 20
4+
parent: Security - Access Control
5+
nav_order: 71
66
---
77

88
# Default action groups

docs/security/document-level-security.md renamed to docs/security-access-control/document-level-security.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: default
33
title: Document-Level Security
4-
parent: Security
5-
nav_order: 23
4+
parent: Security - Access Control
5+
nav_order: 2
66
---
77

88
# Document-level security

0 commit comments

Comments
 (0)