docker.asciidoc 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775
  1. [[docker]]
  2. === Install {es} with Docker
  3. Docker images for {es} are available from the Elastic Docker registry. A list of
  4. all published Docker images and tags is available at
  5. https://www.docker.elastic.co[www.docker.elastic.co]. The source code is in
  6. https://github.com/elastic/elasticsearch/blob/{branch}/distribution/docker[GitHub].
  7. include::license.asciidoc[]
  8. [TIP]
  9. ====
  10. If you just want to test {es} in local development, refer to <<run-elasticsearch-locally>>.
  11. Please note that this setup is not suitable for production environments.
  12. ====
  13. [[docker-cli-run-dev-mode]]
  14. ==== Run {es} in Docker
  15. Use Docker commands to start a single-node {es} cluster for development or
  16. testing. You can then run additional Docker commands to add nodes to the test
  17. cluster or run {kib}.
  18. TIP: This setup doesn't run multiple {es} nodes or {kib} by default. To create a
  19. multi-node cluster with {kib}, use Docker Compose instead. See
  20. <<docker-compose-file>>.
  21. ===== Start a single-node cluster
  22. . Install Docker. Visit https://docs.docker.com/get-docker/[Get Docker] to
  23. install Docker for your environment.
  24. +
  25. If using Docker Desktop, make sure to allocate at least 4GB of memory. You can
  26. adjust memory usage in Docker Desktop by going to **Settings > Resources**.
  27. . Create a new docker network.
  28. +
  29. [source,sh]
  30. ----
  31. docker network create elastic
  32. ----
  33. . Pull the {es} Docker image.
  34. +
  35. --
  36. ifeval::["{release-state}"=="unreleased"]
  37. WARNING: Version {version} has not yet been released.
  38. No Docker image is currently available for {es} {version}.
  39. endif::[]
  40. [source,sh,subs="attributes"]
  41. ----
  42. docker pull {docker-image}
  43. ----
  44. --
  45. . Optional: Install
  46. https://docs.sigstore.dev/system_config/installation/[Cosign] for your
  47. environment. Then use Cosign to verify the {es} image's signature.
  48. +
  49. [[docker-verify-signature]]
  50. [source,sh,subs="attributes"]
  51. ----
  52. wget https://artifacts.elastic.co/cosign.pub
  53. cosign verify --key cosign.pub {docker-image}
  54. ----
  55. +
  56. The `cosign` command prints the check results and the signature payload in JSON format:
  57. +
  58. [source,sh,subs="attributes"]
  59. ----
  60. Verification for {docker-image} --
  61. The following checks were performed on each of these signatures:
  62. - The cosign claims were validated
  63. - Existence of the claims in the transparency log was verified offline
  64. - The signatures were verified against the specified public key
  65. ----
  66. . Start an {es} container.
  67. +
  68. [source,sh,subs="attributes"]
  69. ----
  70. docker run --name es01 --net elastic -p 9200:9200 -it -m 1GB {docker-image}
  71. ----
  72. +
  73. TIP: Use the `-m` flag to set a memory limit for the container. This removes the
  74. need to <<docker-set-heap-size,manually set the JVM size>>.
  75. +
  76. {ml-cap} features such as <<semantic-search-elser, semantic search with ELSER>>
  77. require a larger container with more than 1GB of memory.
  78. If you intend to use the {ml} capabilities, then start the container with this command:
  79. +
  80. [source,sh,subs="attributes"]
  81. ----
  82. docker run --name es01 --net elastic -p 9200:9200 -it -m 6GB -e "xpack.ml.use_auto_machine_memory_percent=true" {docker-image}
  83. ----
  84. The command prints the `elastic` user password and an enrollment token for {kib}.
  85. . Copy the generated `elastic` password and enrollment token. These credentials
  86. are only shown when you start {es} for the first time. You can regenerate the
  87. credentials using the following commands.
  88. +
  89. [source,sh,subs="attributes"]
  90. ----
  91. docker exec -it es01 /usr/share/elasticsearch/bin/elasticsearch-reset-password -u elastic
  92. docker exec -it es01 /usr/share/elasticsearch/bin/elasticsearch-create-enrollment-token -s kibana
  93. ----
  94. +
  95. We recommend storing the `elastic` password as an environment variable in your shell. Example:
  96. +
  97. [source,sh]
  98. ----
  99. export ELASTIC_PASSWORD="your_password"
  100. ----
  101. . Copy the `http_ca.crt` SSL certificate from the container to your local machine.
  102. +
  103. [source,sh]
  104. ----
  105. docker cp es01:/usr/share/elasticsearch/config/certs/http_ca.crt .
  106. ----
  107. . Make a REST API call to {es} to ensure the {es} container is running.
  108. +
  109. [source,sh]
  110. ----
  111. curl --cacert http_ca.crt -u elastic:$ELASTIC_PASSWORD https://localhost:9200
  112. ----
  113. // NOTCONSOLE
  114. ===== Add more nodes
  115. . Use an existing node to generate a enrollment token for the new node.
  116. +
  117. [source,sh]
  118. ----
  119. docker exec -it es01 /usr/share/elasticsearch/bin/elasticsearch-create-enrollment-token -s node
  120. ----
  121. +
  122. The enrollment token is valid for 30 minutes.
  123. . Start a new {es} container. Include the enrollment token as an environment variable.
  124. +
  125. [source,sh,subs="attributes"]
  126. ----
  127. docker run -e ENROLLMENT_TOKEN="<token>" --name es02 --net elastic -it -m 1GB {docker-image}
  128. ----
  129. . Call the <<cat-nodes,cat nodes API>> to verify the node was added to the cluster.
  130. +
  131. [source,sh]
  132. ----
  133. curl --cacert http_ca.crt -u elastic:$ELASTIC_PASSWORD https://localhost:9200/_cat/nodes
  134. ----
  135. // NOTCONSOLE
  136. [[run-kibana-docker]]
  137. ===== Run {kib}
  138. . Pull the {kib} Docker image.
  139. +
  140. --
  141. ifeval::["{release-state}"=="unreleased"]
  142. WARNING: Version {version} has not yet been released.
  143. No Docker image is currently available for {kib} {version}.
  144. endif::[]
  145. [source,sh,subs="attributes"]
  146. ----
  147. docker pull {kib-docker-image}
  148. ----
  149. --
  150. . Optional: Verify the {kib} image's signature.
  151. +
  152. [source,sh,subs="attributes"]
  153. ----
  154. wget https://artifacts.elastic.co/cosign.pub
  155. cosign verify --key cosign.pub {kib-docker-image}
  156. ----
  157. . Start a {kib} container.
  158. +
  159. [source,sh,subs="attributes"]
  160. ----
  161. docker run --name kib01 --net elastic -p 5601:5601 {kib-docker-image}
  162. ----
  163. . When {kib} starts, it outputs a unique generated link to the terminal. To
  164. access {kib}, open this link in a web browser.
  165. . In your browser, enter the enrollment token that was generated when you started {es}.
  166. +
  167. To regenerate the token, run:
  168. +
  169. [source,sh]
  170. ----
  171. docker exec -it es01 /usr/share/elasticsearch/bin/elasticsearch-create-enrollment-token -s kibana
  172. ----
  173. . Log in to {kib} as the `elastic` user with the password that was generated
  174. when you started {es}.
  175. +
  176. To regenerate the password, run:
  177. +
  178. [source,sh]
  179. ----
  180. docker exec -it es01 /usr/share/elasticsearch/bin/elasticsearch-reset-password -u elastic
  181. ----
  182. [[remove-containers-docker]]
  183. ===== Remove containers
  184. To remove the containers and their network, run:
  185. [source,sh,subs="attributes"]
  186. ----
  187. # Remove the Elastic network
  188. docker network rm elastic
  189. # Remove {es} containers
  190. docker rm es01
  191. docker rm es02
  192. # Remove the {kib} container
  193. docker rm kib01
  194. ----
  195. ===== Next steps
  196. You now have a test {es} environment set up. Before you start
  197. serious development or go into production with {es}, review the
  198. <<docker-prod-prerequisites,requirements and recommendations>> to apply when running {es} in Docker in production.
  199. [[docker-compose-file]]
  200. ==== Start a multi-node cluster with Docker Compose
  201. Use Docker Compose to start a three-node {es} cluster with {kib}. Docker Compose
  202. lets you start multiple containers with a single command.
  203. ===== Configure and start the cluster
  204. . Install Docker Compose. Visit the
  205. https://docs.docker.com/compose/install/[Docker Compose docs] to install Docker
  206. Compose for your environment.
  207. +
  208. If you're using Docker Desktop, Docker Compose is installed automatically. Make
  209. sure to allocate at least 4GB of memory to Docker Desktop. You can adjust memory
  210. usage in Docker Desktop by going to **Settings > Resources**.
  211. . Create or navigate to an empty directory for the project.
  212. . Download and save the following files in the project directory:
  213. +
  214. - https://github.com/elastic/elasticsearch/blob/{branch}/docs/reference/setup/install/docker/.env[`.env`]
  215. - https://github.com/elastic/elasticsearch/blob/{branch}/docs/reference/setup/install/docker/docker-compose.yml[`docker-compose.yml`]
  216. . In the `.env` file, specify a password for the `ELASTIC_PASSWORD` and
  217. `KIBANA_PASSWORD` variables.
  218. +
  219. The passwords must be alphanumeric and can't contain special characters, such as
  220. `!` or `@`. The bash script included in the `docker-compose.yml` file only
  221. works with alphanumeric characters. Example:
  222. +
  223. [source,txt]
  224. ----
  225. # Password for the 'elastic' user (at least 6 characters)
  226. ELASTIC_PASSWORD=changeme
  227. # Password for the 'kibana_system' user (at least 6 characters)
  228. KIBANA_PASSWORD=changeme
  229. ...
  230. ----
  231. . In the `.env` file, set `STACK_VERSION` to the current {stack} version.
  232. +
  233. [source,txt,subs="attributes"]
  234. ----
  235. ...
  236. # Version of Elastic products
  237. STACK_VERSION={version}
  238. ...
  239. ----
  240. . By default, the Docker Compose configuration exposes port `9200` on all network interfaces.
  241. +
  242. To avoid exposing port `9200` to external hosts, set `ES_PORT` to `127.0.0.1:9200`
  243. in the `.env` file. This ensures {es} is only accessible from the host
  244. machine.
  245. +
  246. [source,txt]
  247. ----
  248. ...
  249. # Port to expose Elasticsearch HTTP API to the host
  250. #ES_PORT=9200
  251. ES_PORT=127.0.0.1:9200
  252. ...
  253. ----
  254. . To start the cluster, run the following command from the project directory.
  255. +
  256. [source,sh]
  257. ----
  258. docker-compose up -d
  259. ----
  260. . After the cluster has started, open http://localhost:5601 in a web browser to
  261. access {kib}.
  262. . Log in to {kib} as the `elastic` user using the `ELASTIC_PASSWORD` you set
  263. earlier.
  264. ===== Stop and remove the cluster
  265. To stop the cluster, run `docker-compose down`. The data in the Docker volumes
  266. is preserved and loaded when you restart the cluster with `docker-compose up`.
  267. [source,sh]
  268. ----
  269. docker-compose down
  270. ----
  271. To delete the network, containers, and volumes when you stop the cluster,
  272. specify the `-v` option:
  273. [source,sh]
  274. ----
  275. docker-compose down -v
  276. ----
  277. ===== Next steps
  278. You now have a test {es} environment set up. Before you start
  279. serious development or go into production with {es}, review the
  280. <<docker-prod-prerequisites,requirements and recommendations>> to apply when running {es} in Docker in production.
  281. [[docker-prod-prerequisites]]
  282. ==== Using the Docker images in production
  283. The following requirements and recommendations apply when running {es} in Docker in production.
  284. ===== Set `vm.max_map_count` to at least `262144`
  285. The `vm.max_map_count` kernel setting must be set to at least `262144` for production use.
  286. How you set `vm.max_map_count` depends on your platform.
  287. ====== Linux
  288. To view the current value for the `vm.max_map_count` setting, run:
  289. [source,sh]
  290. --------------------------------------------
  291. grep vm.max_map_count /etc/sysctl.conf
  292. vm.max_map_count=262144
  293. --------------------------------------------
  294. To apply the setting on a live system, run:
  295. [source,sh]
  296. --------------------------------------------
  297. sysctl -w vm.max_map_count=262144
  298. --------------------------------------------
  299. To permanently change the value for the `vm.max_map_count` setting, update the
  300. value in `/etc/sysctl.conf`.
  301. ====== macOS with https://docs.docker.com/docker-for-mac[Docker for Mac]
  302. The `vm.max_map_count` setting must be set within the xhyve virtual machine:
  303. . From the command line, run:
  304. +
  305. [source,sh]
  306. --------------------------------------------
  307. screen ~/Library/Containers/com.docker.docker/Data/vms/0/tty
  308. --------------------------------------------
  309. . Press enter and use `sysctl` to configure `vm.max_map_count`:
  310. +
  311. [source,sh]
  312. --------------------------------------------
  313. sysctl -w vm.max_map_count=262144
  314. --------------------------------------------
  315. . To exit the `screen` session, type `Ctrl a d`.
  316. ====== Windows and macOS with https://www.docker.com/products/docker-desktop[Docker Desktop]
  317. The `vm.max_map_count` setting must be set via docker-machine:
  318. [source,sh]
  319. --------------------------------------------
  320. docker-machine ssh
  321. sudo sysctl -w vm.max_map_count=262144
  322. --------------------------------------------
  323. ====== Windows with https://docs.docker.com/docker-for-windows/wsl[Docker Desktop WSL 2 backend]
  324. The `vm.max_map_count` setting must be set in the "docker-desktop" WSL instance before the
  325. {es} container will properly start. There are several ways to do this, depending
  326. on your version of Windows and your version of WSL.
  327. If you are on Windows 10 before version 22H2, or if you are on Windows 10 version 22H2 using the
  328. built-in version of WSL, you must either manually set it every time you restart Docker before starting
  329. your {es} container, or (if you do not wish to do so on every restart) you must globally set
  330. every WSL2 instance to have the `vm.max_map_count` changed. This is because these versions of WSL
  331. do not properly process the /etc/sysctl.conf file.
  332. To manually set it every time you reboot, you must run the following commands in a command prompt
  333. or PowerShell window every time you restart Docker:
  334. [source,sh]
  335. --------------------------------------------
  336. wsl -d docker-desktop -u root
  337. sysctl -w vm.max_map_count=262144
  338. --------------------------------------------
  339. If you are on these versions of WSL and you do not want to have to run those commands every
  340. time you restart Docker, you can globally change every WSL distribution with this setting
  341. by modifying your %USERPROFILE%\.wslconfig as follows:
  342. [source,text]
  343. --------------------------------------------
  344. [wsl2]
  345. kernelCommandLine = "sysctl.vm.max_map_count=262144"
  346. --------------------------------------------
  347. This will cause all WSL2 VMs to have that setting assigned when they start.
  348. If you are on Windows 11, or Windows 10 version 22H2 and have installed the Microsoft Store
  349. version of WSL, you can modify the /etc/sysctl.conf within the "docker-desktop" WSL
  350. distribution, perhaps with commands like this:
  351. [source,sh]
  352. --------------------------------------------
  353. wsl -d docker-desktop -u root
  354. vi /etc/sysctl.conf
  355. --------------------------------------------
  356. and appending a line which reads:
  357. [source,text]
  358. --------------------------------------------
  359. vm.max_map_count = 262144
  360. --------------------------------------------
  361. ===== Configuration files must be readable by the `elasticsearch` user
  362. By default, {es} runs inside the container as user `elasticsearch` using
  363. uid:gid `1000:0`.
  364. IMPORTANT: One exception is https://docs.openshift.com/container-platform/3.6/creating_images/guidelines.html#openshift-specific-guidelines[Openshift],
  365. which runs containers using an arbitrarily assigned user ID.
  366. Openshift presents persistent volumes with the gid set to `0`, which works without any adjustments.
  367. If you are bind-mounting a local directory or file, it must be readable by the `elasticsearch` user.
  368. In addition, this user must have write access to the <<path-settings,config, data and log dirs>>
  369. ({es} needs write access to the `config` directory so that it can generate a keystore).
  370. A good strategy is to grant group access to gid `0` for the local directory.
  371. For example, to prepare a local directory for storing data through a bind-mount:
  372. [source,sh]
  373. --------------------------------------------
  374. mkdir esdatadir
  375. chmod g+rwx esdatadir
  376. chgrp 0 esdatadir
  377. --------------------------------------------
  378. You can also run an {es} container using both a custom UID and GID. You
  379. must ensure that file permissions will not prevent {es} from executing. You
  380. can use one of two options:
  381. * Bind-mount the `config`, `data` and `logs`
  382. directories. If you intend to install plugins and prefer not to
  383. <<_c_customized_image, create a custom Docker image>>, you must also
  384. bind-mount the `plugins` directory.
  385. * Pass the `--group-add 0` command line option to `docker run`. This
  386. ensures that the user under which {es} is running is also a member of the
  387. `root` (GID 0) group inside the container.
  388. ===== Increase ulimits for nofile and nproc
  389. Increased ulimits for <<setting-system-settings,nofile>> and <<max-number-threads-check,nproc>>
  390. must be available for the {es} containers.
  391. Verify the https://github.com/moby/moby/tree/ea4d1243953e6b652082305a9c3cda8656edab26/contrib/init[init system]
  392. for the Docker daemon sets them to acceptable values.
  393. To check the Docker daemon defaults for ulimits, run:
  394. [source,sh,subs="attributes"]
  395. --------------------------------------------
  396. docker run --rm {docker-image} /bin/bash -c 'ulimit -Hn && ulimit -Sn && ulimit -Hu && ulimit -Su'
  397. --------------------------------------------
  398. If needed, adjust them in the Daemon or override them per container.
  399. For example, when using `docker run`, set:
  400. [source,sh]
  401. --------------------------------------------
  402. --ulimit nofile=65535:65535
  403. --------------------------------------------
  404. ===== Disable swapping
  405. Swapping needs to be disabled for performance and node stability.
  406. For information about ways to do this, see <<setup-configuration-memory>>.
  407. If you opt for the `bootstrap.memory_lock: true` approach,
  408. you also need to define the `memlock: true` ulimit in the
  409. https://docs.docker.com/engine/reference/commandline/dockerd/#default-ulimits[Docker Daemon],
  410. or explicitly set for the container as shown in the <<docker-compose-file, sample compose file>>.
  411. When using `docker run`, you can specify:
  412. [source,sh]
  413. ----
  414. -e "bootstrap.memory_lock=true" --ulimit memlock=-1:-1
  415. ----
  416. ===== Randomize published ports
  417. The image https://docs.docker.com/engine/reference/builder/#/expose[exposes]
  418. TCP ports 9200 and 9300. For production clusters, randomizing the
  419. published ports with `--publish-all` is recommended,
  420. unless you are pinning one container per host.
  421. [[docker-set-heap-size]]
  422. ===== Manually set the heap size
  423. By default, {es} automatically sizes JVM heap based on a nodes's
  424. <<node-roles,roles>> and the total memory available to the node's container. We
  425. recommend this default sizing for most production environments. If needed, you
  426. can override default sizing by manually setting JVM heap size.
  427. To manually set the heap size in production, bind mount a <<set-jvm-options,JVM
  428. options>> file under `/usr/share/elasticsearch/config/jvm.options.d` that
  429. includes your desired <<set-jvm-heap-size,heap size>> settings.
  430. For testing, you can also manually set the heap size using the `ES_JAVA_OPTS`
  431. environment variable. For example, to use 1GB, use the following command.
  432. [source,sh,subs="attributes"]
  433. ----
  434. docker run -e ES_JAVA_OPTS="-Xms1g -Xmx1g" -e ENROLLMENT_TOKEN="<token>" --name es01 -p 9200:9200 --net elastic -it {docker-image}
  435. ----
  436. The `ES_JAVA_OPTS` variable overrides all other JVM options.
  437. We do not recommend using `ES_JAVA_OPTS` in production.
  438. ===== Pin deployments to a specific image version
  439. Pin your deployments to a specific version of the {es} Docker image. For
  440. example +{docker-image}+.
  441. ===== Always bind data volumes
  442. You should use a volume bound on `/usr/share/elasticsearch/data` for the following reasons:
  443. . The data of your {es} node won't be lost if the container is killed
  444. . {es} is I/O sensitive and the Docker storage driver is not ideal for fast I/O
  445. . It allows the use of advanced
  446. https://docs.docker.com/engine/extend/plugins/#volume-plugins[Docker volume plugins]
  447. ===== Avoid using `loop-lvm` mode
  448. If you are using the devicemapper storage driver, do not use the default `loop-lvm` mode.
  449. Configure docker-engine to use
  450. https://docs.docker.com/engine/userguide/storagedriver/device-mapper-driver/#configure-docker-with-devicemapper[direct-lvm].
  451. ===== Centralize your logs
  452. Consider centralizing your logs by using a different
  453. https://docs.docker.com/engine/admin/logging/overview/[logging driver]. Also
  454. note that the default json-file logging driver is not ideally suited for
  455. production use.
  456. [[docker-configuration-methods]]
  457. ==== Configuring {es} with Docker
  458. When you run in Docker, the <<config-files-location,{es} configuration files>> are loaded from
  459. `/usr/share/elasticsearch/config/`.
  460. To use custom configuration files, you <<docker-config-bind-mount, bind-mount the files>>
  461. over the configuration files in the image.
  462. You can set individual {es} configuration parameters using Docker environment variables.
  463. The <<docker-compose-file, sample compose file>> and the
  464. <<docker-cli-run-dev-mode, single-node example>> use this method. You can
  465. use the setting name directly as the environment variable name. If
  466. you cannot do this, for example because your orchestration platform forbids
  467. periods in environment variable names, then you can use an alternative
  468. style by converting the setting name as follows.
  469. . Change the setting name to uppercase
  470. . Prefix it with `ES_SETTING_`
  471. . Escape any underscores (`_`) by duplicating them
  472. . Convert all periods (`.`) to underscores (`_`)
  473. For example, `-e bootstrap.memory_lock=true` becomes
  474. `-e ES_SETTING_BOOTSTRAP_MEMORY__LOCK=true`.
  475. You can use the contents of a file to set the value of the
  476. `ELASTIC_PASSWORD` or `KEYSTORE_PASSWORD` environment variables, by
  477. suffixing the environment variable name with `_FILE`. This is useful for
  478. passing secrets such as passwords to {es} without specifying them directly.
  479. For example, to set the {es} bootstrap password from a file, you can bind mount the
  480. file and set the `ELASTIC_PASSWORD_FILE` environment variable to the mount location.
  481. If you mount the password file to `/run/secrets/bootstrapPassword.txt`, specify:
  482. [source,sh]
  483. --------------------------------------------
  484. -e ELASTIC_PASSWORD_FILE=/run/secrets/bootstrapPassword.txt
  485. --------------------------------------------
  486. You can override the default command for the image to pass {es} configuration
  487. parameters as command line options. For example:
  488. [source,sh]
  489. --------------------------------------------
  490. docker run <various parameters> bin/elasticsearch -Ecluster.name=mynewclustername
  491. --------------------------------------------
  492. While bind-mounting your configuration files is usually the preferred method in production,
  493. you can also <<_c_customized_image, create a custom Docker image>>
  494. that contains your configuration.
  495. [[docker-config-bind-mount]]
  496. ===== Mounting {es} configuration files
  497. Create custom config files and bind-mount them over the corresponding files in the Docker image.
  498. For example, to bind-mount `custom_elasticsearch.yml` with `docker run`, specify:
  499. [source,sh]
  500. --------------------------------------------
  501. -v full_path_to/custom_elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
  502. --------------------------------------------
  503. If you bind-mount a custom `elasticsearch.yml` file, ensure it includes the
  504. `network.host: 0.0.0.0` setting. This setting ensures the node is reachable for
  505. HTTP and transport traffic, provided its ports are exposed. The Docker image's
  506. built-in `elasticsearch.yml` file includes this setting by default.
  507. IMPORTANT: The container **runs {es} as user `elasticsearch` using
  508. uid:gid `1000:0`**. Bind mounted host directories and files must be accessible by this user,
  509. and the data and log directories must be writable by this user.
  510. [[docker-keystore-bind-mount]]
  511. ===== Create an encrypted {es} keystore
  512. By default, {es} will auto-generate a keystore file for <<secure-settings,secure
  513. settings>>. This file is obfuscated but not encrypted.
  514. To encrypt your secure settings with a password and have them persist outside
  515. the container, use a `docker run` command to manually create the keystore
  516. instead. The command must:
  517. * Bind-mount the `config` directory. The command will create an
  518. `elasticsearch.keystore` file in this directory. To avoid errors, do
  519. not directly bind-mount the `elasticsearch.keystore` file.
  520. * Use the `elasticsearch-keystore` tool with the `create -p` option. You'll be
  521. prompted to enter a password for the keystore.
  522. For example:
  523. [source,sh,subs="attributes"]
  524. ----
  525. docker run -it --rm \
  526. -v full_path_to/config:/usr/share/elasticsearch/config \
  527. {docker-image} \
  528. bin/elasticsearch-keystore create -p
  529. ----
  530. You can also use a `docker run` command to add or update secure settings in the
  531. keystore. You'll be prompted to enter the setting values. If the keystore is
  532. encrypted, you'll also be prompted to enter the keystore password.
  533. [source,sh,subs="attributes"]
  534. ----
  535. docker run -it --rm \
  536. -v full_path_to/config:/usr/share/elasticsearch/config \
  537. {docker-image} \
  538. bin/elasticsearch-keystore \
  539. add my.secure.setting \
  540. my.other.secure.setting
  541. ----
  542. If you've already created the keystore and don't need to update it, you can
  543. bind-mount the `elasticsearch.keystore` file directly. You can use the
  544. `KEYSTORE_PASSWORD` environment variable to provide the keystore password to the
  545. container at startup. For example, a `docker run` command might have the
  546. following options:
  547. [source,sh]
  548. ----
  549. -v full_path_to/config/elasticsearch.keystore:/usr/share/elasticsearch/config/elasticsearch.keystore
  550. -e KEYSTORE_PASSWORD=mypassword
  551. ----
  552. [[_c_customized_image]]
  553. ===== Using custom Docker images
  554. In some environments, it might make more sense to prepare a custom image that contains
  555. your configuration. A `Dockerfile` to achieve this might be as simple as:
  556. [source,sh,subs="attributes"]
  557. --------------------------------------------
  558. FROM {docker-image}
  559. COPY --chown=elasticsearch:elasticsearch elasticsearch.yml /usr/share/elasticsearch/config/
  560. --------------------------------------------
  561. You could then build and run the image with:
  562. [source,sh]
  563. --------------------------------------------
  564. docker build --tag=elasticsearch-custom .
  565. docker run -ti -v /usr/share/elasticsearch/data elasticsearch-custom
  566. --------------------------------------------
  567. Some plugins require additional security permissions.
  568. You must explicitly accept them either by:
  569. * Attaching a `tty` when you run the Docker image and allowing the permissions when prompted.
  570. * Inspecting the security permissions and accepting them (if appropriate) by adding the `--batch` flag to the plugin install command.
  571. See {plugins}/_other_command_line_parameters.html[Plugin management]
  572. for more information.
  573. [discrete]
  574. [[troubleshoot-docker-errors]]
  575. ==== Troubleshoot Docker errors for {es}
  576. Here’s how to resolve common errors when running {es} with Docker.
  577. ===== elasticsearch.keystore is a directory
  578. [source,txt]
  579. ----
  580. Exception in thread "main" org.elasticsearch.bootstrap.BootstrapException: java.io.IOException: Is a directory: SimpleFSIndexInput(path="/usr/share/elasticsearch/config/elasticsearch.keystore") Likely root cause: java.io.IOException: Is a directory
  581. ----
  582. A <<docker-keystore-bind-mount,keystore-related>> `docker run` command attempted
  583. to directly bind-mount an `elasticsearch.keystore` file that doesn't exist. If
  584. you use the `-v` or `--volume` flag to mount a file that doesn't exist, Docker
  585. instead creates a directory with the same name.
  586. To resolve this error:
  587. . Delete the `elasticsearch.keystore` directory in the `config` directory.
  588. . Update the `-v` or `--volume` flag to point to the `config` directory path
  589. rather than the keystore file's path. For an example, see
  590. <<docker-keystore-bind-mount>>.
  591. . Retry the command.
  592. ===== elasticsearch.keystore: Device or resource busy
  593. [source,txt]
  594. ----
  595. Exception in thread "main" java.nio.file.FileSystemException: /usr/share/elasticsearch/config/elasticsearch.keystore.tmp -> /usr/share/elasticsearch/config/elasticsearch.keystore: Device or resource busy
  596. ----
  597. A `docker run` command attempted to <<docker-keystore-bind-mount,update the
  598. keystore>> while directly bind-mounting the `elasticsearch.keystore` file. To
  599. update the keystore, the container requires access to other files in the
  600. `config` directory, such as `keystore.tmp`.
  601. To resolve this error:
  602. . Update the `-v` or `--volume` flag to point to the `config` directory
  603. path rather than the keystore file's path. For an example, see
  604. <<docker-keystore-bind-mount>>.
  605. . Retry the command.