...
Deploy the VM in accordance with the requirements specified in section v1.1_3.1 System requirements.
| Раскрыть |
|---|
| title | Preparing the VM for deployment on Ubuntu 24.04 LTS |
|---|
|
Install the docker.io and docker-compose packages according to the official instructions: https://docs.docker.com/engine/install/ubuntu/ | Раскрыть |
|---|
| title | Example installation using a single command: |
|---|
| | Без форматирования |
|---|
sudo apt-get update && \
sudo apt-get install ca-certificates curl && \
sudo install -m 0755 -d /etc/apt/keyrings && \
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc && \
sudo chmod a+r /etc/apt/keyrings/docker.asc && \
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null && \
sudo apt-get update && \
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y |
|
| Примечание |
|---|
Verify the installation and versions of Docker and Docker Compose (the versions must not be lower than the required ones): | Блок кода |
|---|
| $ sudo docker --version
Docker version 29.2.1, build a5c7197
$ sudo docker compose version
Docker Compose version v5.1.0 |
|
Install additional packages and all required dependencies: | Без форматирования |
|---|
sudo apt install sshpass python3-pip python3-psycopg2 python3-apt ansible -y |
|
...
Download the latest stable version of NAICE for deployment in an isolated network from the v1.1_1.5 Stable versions
| Подсказка |
|---|
If necessary, the file can be downloaded to any PC with Internet access to the website https://cloud.eltex-co.ru (using the link above) and then transferred to the target host using any available SCP client into the home directory of the user who will perform the installation. |
...
| Блок кода |
|---|
|
wget https://cloud.eltex-co.ru/index.php/s/KnrQ1cXuZsabGYhiWhUOSdtaIYGnim/download -O naice_install_2026-0304-2717.tar.gz |
Extract the archive on the target host and navigate to the ansible directory inside the extracted folder:
| Блок кода |
|---|
tar xzvf naice_install_2026-0304-2717.tar.gz
cd naice_install/ansible |
...