@@ -57,11 +57,18 @@ volumes by running `docker-compose down -v`.
57
57
[[get-started-docker-tls]]
58
58
=== Run in Docker with TLS enabled
59
59
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
+ =======
60
66
If you have a {subscriptions}[Gold (or higher) subscription] and the
61
67
{security-features} are enabled, you must configure Transport Layer Security
62
68
(TLS) encryption for the {es} transport layer. While it is possible to use a
63
69
trial license without setting up TLS, we advise securing your stack from the
64
70
start.
71
+ >>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
65
72
66
73
To get an {es} cluster and {kib} up and running in Docker with security enabled,
67
74
you can use Docker Compose:
@@ -142,30 +149,54 @@ docker-compose -f elastic-docker-tls.yml up -d
142
149
----
143
150
144
151
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
+ =======
145
155
You must generate a password for the built-in `kibana_system` user, update the `ELASTICSEARCH_PASSWORD`
156
+ >>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
146
157
in the compose file, and restart to enable {kib} to communicate with the secured cluster.
147
158
148
159
--
149
160
150
161
. 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
+ =======
151
165
including the `kibana_system` user. If you don't use PowerShell on Windows, remove the trailing `\`characters
166
+ >>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
152
167
and join the lines before running this command.
153
168
+
154
169
--
155
170
["source","sh"]
156
171
----
157
172
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
+ =======
158
184
auto --batch --url https://es01:9200"
159
185
----
160
186
161
187
IMPORTANT: Make a note of the generated passwords.
162
188
You must configure the `kibana_system` user password in the compose file to enable {kib} to connect to {es},
189
+ >>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
163
190
and you'll need the password for the `elastic` superuser to
164
191
log in to {kib} and submit requests to {es}.
165
192
--
166
193
167
194
. Set `ELASTICSEARCH_PASSWORD` in the `elastic-docker-tls.yml` compose file to the password
195
+ <<<<<<< HEAD
196
+ generated for the `kibana` user.
197
+ =======
168
198
generated for the `kibana_system` user.
199
+ >>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
169
200
+
170
201
--
171
202
ifeval::["{release-state}"=="unreleased"]
@@ -187,7 +218,11 @@ ifeval::["{release-state}"!="unreleased"]
187
218
SERVERNAME: localhost
188
219
ELASTICSEARCH_URL: https://es01:9200
189
220
ELASTICSEARCH_HOSTS: https://es01:9200
221
+ <<<<<<< HEAD
222
+ ELASTICSEARCH_USERNAME: kibana
223
+ =======
190
224
ELASTICSEARCH_USERNAME: kibana_system
225
+ >>>>>>> e855ae0e9d059941a5ab131ec197b554200184e8
191
226
**ELASTICSEARCH_PASSWORD: CHANGEME**
192
227
ELASTICSEARCH_SSL_CERTIFICATEAUTHORITIES: $CERTS_DIR/ca/ca.crt
193
228
SERVER_SSL_ENABLED: "true"
@@ -253,7 +288,7 @@ Similarly, to load {kib} settings from a file, you overwrite `/usr/share/kibana/
253
288
See the product-specific documentation for information about running a specific Elastic product in Docker:
254
289
255
290
* {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]
257
292
* {auditbeat-ref}/running-on-docker.html[Running {auditbeat} on Docker]
258
293
* {filebeat-ref}/running-on-docker.html[Running {filebeat} on Docker]
259
294
* {heartbeat-ref}/running-on-docker.html[Running {heartbeat} on Docker]
0 commit comments