Kaspersky Unified Monitoring and Analysis Platform
Contents
Contents
Preparing the test machine
The test machine is used during the program installation process: the installer files are unpacked and run on it.
To prepare the test machine for the KUMA installation:
- Install an operating system on the test machine and then install the necessary packages.
- Configure the network interface.
For convenience, you can use the graphical utility nmtui.
- Configure the system time to synchronize with the NTP server:
- If the machine does not have direct Internet access, edit the /etc/chrony.conf file to replace
2.pool.ntp.org
with the name or IP address of your organization's internal NTP server. - Start the system time synchronization service by executing the following command:
sudo systemctl enable --now chronyd
- Wait a few seconds and execute the following command:
sudo timedatectl | grep 'System clock synchronized'
If the system time is synchronized correctly, the output will contain the line "System clock synchronized: yes".
- If the machine does not have direct Internet access, edit the /etc/chrony.conf file to replace
- Generate an SSH key for authentication on the SSH servers of the target machines by executing the following command:
sudo ssh-keygen -f /root/.ssh/id_rsa -N "" -C kuma-ansible-installer
- Make sure the test machine has network access to all the target machines by host name and copy the SSH key to each of them by executing the following command:
sudo ssh-copy-id -i /root/.ssh/id_rsa root@<host name of the test machine>
- Copy the archive with the KUMA installer to the test machine and unpack it using the following command (about 2 GB of disk space is required):
sudo tar -xpf kuma-ansible-installer-<version>.tar.gz
The test machine is ready for the KUMA installation.
Page top