Skip to content

[ECE] Configure operating system instructions for Ubuntu with ECE 4.0 #1630

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions deploy-manage/deploy/cloud-enterprise/configure-host-ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,21 @@ products:

# Configure an Ubuntu host [ece-configure-hosts-ubuntu]

The following instructions show you how to prepare your hosts on 20.04 LTS (Focal Fossa) and Ubuntu 22.04 LTS (Jammy Jellyfish).
The following instructions show you how to prepare your hosts on 24.04 LTS (Noble Numbat).

* [Install Docker 24.0](#ece-install-docker-ubuntu)
* [Install Docker 27.0](#ece-install-docker-ubuntu)
* [Set up XFS quotas](#ece-xfs-setup-ubuntu)
* [Update the configurations settings](#ece-update-config-ubuntu)
* [Configure the Docker daemon options](#ece-configure-docker-daemon-ubuntu)
* [Configure the Docker daemon options](#ece-configure-docker-daemon-ubuntu)

::::{note}
Please make sure to run the following steps with a user configured according to [Users and permissions](ece-users-permissions.md)
The following steps assume that you use the same user that is used to install ECE later on.
::::

## Install Docker [ece-install-docker-ubuntu]

Install Docker LTS version 24.0 for Ubuntu 20.04 or 22.04.
Install Docker version 27.0 for Ubuntu 24.04.

::::{important}
Make sure to use a combination of Linux distribution and Docker version that is supported, following our official [Support matrix](https://www.elastic.co/support/matrix#elastic-cloud-enterprise). Using unsupported combinations can cause multiple issues with you ECE environment, such as failures to create system deployments, to upgrade workload deployments, proxy timeouts, and more.
Expand Down Expand Up @@ -55,10 +59,10 @@ Docker 25 and higher are not compatible with ECE 3.7.
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
```

4. Install the correct version of the `docker-ce` package, for Ubuntu 20.04 LTS (Focal Fossa) or Ubuntu 22.04 LTS (Jammy Jellyfish):
4. Install the correct version of the `docker-ce` package, for Ubuntu 24.04 LTS (Noble Numbat):

```sh
sudo apt install -y docker-ce=5:24.0.* docker-ce-cli=5:24.0.* containerd.io
sudo apt install -y docker-ce=5:27.0.* docker-ce-cli=5:27.0.* containerd.io
```


Expand Down
Loading