-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DOCS] Update install instructions for Debian/Ubuntu #84645
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The use of `apt-key` is deprecated and will no longer be available after Debian 11 and Ubuntu 22.04. This updates the installation instructions for Debian-based distributions.
elasticsearchmachine
added
v8.2.0
external-contributor
Pull request authored by a developer outside the Elasticsearch team
labels
Mar 3, 2022
nik9000
approved these changes
Mar 7, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Confirmed with:
docker pull debian
docker run -it debian:latest /bin/bash
apt update
apt install -y gpg wget sudo
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo gpg --dearmor -o /usr/share/keyrings/elasticsearch-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/elasticsearch-keyring.gpg] https://artifacts.elastic.co/packages/8.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-8.x.list
apt update
apt install elasticsearch
nik9000
added
auto-backport-and-merge
auto-merge-without-approval
Automatically merge pull request when CI checks pass (NB doesn't wait for reviews!)
v7.16.4
v8.0.2
v8.1.1
>docs
General docs changes
labels
Mar 7, 2022
Pinging @elastic/es-docs (Team:Docs) |
nik9000
added
the
:Delivery/Packaging
RPM and deb packaging, tar and zip archives, shell and batch scripts
label
Mar 7, 2022
Pinging @elastic/es-delivery (Team:Delivery) |
@elasticmachine ok to test |
nik9000
pushed a commit
to nik9000/elasticsearch
that referenced
this pull request
Mar 7, 2022
The use of `apt-key` is deprecated and will no longer be available after Debian 11 and Ubuntu 22.04. This updates the installation instructions for Debian-based distributions. Closes elastic#84644
nik9000
pushed a commit
to nik9000/elasticsearch
that referenced
this pull request
Mar 7, 2022
The use of `apt-key` is deprecated and will no longer be available after Debian 11 and Ubuntu 22.04. This updates the installation instructions for Debian-based distributions. Closes elastic#84644
nik9000
pushed a commit
to nik9000/elasticsearch
that referenced
this pull request
Mar 7, 2022
The use of `apt-key` is deprecated and will no longer be available after Debian 11 and Ubuntu 22.04. This updates the installation instructions for Debian-based distributions. Closes elastic#84644
elasticsearchmachine
pushed a commit
that referenced
this pull request
Mar 7, 2022
The use of `apt-key` is deprecated and will no longer be available after Debian 11 and Ubuntu 22.04. This updates the installation instructions for Debian-based distributions. Closes #84644 Co-authored-by: er0k <[email protected]>
elasticsearchmachine
pushed a commit
that referenced
this pull request
Mar 7, 2022
The use of `apt-key` is deprecated and will no longer be available after Debian 11 and Ubuntu 22.04. This updates the installation instructions for Debian-based distributions. Closes #84644 Co-authored-by: er0k <[email protected]>
elasticsearchmachine
pushed a commit
that referenced
this pull request
Mar 7, 2022
The use of `apt-key` is deprecated and will no longer be available after Debian 11 and Ubuntu 22.04. This updates the installation instructions for Debian-based distributions. Closes #84644 Co-authored-by: er0k <[email protected]>
Thanks @er0k! I've merged and the machinery will backport to 7.16. |
nik9000
added a commit
to nik9000/elasticsearch
that referenced
this pull request
Mar 7, 2022
…lastic#84714) The use of `apt-key` is deprecated and will no longer be available after Debian 11 and Ubuntu 22.04. This updates the installation instructions for Debian-based distributions. Closes elastic#84644 Co-authored-by: er0k <[email protected]>
nik9000
added a commit
that referenced
this pull request
Mar 7, 2022
* Update painless-reindex-context.asciidoc (#84444) (#84712) ctx['op'] should be set to 'noop', not 'none' when specifying no operation. Elasticsearch error when using 'none': ```json { "error" : { "root_cause" : [ { "type" : "illegal_argument_exception", "reason" : "Operation type [none] not allowed, only [noop, index, delete] are allowed" } ], "type" : "illegal_argument_exception", "reason" : "Operation type [none] not allowed, only [noop, index, delete] are allowed" }, "status" : 400 } ``` Co-authored-by: jalvar08 <[email protected]> * [DOCS] Update install instructions for Debian/Ubuntu (#84645) (#84714) The use of `apt-key` is deprecated and will no longer be available after Debian 11 and Ubuntu 22.04. This updates the installation instructions for Debian-based distributions. Closes #84644 Co-authored-by: er0k <[email protected]> * Fix some typos in plugins & reference docs (#84667) (#84717) This pull request removes a few instances of duplicate words or punctuation and erroneous spelling from the docs. Co-authored-by: Abele Mălan <[email protected]> Co-authored-by: jalvar08 <[email protected]> Co-authored-by: er0k <[email protected]> Co-authored-by: Abele Mălan <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
auto-merge-without-approval
Automatically merge pull request when CI checks pass (NB doesn't wait for reviews!)
:Delivery/Packaging
RPM and deb packaging, tar and zip archives, shell and batch scripts
>docs
General docs changes
external-contributor
Pull request authored by a developer outside the Elasticsearch team
Team:Delivery
Meta label for Delivery team
Team:Docs
Meta label for docs team
v7.16.4
v8.0.2
v8.1.1
v8.2.0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The use of
apt-key
is deprecated and will no longer be availableafter Debian 11 and Ubuntu 22.04. This updates the installation
instructions for Debian-based distributions.
Closes #84644