Description
Error requesting the graphite service. The error occurs when opening device statistics: PDUs, UPSs, switches, or servers.
Contents
Error 10106, graphite request error
Possible solutions
- Delete hung iso images:
-
Create a backup of the platform:
dci backup
-
Connect to the database:
docker exec -it mysql bash -c "mysql dci_1 -p\$MYSQL_ROOT_PASSWORD"
-
Determine the id of the images you have to delete.
Examine the response and copy the id of the iso images to be deleted.SELECT * FROM dci_iso WHERE status = "downloading"\G
-
Delete the entry:
DELETE FROM dci_iso WHERE id = <image_id>;
-
Please, delete the entries from the database one by one and check the result after each deletion.