mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-29 01:44:36 -04:00
After 7.16.2, we'll no longer produce Windows MSI installer packages for Elasticsearch. These packages were previously released in beta and didn't receive widespread adoption. ### Changes: * Adds a related 7.17 breaking change. * Adds a related 7.16 deprecation. * Removes the MSI installation instructions. * Removes references to the MSI installer. I plan to port the applicable changes to 8.1 (main), 8.0, 7.17, and 7.16. In the 7.16 ports, I'll leave in the MSI install docs and add related deprecation notes to them instead.
44 lines
1.4 KiB
Text
44 lines
1.4 KiB
Text
// tag::docker[]
|
|
On <<docker,Docker>>, log messages go to the console and are handled by the
|
|
configured Docker logging driver. To access logs, run `docker logs`.
|
|
// end::docker[]
|
|
|
|
// tag::deb[]
|
|
For <<deb,Debian installations>>, {es} writes logs to `/var/log/elasticsearch`.
|
|
// end::deb[]
|
|
|
|
// tag::rpm[]
|
|
For <<rpm,RPM installations>>, {es} writes logs to `/var/log/elasticsearch`.
|
|
// end::rpm[]
|
|
|
|
// tag::mac[]
|
|
For <<targz,macOS `.tar.gz`>> installations, {es} writes logs to
|
|
`$ES_HOME/logs`.
|
|
|
|
Files in `$ES_HOME` risk deletion during an upgrade. In production, we strongly
|
|
recommend you set `path.logs` to a location outside of `$ES_HOME`.
|
|
See <<path-settings>>.
|
|
// end::mac[]
|
|
|
|
// tag::brew[]
|
|
For <<brew,macOS Homebrew>> installations, {es} writes logs to
|
|
`/usr/local/var/log/elasticsearch`.
|
|
// end::brew[]
|
|
|
|
// tag::linux[]
|
|
For <<targz,Linux `.tar.gz`>> installations, {es} writes logs to
|
|
`$ES_HOME/logs`.
|
|
|
|
Files in `$ES_HOME` risk deletion during an upgrade. In production, we strongly
|
|
recommend you set `path.logs` to a location outside of `$ES_HOME`.
|
|
See <<path-settings>>.
|
|
// end::linux[]
|
|
|
|
// tag::win-zip[]
|
|
For <<zip-windows,Windows `.zip`>> installations, {es} writes logs to
|
|
`%ES_HOME%\logs`.
|
|
|
|
Files in `%ES_HOME%` risk deletion during an upgrade. In production, we strongly
|
|
recommend you set `path.logs` to a location outside of `%ES_HOME%``.
|
|
See <<path-settings>>.
|
|
// end::win-zip[]
|