Skip to content

Commit 1ae2078

Browse files
committed
Revert to e855ae0
1 parent e855ae0 commit 1ae2078

File tree

146 files changed

+7444
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+7444
-8
lines changed

docs/en/getting-started/docker/docker-compose.yml

+27
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ services:
1919
ports:
2020
- 9200:9200
2121
networks:
22+
<<<<<<< HEAD
23+
- elastic
24+
=======
2225
- elastic
26+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
2327

2428
es02:
2529
image: docker.elastic.co/elasticsearch/elasticsearch:{version}
@@ -37,9 +41,17 @@ services:
3741
hard: -1
3842
volumes:
3943
- data02:/usr/share/elasticsearch/data
44+
<<<<<<< HEAD
45+
ports:
46+
- 9201:9201
47+
networks:
48+
- elastic
49+
50+
=======
4051
networks:
4152
- elastic
4253

54+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
4355
es03:
4456
image: docker.elastic.co/elasticsearch/elasticsearch:{version}
4557
container_name: es03
@@ -56,6 +68,11 @@ services:
5668
hard: -1
5769
volumes:
5870
- data03:/usr/share/elasticsearch/data
71+
<<<<<<< HEAD
72+
ports:
73+
- 9202:9202
74+
=======
75+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
5976
networks:
6077
- elastic
6178

@@ -66,17 +83,27 @@ services:
6683
- 5601:5601
6784
environment:
6885
ELASTICSEARCH_URL: http://es01:9200
86+
<<<<<<< HEAD
87+
ELASTICSEARCH_HOSTS: http://es01:9200
88+
networks:
89+
- elastic
90+
=======
6991
ELASTICSEARCH_HOSTS: '["http://es01:9200","http://es02:9200","http://es03:9200"]'
7092
networks:
7193
- elastic
94+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
7295

7396
volumes:
7497
data01:
7598
driver: local
7699
data02:
77100
driver: local
78101
data03:
102+
<<<<<<< HEAD
103+
driver: local
104+
=======
79105
driver: local
106+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
80107

81108
networks:
82109
elastic:

docs/en/getting-started/docker/elastic-docker-tls.yml

+8
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,11 @@ services:
8686
- xpack.security.http.ssl.enabled=true
8787
- xpack.security.http.ssl.key=$CERTS_DIR/es03/es03.key
8888
- xpack.security.http.ssl.certificate_authorities=$CERTS_DIR/ca/ca.crt
89+
<<<<<<< HEAD
90+
- xpack.security.http.ssl.certificate=$CERTS_DIR/es02/es02.crt
91+
=======
8992
- xpack.security.http.ssl.certificate=$CERTS_DIR/es03/es03.crt
93+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
9094
- xpack.security.transport.ssl.enabled=true
9195
- xpack.security.transport.ssl.verification_mode=certificate
9296
- xpack.security.transport.ssl.certificate_authorities=$CERTS_DIR/ca/ca.crt
@@ -111,7 +115,11 @@ services:
111115
SERVERNAME: localhost
112116
ELASTICSEARCH_URL: https://es01:9200
113117
ELASTICSEARCH_HOSTS: https://es01:9200
118+
<<<<<<< HEAD
119+
ELASTICSEARCH_USERNAME: kibana
120+
=======
114121
ELASTICSEARCH_USERNAME: kibana_system
122+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
115123
ELASTICSEARCH_PASSWORD: CHANGEME
116124
ELASTICSEARCH_SSL_CERTIFICATEAUTHORITIES: $CERTS_DIR/ca/ca.crt
117125
SERVER_SSL_ENABLED: "true"

docs/en/getting-started/get-started-docker.asciidoc

+36-1
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,18 @@ volumes by running `docker-compose down -v`.
5757
[[get-started-docker-tls]]
5858
=== Run in Docker with TLS enabled
5959

60+
<<<<<<< HEAD
61+
When security is enabled with a https://www.elastic.co/subscriptions[Gold or Platinum license],
62+
Transport Layer Security (TLS) encryption must be configured for the {es} transport layer.
63+
While it is possible to use a trial license without setting up TLS,
64+
we advise securing your stack from the start.
65+
=======
6066
If you have a {subscriptions}[Gold (or higher) subscription] and the
6167
{security-features} are enabled, you must configure Transport Layer Security
6268
(TLS) encryption for the {es} transport layer. While it is possible to use a
6369
trial license without setting up TLS, we advise securing your stack from the
6470
start.
71+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
6572
6673
To get an {es} cluster and {kib} up and running in Docker with security enabled,
6774
you can use Docker Compose:
@@ -142,30 +149,54 @@ docker-compose -f elastic-docker-tls.yml up -d
142149
----
143150
144151
IMPORTANT: At this point, {kib} cannot connect to the {es} cluster.
152+
<<<<<<< HEAD
153+
You must generate a password for the built-in `kibana` user, update the `ELASTICSEARCH_PASSWORD`
154+
=======
145155
You must generate a password for the built-in `kibana_system` user, update the `ELASTICSEARCH_PASSWORD`
156+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
146157
in the compose file, and restart to enable {kib} to communicate with the secured cluster.
147158

148159
--
149160

150161
. Run the `elasticsearch-setup-passwords` tool to generate passwords for all built-in users,
162+
<<<<<<< HEAD
163+
including the `kibana` user. If you don't use PowerShell on Windows, remove the trailing `\`characters
164+
=======
151165
including the `kibana_system` user. If you don't use PowerShell on Windows, remove the trailing `\`characters
166+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
152167
and join the lines before running this command.
153168
+
154169
--
155170
["source","sh"]
156171
----
157172
docker exec es01 /bin/bash -c "bin/elasticsearch-setup-passwords \
173+
<<<<<<< HEAD
174+
auto --batch \
175+
-Expack.security.http.ssl.certificate=certificates/es01/es01.crt \
176+
-Expack.security.http.ssl.certificate_authorities=certificates/ca/ca.crt \
177+
-Expack.security.http.ssl.key=certificates/es01/es01.key \
178+
--url https://es01:9200"
179+
----
180+
181+
IMPORTANT: Make a note of the generated passwords.
182+
You must configure the `kibana` user password in the compose file to enable {kib} to connect to {es},
183+
=======
158184
auto --batch --url https://es01:9200"
159185
----
160186
161187
IMPORTANT: Make a note of the generated passwords.
162188
You must configure the `kibana_system` user password in the compose file to enable {kib} to connect to {es},
189+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
163190
and you'll need the password for the `elastic` superuser to
164191
log in to {kib} and submit requests to {es}.
165192
--
166193
167194
. Set `ELASTICSEARCH_PASSWORD` in the `elastic-docker-tls.yml` compose file to the password
195+
<<<<<<< HEAD
196+
generated for the `kibana` user.
197+
=======
168198
generated for the `kibana_system` user.
199+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
169200
+
170201
--
171202
ifeval::["{release-state}"=="unreleased"]
@@ -187,7 +218,11 @@ ifeval::["{release-state}"!="unreleased"]
187218
SERVERNAME: localhost
188219
ELASTICSEARCH_URL: https://es01:9200
189220
ELASTICSEARCH_HOSTS: https://es01:9200
221+
<<<<<<< HEAD
222+
ELASTICSEARCH_USERNAME: kibana
223+
=======
190224
ELASTICSEARCH_USERNAME: kibana_system
225+
>>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
191226
**ELASTICSEARCH_PASSWORD: CHANGEME**
192227
ELASTICSEARCH_SSL_CERTIFICATEAUTHORITIES: $CERTS_DIR/ca/ca.crt
193228
SERVER_SSL_ENABLED: "true"
@@ -253,7 +288,7 @@ Similarly, to load {kib} settings from a file, you overwrite `/usr/share/kibana/
253288
See the product-specific documentation for information about running a specific Elastic product in Docker:
254289
255290
* {ref}/docker.html[Install {es} with Docker]
256-
* {apm-server-ref}/running-on-docker.html[Running APM Server on Docker]
291+
* {apm-server-ref-70}/running-on-docker.html[Running APM Server on Docker]
257292
* {auditbeat-ref}/running-on-docker.html[Running {auditbeat} on Docker]
258293
* {filebeat-ref}/running-on-docker.html[Running {filebeat} on Docker]
259294
* {heartbeat-ref}/running-on-docker.html[Running {heartbeat} on Docker]

0 commit comments

Comments
 (0)