To fully manage your Hostman server in the control panel, you need to have the QEMU Guest Agent installed.
If the QEMU agent is not installed or is disabled, some control panel functionality will be unavailable, such as managing backups, snapshots, or SSH keys, resetting your root password, and others.
If you installed any software from the marketplace while creating the server, the QEMU guest agent will be installed automatically. Otherwise, you can install it manually by following this guide.
To check if the QEMU guest agent is installed on your server:
systemctl status qemu-guest-agent
If you have a similar output, it means the guest agent is up and running:
If the output looks like this, it means the agent is not installed:
Unit qemu-guest-agent.service could not be found.
In this case, the agent is installed but disabled—you need to restart it:
Active: inactive (dead) since ...
If you've already installed the QEMU guest agent but some features of the control panel are still unavailable, try restarting the agent. This will likely solve the issue.
Connect to the server via SSH.
Run the following command:
systemctl restart qemu-guest-agent.service
Check that everything is working correctly with the following command:
systemctl status qemu-guest-agent.service
If everything is in order, the output will be as follows:
To install the QEMU agent, connect to the server via SSH and run the appropriate commands for your operating system.
apt update && apt install qemu-guest-agent -y;
yum install qemu-guest-agent
apt update;
apt install qemu-guest-agent -y